├── .coveragerc ├── .gitignore ├── .staticsite ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS.md ├── README.md ├── coverage.sh ├── devel ├── bench_load_content.py ├── bench_yaml.py └── profile-view ├── doc ├── devel │ ├── README.md │ └── constraints.md ├── howto │ ├── README.md │ ├── about-page.md │ ├── blog-posts-in-a-directory.md │ ├── post-image.md │ ├── post-series.md │ ├── social-media-previews.md │ └── tag-pages.md ├── reference │ ├── README.md │ ├── archetypes.md │ ├── contents.md │ ├── feature.md │ ├── features │ │ ├── aliases.md │ │ ├── data.md │ │ ├── dirindex.md │ │ ├── images.md │ │ ├── jinja2.md │ │ ├── links.md │ │ ├── md.md │ │ ├── nav.md │ │ ├── pages.md │ │ ├── rst.md │ │ ├── syndication.md │ │ └── taxonomy.md │ ├── fields │ │ ├── aliases.md │ │ ├── asset.md │ │ ├── author.md │ │ ├── copyright.md │ │ ├── created_from.md │ │ ├── data_type.md │ │ ├── date.md │ │ ├── description.md │ │ ├── draft.md │ │ ├── front_matter.md │ │ ├── height.md │ │ ├── image.md │ │ ├── image_orientation.md │ │ ├── index.md │ │ ├── indexed.md │ │ ├── lat.md │ │ ├── links.md │ │ ├── lon.md │ │ ├── name.md │ │ ├── nav.md │ │ ├── nav_title.md │ │ ├── old_footprint.md │ │ ├── page.md │ │ ├── pages.md │ │ ├── parent.md │ │ ├── related.md │ │ ├── series.md │ │ ├── series_title.md │ │ ├── site_name.md │ │ ├── site_url.md │ │ ├── syndicated.md │ │ ├── syndication.md │ │ ├── syndication_date.md │ │ ├── tags.md │ │ ├── taxonomy.md │ │ ├── template.md │ │ ├── template_copyright.md │ │ ├── template_description.md │ │ ├── template_title.md │ │ ├── title.md │ │ └── width.md │ ├── front-matter.md │ ├── page-filter.md │ ├── page.md │ ├── pages │ │ ├── alias.md │ │ ├── archive.md │ │ ├── asset.md │ │ ├── atom.md │ │ ├── category.md │ │ ├── data.md │ │ ├── dir.md │ │ ├── image.md │ │ ├── jinja2.md │ │ ├── links.md │ │ ├── links_index.md │ │ ├── markdown.md │ │ ├── rss.md │ │ ├── rst.md │ │ ├── scaledimage.md │ │ └── taxonomy.md │ ├── settings.md │ ├── site.md │ ├── templates.md │ └── theme.md └── tutorial │ ├── README.md │ └── blog.md ├── example ├── blog │ ├── about.md │ ├── index.md │ └── posts │ │ ├── example.jpg │ │ └── example.md ├── demo │ ├── archetypes │ │ ├── default.md │ │ ├── doc.rst │ │ └── links.md │ ├── content │ │ ├── .secret │ │ ├── .secrets │ │ │ └── page.md │ │ ├── blog │ │ │ ├── 2016 │ │ │ │ ├── example-series1.md │ │ │ │ ├── example-series2.md │ │ │ │ ├── example-series3.md │ │ │ │ ├── example.md │ │ │ │ ├── example.png │ │ │ │ └── rst_example.rst │ │ │ └── index.html │ │ ├── index.html │ │ ├── pages │ │ │ ├── README.md │ │ │ └── doc │ │ │ │ └── sub.md │ │ ├── series.taxonomy │ │ └── tags.taxonomy │ └── settings.py └── tutorial │ └── index.md ├── pyproject.toml ├── setup.cfg ├── ssite ├── ssite.1 ├── staticsite ├── __init__.py ├── __main__.py ├── archetypes.py ├── asset.py ├── autodoc.py ├── cache.py ├── cmd │ ├── __init__.py │ ├── build.py │ ├── check.py │ ├── cli.py │ ├── command.py │ ├── dump.py │ ├── dump_meta.py │ ├── edit.py │ ├── meta.py │ ├── new.py │ ├── serve │ │ ├── __init__.py │ │ ├── pagefs.py │ │ └── server.py │ ├── shell.py │ └── site.py ├── feature.py ├── features │ ├── __init__.py │ ├── aliases.py │ ├── data.py │ ├── dirindex.py │ ├── images.py │ ├── jinja2.py │ ├── links │ │ ├── __init__.py │ │ ├── cmdline.py │ │ ├── data.py │ │ └── index.py │ ├── markdown.py │ ├── nav.py │ ├── rst.py │ ├── syndication.py │ └── taxonomy.py ├── fields.py ├── file.py ├── fstree.py ├── global_settings.py ├── markup.py ├── node.py ├── page.py ├── page_filter.py ├── render.py ├── settings.py ├── site.py ├── source_node.py ├── theme.py ├── toposort.py └── utils │ ├── __init__.py │ ├── arrange.py │ ├── front_matter.py │ ├── images.py │ └── yaml_codec.py ├── stubs ├── IPython.pyi ├── bpython.pyi ├── coloredlogs.pyi ├── lmdb.pyi └── pyinotify.pyi ├── tests ├── __init__.py ├── data │ └── settings.py ├── test_aliases.py ├── test_asset.py ├── test_config.py ├── test_dirs.py ├── test_images.py ├── test_load.py ├── test_metadata.py ├── test_nav.py ├── test_page.py ├── test_page_filter.py ├── test_rst.py ├── test_series.py ├── test_settings.py ├── test_site_blog.py ├── test_site_demo.py ├── test_site_tutorial.py ├── test_syndication.py ├── test_taxonomy.py ├── test_templates.py ├── test_theme.py ├── test_toml.py ├── test_toposort.py ├── test_yaml.py └── utils.py ├── themes ├── default-b5 │ ├── config │ ├── default │ │ ├── base.html │ │ ├── page.html │ │ └── taxonomy.html │ ├── lib │ │ ├── blog.html │ │ └── links.html │ └── static │ │ └── bootstrap5 │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── default-base │ ├── archive.html │ ├── base.html │ ├── blog.html │ ├── data-links.html │ ├── data.html │ ├── default-base │ │ └── base.html │ ├── default │ │ ├── archive.html │ │ ├── blog.html │ │ ├── data-links.html │ │ ├── data.html │ │ ├── dir.html │ │ ├── redirect.html │ │ ├── syndication.atom │ │ └── syndication.rss │ ├── dir.html │ ├── lib │ │ └── server.html │ ├── page.html │ ├── redirect.html │ ├── static │ │ ├── css │ │ │ ├── github.css │ │ │ └── site.css │ │ ├── fork-awesome │ │ │ ├── css │ │ │ │ ├── fork-awesome.css │ │ │ │ └── v5-compat.css │ │ │ ├── fonts │ │ │ │ ├── forkawesome-webfont.eot │ │ │ │ ├── forkawesome-webfont.svg │ │ │ │ ├── forkawesome-webfont.ttf │ │ │ │ ├── forkawesome-webfont.woff │ │ │ │ └── forkawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── fork-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ ├── v5-compat.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── fork-awesome.scss │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── feed-icon-14x14.png │ │ │ ├── feed-icon-16x16.png │ │ │ ├── feed-icon-24x24.png │ │ │ └── feed-icon-28x28.png │ │ └── js │ │ │ ├── links.js │ │ │ └── staticsite-server.js │ ├── syndication.atom │ ├── syndication.rss │ └── taxonomy.html ├── default │ ├── config │ ├── default │ │ ├── base.html │ │ ├── page.html │ │ └── taxonomy.html │ ├── lib │ │ ├── blog.html │ │ └── links.html │ └── static │ │ ├── bootstrap4 │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ └── popper.js │ │ ├── esm │ │ ├── popper-utils.js │ │ ├── popper-utils.min.js │ │ ├── popper.js │ │ └── popper.min.js │ │ ├── popper-utils.js │ │ ├── popper-utils.min.js │ │ ├── popper.js │ │ ├── popper.min.js │ │ └── umd │ │ ├── popper-utils.js │ │ ├── popper-utils.min.js │ │ ├── popper.js │ │ └── popper.min.js └── hello │ ├── README.md │ ├── config │ └── features │ └── hello.py ├── update-manpage └── update-reference /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/.gitignore -------------------------------------------------------------------------------- /.staticsite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/.staticsite -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/README.md -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/coverage.sh -------------------------------------------------------------------------------- /devel/bench_load_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/devel/bench_load_content.py -------------------------------------------------------------------------------- /devel/bench_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/devel/bench_yaml.py -------------------------------------------------------------------------------- /devel/profile-view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/devel/profile-view -------------------------------------------------------------------------------- /doc/devel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/devel/README.md -------------------------------------------------------------------------------- /doc/devel/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/devel/constraints.md -------------------------------------------------------------------------------- /doc/howto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/README.md -------------------------------------------------------------------------------- /doc/howto/about-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/about-page.md -------------------------------------------------------------------------------- /doc/howto/blog-posts-in-a-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/blog-posts-in-a-directory.md -------------------------------------------------------------------------------- /doc/howto/post-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/post-image.md -------------------------------------------------------------------------------- /doc/howto/post-series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/post-series.md -------------------------------------------------------------------------------- /doc/howto/social-media-previews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/social-media-previews.md -------------------------------------------------------------------------------- /doc/howto/tag-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/howto/tag-pages.md -------------------------------------------------------------------------------- /doc/reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/README.md -------------------------------------------------------------------------------- /doc/reference/archetypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/archetypes.md -------------------------------------------------------------------------------- /doc/reference/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/contents.md -------------------------------------------------------------------------------- /doc/reference/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/feature.md -------------------------------------------------------------------------------- /doc/reference/features/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/aliases.md -------------------------------------------------------------------------------- /doc/reference/features/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/data.md -------------------------------------------------------------------------------- /doc/reference/features/dirindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/dirindex.md -------------------------------------------------------------------------------- /doc/reference/features/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/images.md -------------------------------------------------------------------------------- /doc/reference/features/jinja2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/jinja2.md -------------------------------------------------------------------------------- /doc/reference/features/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/links.md -------------------------------------------------------------------------------- /doc/reference/features/md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/md.md -------------------------------------------------------------------------------- /doc/reference/features/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/nav.md -------------------------------------------------------------------------------- /doc/reference/features/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/pages.md -------------------------------------------------------------------------------- /doc/reference/features/rst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/rst.md -------------------------------------------------------------------------------- /doc/reference/features/syndication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/syndication.md -------------------------------------------------------------------------------- /doc/reference/features/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/features/taxonomy.md -------------------------------------------------------------------------------- /doc/reference/fields/aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/aliases.md -------------------------------------------------------------------------------- /doc/reference/fields/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/asset.md -------------------------------------------------------------------------------- /doc/reference/fields/author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/author.md -------------------------------------------------------------------------------- /doc/reference/fields/copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/copyright.md -------------------------------------------------------------------------------- /doc/reference/fields/created_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/created_from.md -------------------------------------------------------------------------------- /doc/reference/fields/data_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/data_type.md -------------------------------------------------------------------------------- /doc/reference/fields/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/date.md -------------------------------------------------------------------------------- /doc/reference/fields/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/description.md -------------------------------------------------------------------------------- /doc/reference/fields/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/draft.md -------------------------------------------------------------------------------- /doc/reference/fields/front_matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/front_matter.md -------------------------------------------------------------------------------- /doc/reference/fields/height.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/height.md -------------------------------------------------------------------------------- /doc/reference/fields/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/image.md -------------------------------------------------------------------------------- /doc/reference/fields/image_orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/image_orientation.md -------------------------------------------------------------------------------- /doc/reference/fields/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/index.md -------------------------------------------------------------------------------- /doc/reference/fields/indexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/indexed.md -------------------------------------------------------------------------------- /doc/reference/fields/lat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/lat.md -------------------------------------------------------------------------------- /doc/reference/fields/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/links.md -------------------------------------------------------------------------------- /doc/reference/fields/lon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/lon.md -------------------------------------------------------------------------------- /doc/reference/fields/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/name.md -------------------------------------------------------------------------------- /doc/reference/fields/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/nav.md -------------------------------------------------------------------------------- /doc/reference/fields/nav_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/nav_title.md -------------------------------------------------------------------------------- /doc/reference/fields/old_footprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/old_footprint.md -------------------------------------------------------------------------------- /doc/reference/fields/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/page.md -------------------------------------------------------------------------------- /doc/reference/fields/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/pages.md -------------------------------------------------------------------------------- /doc/reference/fields/parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/parent.md -------------------------------------------------------------------------------- /doc/reference/fields/related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/related.md -------------------------------------------------------------------------------- /doc/reference/fields/series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/series.md -------------------------------------------------------------------------------- /doc/reference/fields/series_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/series_title.md -------------------------------------------------------------------------------- /doc/reference/fields/site_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/site_name.md -------------------------------------------------------------------------------- /doc/reference/fields/site_url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/site_url.md -------------------------------------------------------------------------------- /doc/reference/fields/syndicated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/syndicated.md -------------------------------------------------------------------------------- /doc/reference/fields/syndication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/syndication.md -------------------------------------------------------------------------------- /doc/reference/fields/syndication_date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/syndication_date.md -------------------------------------------------------------------------------- /doc/reference/fields/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/tags.md -------------------------------------------------------------------------------- /doc/reference/fields/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/taxonomy.md -------------------------------------------------------------------------------- /doc/reference/fields/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/template.md -------------------------------------------------------------------------------- /doc/reference/fields/template_copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/template_copyright.md -------------------------------------------------------------------------------- /doc/reference/fields/template_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/template_description.md -------------------------------------------------------------------------------- /doc/reference/fields/template_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/template_title.md -------------------------------------------------------------------------------- /doc/reference/fields/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/title.md -------------------------------------------------------------------------------- /doc/reference/fields/width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/fields/width.md -------------------------------------------------------------------------------- /doc/reference/front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/front-matter.md -------------------------------------------------------------------------------- /doc/reference/page-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/page-filter.md -------------------------------------------------------------------------------- /doc/reference/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/page.md -------------------------------------------------------------------------------- /doc/reference/pages/alias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/alias.md -------------------------------------------------------------------------------- /doc/reference/pages/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/archive.md -------------------------------------------------------------------------------- /doc/reference/pages/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/asset.md -------------------------------------------------------------------------------- /doc/reference/pages/atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/atom.md -------------------------------------------------------------------------------- /doc/reference/pages/category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/category.md -------------------------------------------------------------------------------- /doc/reference/pages/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/data.md -------------------------------------------------------------------------------- /doc/reference/pages/dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/dir.md -------------------------------------------------------------------------------- /doc/reference/pages/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/image.md -------------------------------------------------------------------------------- /doc/reference/pages/jinja2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/jinja2.md -------------------------------------------------------------------------------- /doc/reference/pages/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/links.md -------------------------------------------------------------------------------- /doc/reference/pages/links_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/links_index.md -------------------------------------------------------------------------------- /doc/reference/pages/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/markdown.md -------------------------------------------------------------------------------- /doc/reference/pages/rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/rss.md -------------------------------------------------------------------------------- /doc/reference/pages/rst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/rst.md -------------------------------------------------------------------------------- /doc/reference/pages/scaledimage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/scaledimage.md -------------------------------------------------------------------------------- /doc/reference/pages/taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/pages/taxonomy.md -------------------------------------------------------------------------------- /doc/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/settings.md -------------------------------------------------------------------------------- /doc/reference/site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/site.md -------------------------------------------------------------------------------- /doc/reference/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/templates.md -------------------------------------------------------------------------------- /doc/reference/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/reference/theme.md -------------------------------------------------------------------------------- /doc/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/tutorial/README.md -------------------------------------------------------------------------------- /doc/tutorial/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/doc/tutorial/blog.md -------------------------------------------------------------------------------- /example/blog/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/blog/about.md -------------------------------------------------------------------------------- /example/blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/blog/index.md -------------------------------------------------------------------------------- /example/blog/posts/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/blog/posts/example.jpg -------------------------------------------------------------------------------- /example/blog/posts/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/blog/posts/example.md -------------------------------------------------------------------------------- /example/demo/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/archetypes/default.md -------------------------------------------------------------------------------- /example/demo/archetypes/doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/archetypes/doc.rst -------------------------------------------------------------------------------- /example/demo/archetypes/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/archetypes/links.md -------------------------------------------------------------------------------- /example/demo/content/.secret: -------------------------------------------------------------------------------- 1 | This should not end up in the web directory. 2 | -------------------------------------------------------------------------------- /example/demo/content/.secrets/page.md: -------------------------------------------------------------------------------- 1 | This should not end up in the web directory. 2 | -------------------------------------------------------------------------------- /example/demo/content/blog/2016/example-series1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/example-series1.md -------------------------------------------------------------------------------- /example/demo/content/blog/2016/example-series2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/example-series2.md -------------------------------------------------------------------------------- /example/demo/content/blog/2016/example-series3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/example-series3.md -------------------------------------------------------------------------------- /example/demo/content/blog/2016/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/example.md -------------------------------------------------------------------------------- /example/demo/content/blog/2016/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/example.png -------------------------------------------------------------------------------- /example/demo/content/blog/2016/rst_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/2016/rst_example.rst -------------------------------------------------------------------------------- /example/demo/content/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/blog/index.html -------------------------------------------------------------------------------- /example/demo/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/index.html -------------------------------------------------------------------------------- /example/demo/content/pages/README.md: -------------------------------------------------------------------------------- 1 | # This is an example site 2 | 3 | Link: [Docs](doc/sub.md) 4 | 5 | [Back home](..) 6 | -------------------------------------------------------------------------------- /example/demo/content/pages/doc/sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/pages/doc/sub.md -------------------------------------------------------------------------------- /example/demo/content/series.taxonomy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/series.taxonomy -------------------------------------------------------------------------------- /example/demo/content/tags.taxonomy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/content/tags.taxonomy -------------------------------------------------------------------------------- /example/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/demo/settings.py -------------------------------------------------------------------------------- /example/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/example/tutorial/index.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = .git,tests/data,example 3 | -------------------------------------------------------------------------------- /ssite: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec python3 -m staticsite "$@" 3 | -------------------------------------------------------------------------------- /ssite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/ssite.1 -------------------------------------------------------------------------------- /staticsite/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.5" 2 | -------------------------------------------------------------------------------- /staticsite/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/__main__.py -------------------------------------------------------------------------------- /staticsite/archetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/archetypes.py -------------------------------------------------------------------------------- /staticsite/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/asset.py -------------------------------------------------------------------------------- /staticsite/autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/autodoc.py -------------------------------------------------------------------------------- /staticsite/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cache.py -------------------------------------------------------------------------------- /staticsite/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticsite/cmd/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/build.py -------------------------------------------------------------------------------- /staticsite/cmd/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/check.py -------------------------------------------------------------------------------- /staticsite/cmd/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/cli.py -------------------------------------------------------------------------------- /staticsite/cmd/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/command.py -------------------------------------------------------------------------------- /staticsite/cmd/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/dump.py -------------------------------------------------------------------------------- /staticsite/cmd/dump_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/dump_meta.py -------------------------------------------------------------------------------- /staticsite/cmd/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/edit.py -------------------------------------------------------------------------------- /staticsite/cmd/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/meta.py -------------------------------------------------------------------------------- /staticsite/cmd/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/new.py -------------------------------------------------------------------------------- /staticsite/cmd/serve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/serve/__init__.py -------------------------------------------------------------------------------- /staticsite/cmd/serve/pagefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/serve/pagefs.py -------------------------------------------------------------------------------- /staticsite/cmd/serve/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/serve/server.py -------------------------------------------------------------------------------- /staticsite/cmd/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/shell.py -------------------------------------------------------------------------------- /staticsite/cmd/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/cmd/site.py -------------------------------------------------------------------------------- /staticsite/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/feature.py -------------------------------------------------------------------------------- /staticsite/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticsite/features/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/aliases.py -------------------------------------------------------------------------------- /staticsite/features/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/data.py -------------------------------------------------------------------------------- /staticsite/features/dirindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/dirindex.py -------------------------------------------------------------------------------- /staticsite/features/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/images.py -------------------------------------------------------------------------------- /staticsite/features/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/jinja2.py -------------------------------------------------------------------------------- /staticsite/features/links/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/links/__init__.py -------------------------------------------------------------------------------- /staticsite/features/links/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/links/cmdline.py -------------------------------------------------------------------------------- /staticsite/features/links/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/links/data.py -------------------------------------------------------------------------------- /staticsite/features/links/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/links/index.py -------------------------------------------------------------------------------- /staticsite/features/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/markdown.py -------------------------------------------------------------------------------- /staticsite/features/nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/nav.py -------------------------------------------------------------------------------- /staticsite/features/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/rst.py -------------------------------------------------------------------------------- /staticsite/features/syndication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/syndication.py -------------------------------------------------------------------------------- /staticsite/features/taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/features/taxonomy.py -------------------------------------------------------------------------------- /staticsite/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/fields.py -------------------------------------------------------------------------------- /staticsite/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/file.py -------------------------------------------------------------------------------- /staticsite/fstree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/fstree.py -------------------------------------------------------------------------------- /staticsite/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/global_settings.py -------------------------------------------------------------------------------- /staticsite/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/markup.py -------------------------------------------------------------------------------- /staticsite/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/node.py -------------------------------------------------------------------------------- /staticsite/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/page.py -------------------------------------------------------------------------------- /staticsite/page_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/page_filter.py -------------------------------------------------------------------------------- /staticsite/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/render.py -------------------------------------------------------------------------------- /staticsite/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/settings.py -------------------------------------------------------------------------------- /staticsite/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/site.py -------------------------------------------------------------------------------- /staticsite/source_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/source_node.py -------------------------------------------------------------------------------- /staticsite/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/theme.py -------------------------------------------------------------------------------- /staticsite/toposort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/toposort.py -------------------------------------------------------------------------------- /staticsite/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/utils/__init__.py -------------------------------------------------------------------------------- /staticsite/utils/arrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/utils/arrange.py -------------------------------------------------------------------------------- /staticsite/utils/front_matter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/utils/front_matter.py -------------------------------------------------------------------------------- /staticsite/utils/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/utils/images.py -------------------------------------------------------------------------------- /staticsite/utils/yaml_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/staticsite/utils/yaml_codec.py -------------------------------------------------------------------------------- /stubs/IPython.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/stubs/IPython.pyi -------------------------------------------------------------------------------- /stubs/bpython.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/stubs/bpython.pyi -------------------------------------------------------------------------------- /stubs/coloredlogs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/stubs/coloredlogs.pyi -------------------------------------------------------------------------------- /stubs/lmdb.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/stubs/lmdb.pyi -------------------------------------------------------------------------------- /stubs/pyinotify.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/stubs/pyinotify.pyi -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/data/settings.py -------------------------------------------------------------------------------- /tests/test_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_aliases.py -------------------------------------------------------------------------------- /tests/test_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_asset.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_dirs.py -------------------------------------------------------------------------------- /tests/test_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_images.py -------------------------------------------------------------------------------- /tests/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_load.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_nav.py -------------------------------------------------------------------------------- /tests/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_page.py -------------------------------------------------------------------------------- /tests/test_page_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_page_filter.py -------------------------------------------------------------------------------- /tests/test_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_rst.py -------------------------------------------------------------------------------- /tests/test_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_series.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_site_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_site_blog.py -------------------------------------------------------------------------------- /tests/test_site_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_site_demo.py -------------------------------------------------------------------------------- /tests/test_site_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_site_tutorial.py -------------------------------------------------------------------------------- /tests/test_syndication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_syndication.py -------------------------------------------------------------------------------- /tests/test_taxonomy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_taxonomy.py -------------------------------------------------------------------------------- /tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_templates.py -------------------------------------------------------------------------------- /tests/test_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_theme.py -------------------------------------------------------------------------------- /tests/test_toml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_toml.py -------------------------------------------------------------------------------- /tests/test_toposort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_toposort.py -------------------------------------------------------------------------------- /tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/test_yaml.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/tests/utils.py -------------------------------------------------------------------------------- /themes/default-b5/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/config -------------------------------------------------------------------------------- /themes/default-b5/default/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/default/base.html -------------------------------------------------------------------------------- /themes/default-b5/default/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/default/page.html -------------------------------------------------------------------------------- /themes/default-b5/default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/default/taxonomy.html -------------------------------------------------------------------------------- /themes/default-b5/lib/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/lib/blog.html -------------------------------------------------------------------------------- /themes/default-b5/lib/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/lib/links.html -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.esm.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.js.map -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.min.js -------------------------------------------------------------------------------- /themes/default-b5/static/bootstrap5/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-b5/static/bootstrap5/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /themes/default-base/archive.html: -------------------------------------------------------------------------------- 1 | {% extends "default/archive.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/base.html: -------------------------------------------------------------------------------- 1 | {% extends "default/base.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/blog.html: -------------------------------------------------------------------------------- 1 | {% extends "default/blog.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/data-links.html: -------------------------------------------------------------------------------- 1 | {% extends "default/data-links.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/data.html: -------------------------------------------------------------------------------- 1 | {% extends "default/data.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/default-base/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default-base/base.html -------------------------------------------------------------------------------- /themes/default-base/default/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/archive.html -------------------------------------------------------------------------------- /themes/default-base/default/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/blog.html -------------------------------------------------------------------------------- /themes/default-base/default/data-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/data-links.html -------------------------------------------------------------------------------- /themes/default-base/default/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/data.html -------------------------------------------------------------------------------- /themes/default-base/default/dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/dir.html -------------------------------------------------------------------------------- /themes/default-base/default/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/redirect.html -------------------------------------------------------------------------------- /themes/default-base/default/syndication.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/syndication.atom -------------------------------------------------------------------------------- /themes/default-base/default/syndication.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/default/syndication.rss -------------------------------------------------------------------------------- /themes/default-base/dir.html: -------------------------------------------------------------------------------- 1 | {% extends "default/dir.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/lib/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/lib/server.html -------------------------------------------------------------------------------- /themes/default-base/page.html: -------------------------------------------------------------------------------- 1 | {% extends "default/page.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/redirect.html: -------------------------------------------------------------------------------- 1 | {% extends "default/redirect.html" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/static/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/css/github.css -------------------------------------------------------------------------------- /themes/default-base/static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/css/site.css -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/css/fork-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/css/fork-awesome.css -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/css/v5-compat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/css/v5-compat.css -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.eot -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.svg -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.ttf -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.woff -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/fonts/forkawesome-webfont.woff2 -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/animated.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/core.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/fork-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/fork-awesome.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/icons.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/larger.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/list.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/mixins.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/path.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/screen-reader.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/stacked.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/v5-compat.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/v5-compat.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/less/variables.less -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_core.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_list.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_path.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_screen-reader.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /themes/default-base/static/fork-awesome/scss/fork-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/fork-awesome/scss/fork-awesome.scss -------------------------------------------------------------------------------- /themes/default-base/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/images/favicon.ico -------------------------------------------------------------------------------- /themes/default-base/static/images/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/images/feed-icon-14x14.png -------------------------------------------------------------------------------- /themes/default-base/static/images/feed-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/images/feed-icon-16x16.png -------------------------------------------------------------------------------- /themes/default-base/static/images/feed-icon-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/images/feed-icon-24x24.png -------------------------------------------------------------------------------- /themes/default-base/static/images/feed-icon-28x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/images/feed-icon-28x28.png -------------------------------------------------------------------------------- /themes/default-base/static/js/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/js/links.js -------------------------------------------------------------------------------- /themes/default-base/static/js/staticsite-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default-base/static/js/staticsite-server.js -------------------------------------------------------------------------------- /themes/default-base/syndication.atom: -------------------------------------------------------------------------------- 1 | {% extends "default/syndication.atom" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/syndication.rss: -------------------------------------------------------------------------------- 1 | {% extends "default/syndication.rss" %} 2 | -------------------------------------------------------------------------------- /themes/default-base/taxonomy.html: -------------------------------------------------------------------------------- 1 | {% extends "default/taxonomy.html" %} 2 | -------------------------------------------------------------------------------- /themes/default/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/config -------------------------------------------------------------------------------- /themes/default/default/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/default/base.html -------------------------------------------------------------------------------- /themes/default/default/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/default/page.html -------------------------------------------------------------------------------- /themes/default/default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/default/taxonomy.html -------------------------------------------------------------------------------- /themes/default/lib/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/lib/blog.html -------------------------------------------------------------------------------- /themes/default/lib/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/lib/links.html -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-grid.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap.min.css -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.js -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.js.map -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.min.js -------------------------------------------------------------------------------- /themes/default/static/bootstrap4/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/bootstrap4/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /themes/default/static/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/jquery/jquery.js -------------------------------------------------------------------------------- /themes/default/static/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/jquery/jquery.min.js -------------------------------------------------------------------------------- /themes/default/static/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/jquery/jquery.min.map -------------------------------------------------------------------------------- /themes/default/static/popper.js/esm/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/esm/popper-utils.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/esm/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/esm/popper-utils.min.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/esm/popper.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/esm/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/esm/popper.min.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/popper-utils.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/popper-utils.min.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/popper.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/popper.min.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/umd/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/umd/popper-utils.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/umd/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/umd/popper-utils.min.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/umd/popper.js -------------------------------------------------------------------------------- /themes/default/static/popper.js/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/default/static/popper.js/umd/popper.min.js -------------------------------------------------------------------------------- /themes/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/hello/README.md -------------------------------------------------------------------------------- /themes/hello/config: -------------------------------------------------------------------------------- 1 | --- 2 | extends: default 3 | -------------------------------------------------------------------------------- /themes/hello/features/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/themes/hello/features/hello.py -------------------------------------------------------------------------------- /update-manpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/update-manpage -------------------------------------------------------------------------------- /update-reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spanezz/staticsite/HEAD/update-reference --------------------------------------------------------------------------------