aboutsummaryrefslogtreecommitdiff
path: root/zola-static
diff options
context:
space:
mode:
Diffstat (limited to 'zola-static')
-rw-r--r--zola-static/content/blog/emacs-garbage-collection/index.md (renamed from zola-static/content/blog/emacs-garbage-collection.md)0
-rw-r--r--zola-static/content/blog/first/index.md (renamed from zola-static/content/blog/first.md)0
-rw-r--r--zola-static/content/blog/my-emacs-tips-and-tricks/index.md (renamed from zola-static/content/blog/my-emacs-tips-and-tricks.md)2
-rw-r--r--zola-static/content/blog/sdl-native-wayland/index.md (renamed from zola-static/content/blog/sdl-native-wayland.md)0
-rw-r--r--zola-static/templates/blog-list.html2
-rw-r--r--zola-static/templates/index.html6
-rw-r--r--zola-static/templates/project-list.html2
7 files changed, 4 insertions, 8 deletions
diff --git a/zola-static/content/blog/emacs-garbage-collection.md b/zola-static/content/blog/emacs-garbage-collection/index.md
index 26cf5d9..26cf5d9 100644
--- a/zola-static/content/blog/emacs-garbage-collection.md
+++ b/zola-static/content/blog/emacs-garbage-collection/index.md
diff --git a/zola-static/content/blog/first.md b/zola-static/content/blog/first/index.md
index bfed8ba..bfed8ba 100644
--- a/zola-static/content/blog/first.md
+++ b/zola-static/content/blog/first/index.md
diff --git a/zola-static/content/blog/my-emacs-tips-and-tricks.md b/zola-static/content/blog/my-emacs-tips-and-tricks/index.md
index 46ea4e5..359a6ef 100644
--- a/zola-static/content/blog/my-emacs-tips-and-tricks.md
+++ b/zola-static/content/blog/my-emacs-tips-and-tricks/index.md
@@ -8,7 +8,7 @@ Throughout my time using GNU Emacs and its package ecosystem, I've found some an
# Fixes
## General Stutters (Caused by Garbage Collection)
-Garbage collection stutters is a common problem among Emacs users, and I have a constroversial solution which has worked for me. Basically: **only garbage collect when you are idle** (even for short periods of time). Read more about it [here](@/blog/emacs-garbage-collection.md).
+Garbage collection stutters is a common problem among Emacs users, and I have a constroversial solution which has worked for me. Basically: **only garbage collect when you are idle** (even for short periods of time). Read more about it [here](@/blog/emacs-garbage-collection/index.md).
```lisp
(defun my-minibuffer-setup-hook ()
(setq gc-cons-threshold most-positive-fixnum))
diff --git a/zola-static/content/blog/sdl-native-wayland.md b/zola-static/content/blog/sdl-native-wayland/index.md
index 1f163f7..1f163f7 100644
--- a/zola-static/content/blog/sdl-native-wayland.md
+++ b/zola-static/content/blog/sdl-native-wayland/index.md
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>