diff options
Diffstat (limited to 'zola-static/templates')
| -rw-r--r-- | zola-static/templates/blog-list.html | 2 | ||||
| -rw-r--r-- | zola-static/templates/index.html | 6 | ||||
| -rw-r--r-- | zola-static/templates/project-list.html | 2 |
3 files changed, 3 insertions, 7 deletions
diff --git a/zola-static/templates/blog-list.html b/zola-static/templates/blog-list.html index eb66dad..2061325 100644 --- a/zola-static/templates/blog-list.html +++ b/zola-static/templates/blog-list.html @@ -6,8 +6,6 @@ {{ section.title }} </h1> <ul> - <!-- If you are using pagination, section.pages will be empty. - You need to use the paginator object --> {% for page in section.pages %} <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> {% endfor %} diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html index 668bb54..b6988f4 100644 --- a/zola-static/templates/index.html +++ b/zola-static/templates/index.html @@ -20,9 +20,9 @@ <div class="index-section"> <h2>Articles</h2> <ul> - <li><a href="{{ get_url(path='@/blog/sdl-native-wayland.md') }}">Forcing SDL to use Wayland on Wayland</a></li> - <li><a href="{{ get_url(path='@/blog/my-emacs-tips-and-tricks.md') }}">My Emacs Tips and Tricks</a></li> - <li><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></li> + <li><a href="{{ get_url(path='@/blog/sdl-native-wayland/index.md') }}">Forcing SDL to use Wayland on Wayland</a></li> + <li><a href="{{ get_url(path='@/blog/my-emacs-tips-and-tricks/index.md') }}">My Emacs Tips and Tricks</a></li> + <li><a href="{{ get_url(path='@/blog/emacs-garbage-collection/index.md') }}">Solving Emacs Garbage Collection Stutters</a></li> </ul> </div> <div class="index-section"> diff --git a/zola-static/templates/project-list.html b/zola-static/templates/project-list.html index c361e52..3fbe12e 100644 --- a/zola-static/templates/project-list.html +++ b/zola-static/templates/project-list.html @@ -5,8 +5,6 @@ <h1 class="title"> {{ section.title }} </h1> - <!-- If you are using pagination, section.pages will be empty. - You need to use the paginator object --> {% for page in section.pages %} <div class="index-section project-section"> <a href="{{ page.permalink | safe }}"><h2>{{ page.title }}</h2><img src="{{ page.path ~ 'cover.png' }}" alt="{{ page.title }}"></a> |
