@terrymooreii/sia 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ {%extends "_layout.njk" %}
2
+
3
+ {% block content %}
4
+ <div class="posts">
5
+ {% for year, posts in posts | sort(true, false, 'created_at') | groupby("date.year") %}
6
+ <div class="year">{{ year }}</div>
7
+ <ul>
8
+ {% for post in posts %}
9
+ <li>
10
+ <span class="date" title="{{ post.datetime}}">
11
+ {{ post.date.date }}
12
+ </span>
13
+ <a href="{{ site.blog_url }}{{ post.slug }}" title="{{ post.title }}"> {{ post.title }} </a>
14
+ </li>
15
+ {% endfor %}
16
+ </ul>
17
+ {% endfor %}
18
+ </div>
19
+ {% endblock %}
Binary file
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "",
3
+ "short_name": "",
4
+ "icons": [
5
+ {
6
+ "src": "/android-chrome-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png"
9
+ },
10
+ {
11
+ "src": "/android-chrome-512x512.png",
12
+ "sizes": "512x512",
13
+ "type": "image/png"
14
+ }
15
+ ],
16
+ "theme_color": "#ffffff",
17
+ "background_color": "#ffffff",
18
+ "display": "standalone"
19
+ }
@@ -0,0 +1,7 @@
1
+ ---
2
+ template: page
3
+ created_at: 2024-01-12 9:00:00-5:00
4
+ description: My sia blog home page
5
+ ---
6
+
7
+ Add this pages mark down or html here