From 6c8e5849392cc2541bbdb84d43ce4be2d7fe4319 Mon Sep 17 00:00:00 2001 From: Yuchen Pei <me@ypei.me> Date: Thu, 1 Jul 2021 12:20:22 +1000 Subject: Removed files no longer in use. Also renamed agpl license file. --- templates/barepost.html | 6 ------ templates/blog.html | 27 --------------------------- templates/default.html | 27 --------------------------- templates/microblog.html | 25 ------------------------- templates/micropost.html | 4 ---- templates/oldpost.html | 28 ---------------------------- templates/post.html | 44 -------------------------------------------- templates/postlist.html | 28 ---------------------------- templates/postlistitem.html | 3 --- 9 files changed, 192 deletions(-) delete mode 100644 templates/barepost.html delete mode 100644 templates/blog.html delete mode 100644 templates/default.html delete mode 100644 templates/microblog.html delete mode 100644 templates/micropost.html delete mode 100644 templates/oldpost.html delete mode 100644 templates/post.html delete mode 100644 templates/postlist.html delete mode 100644 templates/postlistitem.html (limited to 'templates') diff --git a/templates/barepost.html b/templates/barepost.html deleted file mode 100644 index ec4db1a..0000000 --- a/templates/barepost.html +++ /dev/null @@ -1,6 +0,0 @@ -<div class="bodyitem"> - <a href="$url$"><h2> $title$ </h2></a> - <p>Posted on $date$</p> - $synopsis$ - <a href="$url$">Continue reading</a> -</div> diff --git a/templates/blog.html b/templates/blog.html deleted file mode 100644 index 56128d6..0000000 --- a/templates/blog.html +++ /dev/null @@ -1,27 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>Yuchen's Blog</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="blog.html">Yuchen's Blog</a> - </span> - <nav> - <a href="postlist.html">All posts</a><a href="index.html">About</a><a href="blog-feed.xml">Feed</a> - </nav> - </header> - - <div class="main"> - $body$ - <div class="bodyitem"> - <p><a href="postlist.html">older posts</a></p> - </div> - </div> - </body> -</html> diff --git a/templates/default.html b/templates/default.html deleted file mode 100644 index b899d07..0000000 --- a/templates/default.html +++ /dev/null @@ -1,27 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>$title$</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="index.html">Yuchen Pei</a> - </span> - <nav> - <a href="blog.html">Blog</a><a href="microblog.html">Microblog</a><a href="links.html">Links</a> - </nav> - </header> - - <div class="main"> - <div class="bodyitem"> - $body$ - </div> - </div> - - </body> -</html> diff --git a/templates/microblog.html b/templates/microblog.html deleted file mode 100644 index 7713a1b..0000000 --- a/templates/microblog.html +++ /dev/null @@ -1,25 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>Yuchen's Microblog</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="microblog.html">Yuchen's Microblog</a> - </span> - <nav> - <a href="index.html">About</a><a href="microblog-feed.xml">Feed</a> - </nav> - </header> - - <div class="main"> - $body$ - </div> - - </body> -</html> diff --git a/templates/micropost.html b/templates/micropost.html deleted file mode 100644 index e3acdd5..0000000 --- a/templates/micropost.html +++ /dev/null @@ -1,4 +0,0 @@ -<div class="bodyitem"> - <span id=$name$><p><a href="#$name$">$date$</a></p></span> - $body$ -</div> diff --git a/templates/oldpost.html b/templates/oldpost.html deleted file mode 100644 index 2be3f1a..0000000 --- a/templates/oldpost.html +++ /dev/null @@ -1,28 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>$title$</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="../blog.html">Yuchen's Blog</a> - </span> - <nav> - <a href="../index.html">About</a><a href="../postlist.html">All posts</a><a href="../blog-feed.xml">Feed</a> - </nav> - </header> - - <div class="main"> - <div class="bodyitem"> - <h2> $title$ </h2> - <p>Posted on $date$</p> - $body$ - </div> - </div> - </body> -</html> diff --git a/templates/post.html b/templates/post.html deleted file mode 100644 index b3f8227..0000000 --- a/templates/post.html +++ /dev/null @@ -1,44 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>$title$</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script data-isso="/comments/" - data-isso-css="true" - data-isso-lang="en" - data-isso-reply-to-self="false" - data-isso-require-author="true" - data-isso-require-email="true" - data-isso-max-comments-top="10" - data-isso-max-comments-nested="5" - data-isso-reveal-on-click="5" - data-isso-avatar="true" - data-isso-avatar-bg="#f0f0f0" - data-isso-avatar-fg="#9abf88 #5698c4 #e279a3 #9163b6 ..." - data-isso-vote="true" - data-vote-levels="" - src="/comments/js/embed.min.js"></script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="../blog.html">Yuchen's Blog</a> - </span> - <nav> - <a href="../index.html">About</a><a href="../postlist.html">All posts</a><a href="../blog-feed.xml">Feed</a> - </nav> - </header> - - <div class="main"> - <div class="bodyitem"> - <h2> $title$ </h2> - <p>Posted on $date$ | <a href="/posts/$name$.html#isso-thread">Comments</a> </p> - $body$ - </div> - <section id="isso-thread"></section> - </div> - </body> -</html> diff --git a/templates/postlist.html b/templates/postlist.html deleted file mode 100644 index 00282e4..0000000 --- a/templates/postlist.html +++ /dev/null @@ -1,28 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <title>All posts</title> - <link rel="stylesheet" href="../assets/css/default.css" /> - <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> - <script src="../assets/js/analytics.js" type="text/javascript"></script> - </head> - <body> - <header> - <span class="logo"> - <a href="blog.html">Yuchen's Blog</a> - </span> - <nav> - <a>All posts</a><a href="index.html">About</a><a href="blog-feed.xml">Feed</a> - </nav> - </header> - - <div class="main"> - <div class="bodyitem"> - <ul class="postlist"> - $body$ - </ul> - </div> - </div> - </body> -</html> diff --git a/templates/postlistitem.html b/templates/postlistitem.html deleted file mode 100644 index eb8cb5f..0000000 --- a/templates/postlistitem.html +++ /dev/null @@ -1,3 +0,0 @@ -<li class="postlistitem"> - <a href="$url$">$title$</a> - $date$ -</li> -- cgit v1.2.3