converted tag template to twig
parent
acf2f6e86c
commit
30c0ff72cf
@ -1,13 +0,0 @@
|
|||||||
extends frame
|
|
||||||
|
|
||||||
block main-content
|
|
||||||
section
|
|
||||||
.page-title
|
|
||||||
span= title
|
|
||||||
article
|
|
||||||
.page
|
|
||||||
br
|
|
||||||
- var index = 0;
|
|
||||||
- for ( index; index < tag_list.length; index++)
|
|
||||||
a(href='/'+tag_list[index].path+'/'+tag_list[index].slug) !{tag_list[index].title}
|
|
||||||
br
|
|
@ -0,0 +1,21 @@
|
|||||||
|
{% extends "theme-fipamo-default/fipamo-default/frame.twig" %}
|
||||||
|
|
||||||
|
{% block title %}
|
||||||
|
{{ title }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block mainContent %}
|
||||||
|
<section>
|
||||||
|
<div class="page-title">
|
||||||
|
<span>{{title}}</span>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<article>
|
||||||
|
<div class="page">
|
||||||
|
{% for tag in tag_list %}
|
||||||
|
<a href="{{"/"~tag.path~"/"~tag.slug~".html"}}">{{tag.title}}</a><br />
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue