This is an automated email from the ASF dual-hosted git repository.
gstein pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/steve.git
The following commit(s) were added to refs/heads/asf-site by this push:
new fcbd20c add first run of the new website
fcbd20c is described below
commit fcbd20cb75f06828a77a34d535f8a78acf35e322
Author: Greg Stein <[email protected]>
AuthorDate: Sat May 21 04:22:39 2022 -0400
add first run of the new website
---
site/pelican.auto.py | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/site/pelican.auto.py b/site/pelican.auto.py
new file mode 100644
index 0000000..2473ca6
--- /dev/null
+++ b/site/pelican.auto.py
@@ -0,0 +1,43 @@
+
+# Basic information about the site.
+SITENAME = 'Apache STeVe'
+SITEDESC = 'Apache STeVe'
+SITEDOMAIN = 'steve.apache.org'
+SITEURL = 'https://steve.apache.org'
+SITELOGO = 'https://steve.apache.org/images/logo.png'
+SITEREPOSITORY = 'https://github.com/apache/steve/blob/trunk/site'
+CURRENTYEAR = 2022
+TRADEMARKS = 'Apache, the Apache feather logo, and "Project" are trademarks or
registered trademarks'
+TIMEZONE = 'UTC'
+# Theme includes templates and possibly static files
+THEME = '/home/gstein/src/asf/steve/site/theme'
+# Specify location of plugins, and which to use
+PLUGIN_PATHS = [ '/home/gstein/src/asf/i-pelican/bin/../plugins', ]
+PLUGINS = [ 'gfm', ]
+# All content is located at '.' (aka content/ )
+PAGE_PATHS = [ 'pages' ]
+STATIC_PATHS = [ 'css', 'images', 'js', ]
+# Where to place/link generated pages
+
+PATH_METADATA = 'pages/(?P<path_no_ext>.*)\\..*'
+
+PAGE_SAVE_AS = '{path_no_ext}.html'
+# Don't try to translate
+PAGE_TRANSLATION_ID = None
+# Disable unused Pelican features
+FEED_ALL_ATOM = None
+INDEX_SAVE_AS = ''
+TAGS_SAVE_AS = ''
+CATEGORIES_SAVE_AS = ''
+AUTHORS_SAVE_AS = ''
+ARCHIVES_SAVE_AS = ''
+# Disable articles by pointing to a (should-be-absent) subdir
+ARTICLE_PATHS = [ 'articles' ]
+# Disable all processing of .html files
+READERS = { 'html': None, }
+
+
+
+
+
+