Skip to content

Commit 2b52ad1

Browse files
committed
feat: add order
1 parent ec98e3d commit 2b52ad1

File tree

12 files changed

+13
-2
lines changed

12 files changed

+13
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPEC_GENERATOR_VER=v1.3.0
1+
SPEC_GENERATOR_VER=v1.3.1
22

33
all: website
44

src/_includes/list.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<dl>
2-
{%- for post in posts -%}
2+
{% assign sortedPosts = posts | sortByOrder %}
3+
{%- for post in sortedPosts -%}
34
<dt><a href="{{ post.url }}">{{ post.data.title }}</a></dt>
45
<dd>{{ post.data.description }}</dd>
56
{%- endfor -%}

src/architecture/principles.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ editors:
1717
name: Protocol Labs
1818
url: https://protocol.ai/
1919
tags: ['architecture']
20+
order: 0
2021
---
2122

2223
The IPFS stack is a suite of specifications and tools that share two key characteristics:

src/http-gateways/dnslink-gateway.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ editors:
1111
- name: Thibault Meunier
1212
github: thibmeu
1313
tags: ['httpGateways', 'webHttpGateways']
14+
order: 2
1415
---
1516

1617
DNSLink Gateway is an extension of :cite[path-gateway] that enables hosting a

src/http-gateways/path-gateway.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ editors:
2121
xref:
2222
- url
2323
tags: ['httpGateways', 'lowLevelHttpGateways']
24+
order: 0
2425
---
2526

2627
# Path Gateway Specification

src/http-gateways/subdomain-gateway.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ xref:
2323
- url
2424
- html
2525
tags: ['httpGateways', 'webHttpGateways']
26+
order: 3
2627
---
2728

2829
Subdomain Gateway is an extension of :cite[path-gateway] that

src/http-gateways/trustless-gateway.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ editors:
1010
- name: Marcin Rataj
1111
github: lidel
1212
tags: ['httpGateways', 'lowLevelHttpGateways']
13+
order: 1
1314
---
1415

1516
Trustless Gateway is a minimal _subset_ of :cite[path-gateway]

src/http-gateways/web-redirects-file.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ editors:
1212
- name: Marcin Rataj
1313
github: lidel
1414
tags: ['httpGateways', 'webHttpGateways']
15+
order: 4
1516
---
1617

1718
The Web Redirects File specification is an extension of the Subdomain Gateway and DNSLink Gateway specifications.

src/ipns/ipns-pubsub-router.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ editors:
1111
xref:
1212
- ipns-record
1313
tags: ['ipns']
14+
order: 1
1415
---
1516

1617
:ref[InterPlanetary Naming System (IPNS)] is a naming system responsible for the creating, reading and updating of mutable pointers to data.

src/ipns/ipns-record.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ editors:
1818
- name: Gus Eggert
1919
github: guseggert
2020
tags: ['ipns']
21+
order: 0
2122
---
2223

2324
The InterPlanetary File System (IPFS) is powered by content-addressed data, which by nature is immutable: changing an object would change its hash, and consequently its address, making it a different object altogether. However, there are several use cases where we benefit from having mutable data. This is where the InterPlanetary Naming System (IPNS) gets into the equation. IPNS records provide cryptographically verifiable, mutable pointers to objects.

0 commit comments

Comments
 (0)