diff options
-rw-r--r-- | template.txt | 2 | ||||
-rw-r--r-- | templates/template_nocss.txt | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/template.txt b/template.txt index ca55456..d074e57 100644 --- a/template.txt +++ b/template.txt @@ -24,7 +24,7 @@ div.cover{display:inline-block; vertical-align: top; padding-top: 28px; padding- </head> <body> <div class="middle"> -<h1>danieljon.es</h1>free of Javascript, minimal CSS.<br><br> +<h1>danieljon.es</h1> <a href="/">index</a> <a href="/blog">blog</a> <a href="/portfolio.html">projects</a> <a href="/opinions">opinions</a> <a href="https://git.danieljon.es">git</a> {INFO} </div> diff --git a/templates/template_nocss.txt b/templates/template_nocss.txt new file mode 100644 index 0000000..382ea62 --- /dev/null +++ b/templates/template_nocss.txt @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> +<meta name="keywords" content="Programming, C++, C, Blog"> +<meta name="description" content="Personal blog/portfolio/site for Daniel Jones"> +<meta name="author" content="Daniel Jones"> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta http-equiv="Cache-control" content="public"> +<link rel="icon" type="image/png" href="https://danieljon.es/favicon.png"> +<title>{TITLE}</title> +</head> +<body> +<h1>danieljon.es</h1> +<a href="/">index</a> <a href="/blog">blog</a> <a href="/portfolio.html">projects</a> <a href="/opinions">opinions</a> <a href="https://git.danieljon.es">git</a> +{INFO} +{CONTENT} +<br> <br> page generated {TIME} using <a href="https://git.danieljon.es/website/">sitegenerator</a> +</body> +</html> |