diff options
-rw-r--r-- | content/links/amolith.md | 5 | ||||
-rw-r--r-- | content/links/index.md | 8 | ||||
-rw-r--r-- | content/links/paritybit.md | 5 | ||||
-rw-r--r-- | content/links/puniko.md | 5 | ||||
-rw-r--r-- | content/links/sfr.md | 6 | ||||
-rw-r--r-- | content/links/striker.md | 5 | ||||
-rw-r--r-- | content/links/toast.md | 5 | ||||
-rw-r--r-- | content/links/toromino.md | 5 | ||||
-rw-r--r-- | metadata/metadata.yaml | 4 | ||||
-rw-r--r-- | scripts/metadata_filter.lua | 2 |
10 files changed, 49 insertions, 1 deletions
diff --git a/content/links/amolith.md b/content/links/amolith.md new file mode 100644 index 0000000..45f4235 --- /dev/null +++ b/content/links/amolith.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Amolith | ||
3 | subtitle: secluded.site | ||
4 | url: https://secluded.site/ | ||
5 | --- | ||
diff --git a/content/links/index.md b/content/links/index.md new file mode 100644 index 0000000..52135dd --- /dev/null +++ b/content/links/index.md | |||
@@ -0,0 +1,8 @@ | |||
1 | --- | ||
2 | title: Links | ||
3 | position: 3 | ||
4 | list_grid: true | ||
5 | list_post_icon: icon-arrow-up-right | ||
6 | --- | ||
7 | |||
8 | Cool websites by cool people. | ||
diff --git a/content/links/paritybit.md b/content/links/paritybit.md new file mode 100644 index 0000000..c811777 --- /dev/null +++ b/content/links/paritybit.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Jake | ||
3 | subtitle: paritybit.ca | ||
4 | url: https://www.paritybit.ca | ||
5 | --- | ||
diff --git a/content/links/puniko.md b/content/links/puniko.md new file mode 100644 index 0000000..966f0ee --- /dev/null +++ b/content/links/puniko.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Puniko | ||
3 | subtitle: absturztau.be | ||
4 | url: https://absturztau.be/ | ||
5 | --- | ||
diff --git a/content/links/sfr.md b/content/links/sfr.md new file mode 100644 index 0000000..11f2c56 --- /dev/null +++ b/content/links/sfr.md | |||
@@ -0,0 +1,6 @@ | |||
1 | --- | ||
2 | title: sfr | ||
3 | titlecase: false | ||
4 | subtitle: cronut.cafe | ||
5 | url: https://cronut.cafe/%7Esfr/ | ||
6 | --- | ||
diff --git a/content/links/striker.md b/content/links/striker.md new file mode 100644 index 0000000..366f720 --- /dev/null +++ b/content/links/striker.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Striker | ||
3 | subtitle: striker.net.eu.org | ||
4 | url: https://striker.net.eu.org/ | ||
5 | --- | ||
diff --git a/content/links/toast.md b/content/links/toast.md new file mode 100644 index 0000000..9038927 --- /dev/null +++ b/content/links/toast.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Toast | ||
3 | subtitle: spacetoast.dev | ||
4 | url: https://spacetoast.dev/ | ||
5 | --- | ||
diff --git a/content/links/toromino.md b/content/links/toromino.md new file mode 100644 index 0000000..5579109 --- /dev/null +++ b/content/links/toromino.md | |||
@@ -0,0 +1,5 @@ | |||
1 | --- | ||
2 | title: Toromino | ||
3 | subtitle: sigsegv.cc | ||
4 | url: https://sigsegv.cc/ | ||
5 | --- | ||
diff --git a/metadata/metadata.yaml b/metadata/metadata.yaml index 679cdcb..dc6885c 100644 --- a/metadata/metadata.yaml +++ b/metadata/metadata.yaml | |||
@@ -15,6 +15,10 @@ menus: | |||
15 | label: Profiles | 15 | label: Profiles |
16 | url: /profiles/ | 16 | url: /profiles/ |
17 | 17 | ||
18 | - id: links | ||
19 | label: Links | ||
20 | url: /links/ | ||
21 | |||
18 | - id: 9thPK7O3xn | 22 | - id: 9thPK7O3xn |
19 | label: Personal | 23 | label: Personal |
20 | url: /9thPK7O3xn/ | 24 | url: /9thPK7O3xn/ |
diff --git a/scripts/metadata_filter.lua b/scripts/metadata_filter.lua index c7f4d4a..fefb1ce 100644 --- a/scripts/metadata_filter.lua +++ b/scripts/metadata_filter.lua | |||
@@ -132,7 +132,7 @@ function process_pages(global, parent, order, pages_by_id) | |||
132 | return false | 132 | return false |
133 | end | 133 | end |
134 | else | 134 | else |
135 | return p1.title < p2.title | 135 | return p1.title:upper() < p2.title:upper() |
136 | end | 136 | end |
137 | end) | 137 | end) |
138 | 138 | ||