diff options
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 |