diff options
Diffstat (limited to 'templates/details/code.html')
-rw-r--r-- | templates/details/code.html | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/templates/details/code.html b/templates/details/code.html index a593ae7..1697844 100644 --- a/templates/details/code.html +++ b/templates/details/code.html @@ -35,25 +35,16 @@ article[role="main"] a { color: #b53a04;} {% endblock %} {%block bodyid%}id="code"{%endblock%} -{% block primary %}<section id="page-header"> - <h1 class="hide">Code</h1> - <nav class="bl"> - <ul id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> - <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> →</li> - <li><a href="/projects/" title="luxagraf projects page" itemprop="url"><span itemprop="title">Projects</span></a> →</li> - <li>Code</li> - </ul> - </nav> - </section> - <article role="main"> - {% for object in object_list %} - <header> - <h1>{{object.name}}</h1> - </header> +{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> →</li> + <li><a href="/projects/" title="luxagraf projects page" itemprop="url"><span itemprop="title">Projects</span></a> →</li> + <li>Code</li> + </ul> + <article role="main">{% for object in object_list %} + <h1>{{object.name}}</h1> <div class="post-body-single"> {{object.body_html|smartypants|widont|safe}} - </div> - {% endfor %} + </div>{% endfor %} </article> |