aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2fecebe..5a2fd63 100644
--- a/README.md
+++ b/README.md
@@ -75,6 +75,13 @@ Usage: ./msg [-h] [-w] [-v] [-o <output>] <directory>
```html
<!-- projects/xyz.html -->
title = XYZ
+links = [
+ href = https://example.org
+ label = abc
+ ___
+ href = https://google.com
+ label = test
+]
---
<h1>XYZ!</h1>
@@ -83,6 +90,11 @@ title = XYZ
{{ eachdo resources.projects }}
<p>{{ put title }}</p>
{{ endeachdo }}
+
+{{ eachdo page.links }}
+<p>{{ put href }}</p>
+<p>{{ put label }}</p>
+{{ endeachdo }}
```
#### Template - specify template for page