diff options
Diffstat (limited to 'e_src')
-rw-r--r-- | e_src/a/test2.html | 0 | ||||
-rw-r--r-- | e_src/a/test2.md | 13 | ||||
-rw-r--r-- | e_src/templates/article/footer.html | 0 | ||||
-rw-r--r-- | e_src/templates/article/header.html | 1 | ||||
-rw-r--r-- | e_src/templates/articles/footer.html | 0 | ||||
-rw-r--r-- | e_src/templates/articles/header.html | 0 | ||||
-rw-r--r-- | e_src/templates/articles/list_entry.html | 1 | ||||
-rw-r--r-- | e_src/templates/articles/list_footer.html | 1 | ||||
-rw-r--r-- | e_src/templates/articles/list_header.html | 2 | ||||
-rw-r--r-- | e_src/templates/articles/list_separator.html | 0 | ||||
-rw-r--r-- | e_src/templates/common/footer.html | 2 | ||||
-rw-r--r-- | e_src/templates/common/header.html | 8 | ||||
-rw-r--r-- | e_src/templates/tag/footer.html | 0 | ||||
-rw-r--r-- | e_src/templates/tag/header.html | 0 | ||||
-rw-r--r-- | e_src/templates/tag/list_entry.html | 1 | ||||
-rw-r--r-- | e_src/templates/tag/list_footer.html | 1 | ||||
-rw-r--r-- | e_src/templates/tag/list_header.html | 1 | ||||
-rw-r--r-- | e_src/templates/tag/list_separator.html | 1 | ||||
-rw-r--r-- | e_src/test1.html | 0 | ||||
-rw-r--r-- | e_src/test1.md | 12 |
20 files changed, 44 insertions, 0 deletions
diff --git a/e_src/a/test2.html b/e_src/a/test2.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/a/test2.html diff --git a/e_src/a/test2.md b/e_src/a/test2.md new file mode 100644 index 0000000..0eb26ec --- /dev/null +++ b/e_src/a/test2.md @@ -0,0 +1,13 @@ +title: Test 2 +author: David Luévano +summary: Small summary +lang: en +tags: test + small + archive + +This is an article test, again + +- asdfg +- hjikl + - ?? diff --git a/e_src/templates/article/footer.html b/e_src/templates/article/footer.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/article/footer.html diff --git a/e_src/templates/article/header.html b/e_src/templates/article/header.html new file mode 100644 index 0000000..d2954d9 --- /dev/null +++ b/e_src/templates/article/header.html @@ -0,0 +1 @@ +<h1>$$TITLE</h1>
\ No newline at end of file diff --git a/e_src/templates/articles/footer.html b/e_src/templates/articles/footer.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/articles/footer.html diff --git a/e_src/templates/articles/header.html b/e_src/templates/articles/header.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/articles/header.html diff --git a/e_src/templates/articles/list_entry.html b/e_src/templates/articles/list_entry.html new file mode 100644 index 0000000..91d2d75 --- /dev/null +++ b/e_src/templates/articles/list_entry.html @@ -0,0 +1 @@ +<li><a href="$$URL">$$DATE - $$TITLE</a></li> diff --git a/e_src/templates/articles/list_footer.html b/e_src/templates/articles/list_footer.html new file mode 100644 index 0000000..3d3a44c --- /dev/null +++ b/e_src/templates/articles/list_footer.html @@ -0,0 +1 @@ +</ul> diff --git a/e_src/templates/articles/list_header.html b/e_src/templates/articles/list_header.html new file mode 100644 index 0000000..7b504ea --- /dev/null +++ b/e_src/templates/articles/list_header.html @@ -0,0 +1,2 @@ +<h2>Articles</h2> +<ul> diff --git a/e_src/templates/articles/list_separator.html b/e_src/templates/articles/list_separator.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/articles/list_separator.html diff --git a/e_src/templates/common/footer.html b/e_src/templates/common/footer.html new file mode 100644 index 0000000..308b1d0 --- /dev/null +++ b/e_src/templates/common/footer.html @@ -0,0 +1,2 @@ +</body> +</html> diff --git a/e_src/templates/common/header.html b/e_src/templates/common/header.html new file mode 100644 index 0000000..9c423df --- /dev/null +++ b/e_src/templates/common/header.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<html lang="$$LANG"> +<head> +<meta charset="utf-8"> +<title>$$TITLE</title> +$$EXTRAHEAD +</head> +<body> diff --git a/e_src/templates/tag/footer.html b/e_src/templates/tag/footer.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/tag/footer.html diff --git a/e_src/templates/tag/header.html b/e_src/templates/tag/header.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/templates/tag/header.html diff --git a/e_src/templates/tag/list_entry.html b/e_src/templates/tag/list_entry.html new file mode 100644 index 0000000..3a7aaad --- /dev/null +++ b/e_src/templates/tag/list_entry.html @@ -0,0 +1 @@ +<a href="$$URL">$$NAME</a>
\ No newline at end of file diff --git a/e_src/templates/tag/list_footer.html b/e_src/templates/tag/list_footer.html new file mode 100644 index 0000000..8ce77e5 --- /dev/null +++ b/e_src/templates/tag/list_footer.html @@ -0,0 +1 @@ +</p> diff --git a/e_src/templates/tag/list_header.html b/e_src/templates/tag/list_header.html new file mode 100644 index 0000000..5bb080d --- /dev/null +++ b/e_src/templates/tag/list_header.html @@ -0,0 +1 @@ +<p>Tags:
\ No newline at end of file diff --git a/e_src/templates/tag/list_separator.html b/e_src/templates/tag/list_separator.html new file mode 100644 index 0000000..c3a6e48 --- /dev/null +++ b/e_src/templates/tag/list_separator.html @@ -0,0 +1 @@ +,
\ No newline at end of file diff --git a/e_src/test1.html b/e_src/test1.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/e_src/test1.html diff --git a/e_src/test1.md b/e_src/test1.md new file mode 100644 index 0000000..85e97b3 --- /dev/null +++ b/e_src/test1.md @@ -0,0 +1,12 @@ +title: Test 1 +author: David Luévano +summary: Small summary +lang: en +tags: test + small + archive + +This is an article test + +- asdfg +- hjikl |