From 8cb34b38a2d10720c37c04c45523118d03a30942 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Sun, 31 Aug 2025 13:41:53 -0400 Subject: . --- projects/msg.html | 130 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 79 insertions(+), 51 deletions(-) (limited to 'projects/msg.html') diff --git a/projects/msg.html b/projects/msg.html index 3b30c62..2e86f10 100644 --- a/projects/msg.html +++ b/projects/msg.html @@ -1,65 +1,67 @@ - + - - - - + + + + - MSG | COMPROMYSE + MSG | COMPROMYSE - - - - + + + + - + - - - + + + - - - + + + - - -
+ + +
- -
+
-
-

MSG

-
-

An incredibly opinionated, hackable, minimal Static Site Generator.

-
C
-
+
+

MSG

+
+

An incredibly opinionated, hackable, minimal Static Site Generator.

+
C
+
- SOURCE -
+ + SOURCE + +
-
-

See github.com/compromyse/compromyse.xyz for an example site.

+
+

See github.com/compromyse/compromyse.xyz for an example site.

Compilation & Usage

@@ -135,6 +137,13 @@ Usage: ./msg [-h] [-w] [-v] [-o <output>] <directory>

<!-- projects/xyz.html -->
 title = XYZ
+links = [
+    href = https://example.org
+    label = abc
+    ___
+    href = https://google.com
+    label = test
+]
 ---
 
 <h1>XYZ!</h1>
@@ -143,6 +152,25 @@ title = XYZ
 {{ eachdo resources.projects }}
 <p>{{ put title }}</p>
 {{ endeachdo }}
+
+{{ eachdo page.links }}
+<p>{{ put href }}</p>
+<p>{{ put label }}</p>
+{{ endeachdo }}
+
+
<!-- config.cfg -->
+links = [
+    href = https://github.com/compromyse
+    label = GITHUB
+    ___
+    href = https://www.linkedin.com/in/compromyse
+    label = LINKEDIN
+]
+
+<!-- index.html -->
+{{ eachdo config.links }}
+<a href="{{ put href }}" class="button" target="_blank">{{ put label }}</a>
+{{ endeachdo }}
 

@@ -154,20 +182,20 @@ template = base_tailwind.html <h1 class="p-2">XYZ!</h1> -

+Licensed under GPLv3

-
+
-
-
-
-

The Quieter You Become, The More You Are Able To Hear.

-
+
+ -
- +
+ -- cgit v1.2.3