lsg

Lumidify Site Generator
git clone git://lumidify.org/lsg.git (fast, but not encrypted)
git clone https://lumidify.org/git/lsg.git (encrypted, but very slow)
Log | Files | Refs | README | LICENSE

commit 93b7ac9391f1fdcd4ffec59f950cf2403d8e0a67
parent 6c694c66856457f2aa968e81c0e82cff8a78f60b
Author: lumidify <nobody@lumidify.org>
Date:   Sun, 19 Dec 2021 08:21:59 +0100

Add clarification to README; small fixes

Diffstat:
MLSG.pm | 1-
MLSG/Config.pm | 1-
MLSG/Generate.pm | 1-
MLSG/Markdown.pm | 1-
MLSG/Metadata.pm | 1-
MLSG/Misc.pm | 1-
MLSG/Template.pm | 1-
MLSG/UserFuncs.pm | 1-
MREADME | 3+++
Msample/modified_dates | 16++++++++--------
Msample/site/de/about.html | 1+
Msample/site/de/contact.html | 1+
Msample/site/de/index.html | 1+
Msample/site/en/about.html | 1+
Msample/site/en/contact.html | 1+
Msample/site/en/index.html | 1+
16 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/LSG.pm b/LSG.pm @@ -2,7 +2,6 @@ # LSG.pm - Lumidify Site Generator # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Config.pm b/LSG/Config.pm @@ -2,7 +2,6 @@ # LSG::Config - configuration for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Generate.pm b/LSG/Generate.pm @@ -2,7 +2,6 @@ # LSG::Generate - main generation function for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Markdown.pm b/LSG/Markdown.pm @@ -2,7 +2,6 @@ # LSG::Markdown - markdown preprocessor for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Metadata.pm b/LSG/Metadata.pm @@ -2,7 +2,6 @@ # LSG::Metadata - metadata parser for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Misc.pm b/LSG/Misc.pm @@ -2,7 +2,6 @@ # LSG::Misc - miscellaneous functions for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/Template.pm b/LSG/Template.pm @@ -2,7 +2,6 @@ # LSG::Template - template processor for the LSG # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/LSG/UserFuncs.pm b/LSG/UserFuncs.pm @@ -4,7 +4,6 @@ # LSG::UserFuncs - user functions for the LSG (called from templates and markdown files) # Written by lumidify <nobody@lumidify.org> -# Last updated: 2019-08-21 # # To the extent possible under law, the author has dedicated # all copyright and related and neighboring rights to this diff --git a/README b/README @@ -1,3 +1,6 @@ See the perldoc in lsg.pl for documentation (run perldoc -F lsg.pl). Requirements: Text::Markdown + +Note that, despite being called "Lumidify Site Generator", this is +not actually used to generate lumidify.org. diff --git a/sample/modified_dates b/sample/modified_dates @@ -1,11 +1,11 @@ -1585245652 pages/about.en -1585245772 pages/about.de 1585247247 pages/contact.en 1585247237 pages/contact.de -1585247176 pages/index.en +1617796042 pages/index.en 1585247181 pages/index.de -1585245402 templates/article.de.html -1585245382 templates/base.en.html -1585245382 templates/article.en.html -1585245386 templates/base.de.html -1585244985 templates/base.html +1585245772 pages/about.de +1585245652 pages/about.en +1615725998 templates/article.en.html +1615725998 templates/base.de.html +1615725998 templates/base.html +1615725998 templates/article.de.html +1615725998 templates/base.en.html diff --git a/sample/site/de/about.html b/sample/site/de/about.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>Über | Meine Seite</title> diff --git a/sample/site/de/contact.html b/sample/site/de/contact.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>Kontakt | Meine Seite</title> diff --git a/sample/site/de/index.html b/sample/site/de/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>Home | Meine Seite</title> diff --git a/sample/site/en/about.html b/sample/site/en/about.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>About | My Site</title> diff --git a/sample/site/en/contact.html b/sample/site/en/contact.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>Contact | My Site</title> diff --git a/sample/site/en/index.html b/sample/site/en/index.html @@ -1,3 +1,4 @@ +<!DOCTYPE html> <html> <head> <title>Home | My Site</title>