diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 17:25:01 -0400 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-29 17:25:01 -0400 |
| commit | 7c7d40dc682668a545ffd32fb3865b05ebe41eb3 (patch) | |
| tree | 0c881a101f04127722493d75856475e01bcaf72f | |
| parent | f63235994855a3a6d71fb82f63b7b9d690ba5527 (diff) | |
README: update to add nested blocks and EACHDO on page
| -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 |
