summaryrefslogtreecommitdiff
path: root/make_site.py
diff options
context:
space:
mode:
Diffstat (limited to 'make_site.py')
-rwxr-xr-xmake_site.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/make_site.py b/make_site.py
deleted file mode 100755
index 624be179..00000000
--- a/make_site.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python3
-# coding: utf-8
-#
-# This file is in the public domain.
-#
-# This script runs the jinja2 templating engine on an input template-file
-# using the specified locale for gettext translations, and outputs
-# the resulting (HTML) ouptut-file.
-#
-# Note that the gettext files need to be prepared first. This script
-# is thus to be invoked via the Makefile.
-import jinja2
-import sys
-from pathlib import Path, PurePath
-
-# Make sure the current directory is in the search path when trying
-# to import i18nfix.
-sys.path.insert(0, ".")
-sys.path.insert(0, "inc/")
-
-from inc.site import SiteGenerator
-
-
-def main():
- x = SiteGenerator()
- x.gen_abstract("newsposts", "abstract", "page", 1000)
- x.gen_newspost_content("newsposts", "content", "page", "en")
- x.run()
-
-if __name__ == "__main__":
- main()