#!/usr/bin/python3 import shutil, os, re, json, traceback # get user's config settings = {} with open('config.json', 'r') as file: settings = json.loads(file.read()) # "hardcoded" config, not for user to mess with HEADER_FILE = 'common/header.html' FOOTER_FILE = 'common/footer.html' SRC_DIR = 'src/' DST_DIR = 'dist/' HEADER_STRING = '
' FOOTER_STRING = '