shite

Static site generator script
git clone _git@git.zakaria.org/shite.git
Log | Files | Refs | README

.env.template (866B)


      1 #
      2 # site-specific config for shite
      3 #
      4 
      5 # onion: specify an onion/hidden service address for the site.
      6 # this will be used to generate the Onion-Location header/meta tag on all
      7 # generated pages. leave blank to not add Onion-Location.
      8 onion=""
      9 
     10 # meta_ext: extension for blog post metadata files
     11 meta_ext=".meta"
     12 
     13 # site_root: full path to the site root
     14 site_root="${HOME}/src/website"
     15 
     16 # html_dir: directory where html is stored
     17 html_dir="html"
     18 
     19 # post_dir: directory where blog posts are
     20 post_dir="posts"
     21 
     22 # exclude_files: space separated list of files to not convert to html
     23 exclude_files="./README.md"
     24 
     25 # rss_root: baseurl for rss
     26 rss_root="https://example.com/"
     27 
     28 # rss_link: main <link> for rss feed
     29 rss_link="https://example.com/blog/"
     30 
     31 # rss_title: title of the rss feed
     32 rss_title="example title"
     33 
     34 # rss_description: description for rss feed
     35 rss_description=""