converted tag template to twig

develop
Are0h 3 years ago
parent acf2f6e86c
commit 30c0ff72cf

@ -33,9 +33,18 @@ class ThemeEngine
] ]
); );
break; break;
case "": case "/tags":
require __DIR__ . "/views/index.php"; $tags = $this->data["tag_list"];
break; echo $this->twig->render(
"theme-fipamo-default/fipamo-default/tags.twig",
[
"debug" => true,
"title" => "Pages Tagged as Tag",
"background" =>
"/src/themes/theme-fipamo-default/fipamo-default/assets/images/global/default-bg.jpg",
"tag_list" => $tags,
]
);
case "/archive": case "/archive":
$archive = $this->data["archives"]; $archive = $this->data["archives"];
echo $this->twig->render( echo $this->twig->render(

@ -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…
Cancel
Save