123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- {% extends "base.html" %}
- {% load wagtailimages_tags %}
- {% block content %}
- <div class="container bread-detail">
- <div class="row">
- <div class="col-md-12">
- <div class="col-md-6">
- <div class="row">
- <h1>{{ page.title }}</h1>
-
- <figure class="hidden-md-up">
- {% image self.image width-600 %}
- </figure>
-
- {% if page.introduction %}
- <p class="introduction">
- {{ page.introduction }}
- </p>
- {% endif %}
- {{ page.body }}
- </div>
- </div>
- <div class="col-md-5 col-md-offset-1">
- <div class="row">
- <figure class="hidden-md-down">
- {% image self.image width-600 %}
- </figure>
- <ul class="bread-meta">
- {% if page.origin %}
- <li>
- <h4>Origin</h4>
- <p>{{ page.origin }}</p>
- </li>
- {% endif %}
- {% if page.bread_type %}
- <li>
- <h4>Type</h4>
- <p>{{ page.bread_type }}</p>
- </li>
- {% endif %}
- {% with ingredients=page.ingredients.all %}
- {% if ingredients %}
- <li>
- <h4>Ingredients</h4>
- <ul>
- {% for ingredient in ingredients %}
- <li>
- {{ ingredient.name }}
- </li>
- {% endfor %}
- </ul>
- </li>
- {% endif %}
- {% endwith %}
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- {% comment %}
- {% block content %}
- <div class="container bread-detail">
- <div class="row">
- <div class="col-md-12">
- <div class="col-md-6">
- <div class="row">
- <h1>{{ page.title }}</h1>
-
- {% if page.introduction %}
- <p class="introduction">
- {{ page.introduction }}
- </p>
- {% endif %}
- </div>
- </div>
- <div class="col-md-5 col-md-offset-1">
- <figure>
- {% image self.image width-600 %}
- </figure>
- </div>
- </div>
- <div class="col-md-12">
- <div class="col-md-6">
- <div class="row">
- {{ page.body }}
- </div>
- </div>
- <div class="col-md-5 col-md-offset-1">
- <ul class="bread-meta">
- {% if page.origin %}
- <li>
- <h4>Origin</h4>
- <p>{{ page.origin }}</p>
- </li>
- {% endif %}
- {% if page.bread_type %}
- <li>
- <h4>Type</h4>
- <p>{{ page.bread_type }}</p>
- </li>
- {% endif %}
- {% with ingredients=page.ingredients.all %}
- {% if ingredients %}
- <li>
- <h4>Ingredients</h4>
- <ul>
- {% for ingredient in ingredients %}
- <li>
- {{ ingredient.name }}
- </li>
- {% endfor %}
- </ul>
- </li>
- {% endif %}
- {% endwith %}
- </ul>
- </div>
- </div>
- </div>
- </div>
- {% endcomment %}
- {% endblock content %}
|