1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-18 02:41:27 +02:00

Flextype Core: default theme - fixes and refactoring #117

This commit is contained in:
Awilum
2019-06-14 18:05:33 +03:00
parent e270e46d7f
commit bc5aab7897
2 changed files with 2 additions and 4 deletions

View File

@@ -3,9 +3,7 @@
{% block content %}
<h1>{{ entry.title }}</h1>
{{ entry.content|raw }}
{% for entry in entries_fetch_all('blog', 'date', 'DESC') %}
<a href="{{ entry.slug }}" class="blog-post">
<h3>{{ entry.title }}</h3>

View File

@@ -12,6 +12,6 @@
</a>
{% endfor %}
<a href="./blog" class="blog-read">Read the rest of the blog</a>
<a href="{{ base_url() }}/blog" class="blog-read">Read the rest of the blog</a>
{% endblock %}