From ae72b8f9976a1c0cca66ff4cb31eadf311c677e7 Mon Sep 17 00:00:00 2001 From: Ahmed Date: Mon, 1 Jun 2026 22:19:27 +0300 Subject: init: moved to own site --- templates/archive.html | 12 ++++++++++++ templates/base.html | 12 ++++++++++++ templates/blog.html | 12 ++++++++++++ templates/code.html | 12 ++++++++++++ templates/garden.html | 12 ++++++++++++ templates/home.html | 12 ++++++++++++ templates/partials/footer.html | 18 ++++++++++++++++++ templates/partials/head.html | 12 ++++++++++++ templates/partials/header.html | 6 ++++++ templates/project.html | 17 +++++++++++++++++ templates/recipe.html | 12 ++++++++++++ templates/slides.html | 31 +++++++++++++++++++++++++++++++ templates/talk.html | 12 ++++++++++++ 13 files changed, 180 insertions(+) create mode 100644 templates/archive.html create mode 100644 templates/base.html create mode 100644 templates/blog.html create mode 100644 templates/code.html create mode 100644 templates/garden.html create mode 100644 templates/home.html create mode 100644 templates/partials/footer.html create mode 100644 templates/partials/head.html create mode 100644 templates/partials/header.html create mode 100644 templates/project.html create mode 100644 templates/recipe.html create mode 100644 templates/slides.html create mode 100644 templates/talk.html (limited to 'templates') diff --git a/templates/archive.html b/templates/archive.html new file mode 100644 index 0000000..2fa3cb2 --- /dev/null +++ b/templates/archive.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx: {{ARCHIVE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..0ac1173 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} + {{{CONTENT}}} + {{> footer.html}} + + diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..b904dbe --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/code.html b/templates/code.html new file mode 100644 index 0000000..b904dbe --- /dev/null +++ b/templates/code.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/garden.html b/templates/garden.html new file mode 100644 index 0000000..b904dbe --- /dev/null +++ b/templates/garden.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..c28bb89 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/partials/footer.html b/templates/partials/footer.html new file mode 100644 index 0000000..9f3156b --- /dev/null +++ b/templates/partials/footer.html @@ -0,0 +1,18 @@ + \ No newline at end of file diff --git a/templates/partials/head.html b/templates/partials/head.html new file mode 100644 index 0000000..fe34222 --- /dev/null +++ b/templates/partials/head.html @@ -0,0 +1,12 @@ + + + + + {{#META_DATE}}{{/META_DATE}} + {{#META_DESCRIPTION}}{{/META_DESCRIPTION}} + + {{#HAS_CODE}} + + {{/HAS_CODE}} + + diff --git a/templates/partials/header.html b/templates/partials/header.html new file mode 100644 index 0000000..fb74fca --- /dev/null +++ b/templates/partials/header.html @@ -0,0 +1,6 @@ +
+ +
diff --git a/templates/project.html b/templates/project.html new file mode 100644 index 0000000..f0e9554 --- /dev/null +++ b/templates/project.html @@ -0,0 +1,17 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
+ {{{CONTENT}}} + {{#PROJECT_URL}}

URL: {{PROJECT_URL}}

{{/PROJECT_URL}} + {{#PROJECT_DEMO}}

Demo: {{PROJECT_DEMO}}

{{/PROJECT_DEMO}} + {{#PROJECT_SOURCES}}

Sources: {{{PROJECT_SOURCES}}}

{{/PROJECT_SOURCES}} +
+ {{> footer.html}} + + diff --git a/templates/recipe.html b/templates/recipe.html new file mode 100644 index 0000000..b904dbe --- /dev/null +++ b/templates/recipe.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + diff --git a/templates/slides.html b/templates/slides.html new file mode 100644 index 0000000..a553a73 --- /dev/null +++ b/templates/slides.html @@ -0,0 +1,31 @@ + + + + + + + {{TITLE}} + + + + + + + +
+
+ {{{SLIDES_CONTENT}}} +
+
+ + + + + + + diff --git a/templates/talk.html b/templates/talk.html new file mode 100644 index 0000000..b904dbe --- /dev/null +++ b/templates/talk.html @@ -0,0 +1,12 @@ + + + + {{> head.html}} + gumx{{#PAGE_TITLE}}: {{PAGE_TITLE}}{{/PAGE_TITLE}} + + + {{> header.html}} +
{{{CONTENT}}}
+ {{> footer.html}} + + -- cgit v1.2.3