From 379aef029f78ee7ec86ca96eb0d86af9ddfa89b5 Mon Sep 17 00:00:00 2001 From: Arnav Bhatt Date: Thu, 25 Aug 2022 23:02:24 +0530 Subject: initial commit --- config | 5 +++++ templates/article_entry.html | 1 + templates/article_footer.html | 1 + templates/article_header.html | 5 +++++ templates/article_list_footer.html | 1 + templates/article_list_header.html | 1 + templates/article_separator.html | 0 templates/footer.html | 1 + templates/header.html | 15 +++++++++++++++ templates/index_footer.html | 0 templates/index_header.html | 10 ++++++++++ templates/tag_entry.html | 1 + templates/tag_index_footer.html | 0 templates/tag_index_header.html | 1 + templates/tag_list_footer.html | 1 + templates/tag_list_header.html | 1 + templates/tag_separator.html | 1 + 17 files changed, 45 insertions(+) create mode 100644 config create mode 100644 templates/article_entry.html create mode 100644 templates/article_footer.html create mode 100644 templates/article_header.html create mode 100644 templates/article_list_footer.html create mode 100644 templates/article_list_header.html create mode 100644 templates/article_separator.html create mode 100644 templates/footer.html create mode 100644 templates/header.html create mode 100644 templates/index_footer.html create mode 100644 templates/index_header.html create mode 100644 templates/tag_entry.html create mode 100644 templates/tag_index_footer.html create mode 100644 templates/tag_index_header.html create mode 100644 templates/tag_list_footer.html create mode 100644 templates/tag_list_header.html create mode 100644 templates/tag_separator.html diff --git a/config b/config new file mode 100644 index 0000000..365e69c --- /dev/null +++ b/config @@ -0,0 +1,5 @@ +BLOG_REMOTE:=web@ghativega.in:/var/www/ghativega +BLOG_TITLE:=ghativega.in +BLOG_DESCRIPTION:=Personal site of arnavbhatt288. +BLOG_URL_ROOT:=https://ghativega.in +BLOG_AUTHOR:=Arnav Bhatt diff --git a/templates/article_entry.html b/templates/article_entry.html new file mode 100644 index 0000000..a901a2c --- /dev/null +++ b/templates/article_entry.html @@ -0,0 +1 @@ +
  • $TITLE

    Date of publish: $DATE

  • diff --git a/templates/article_footer.html b/templates/article_footer.html new file mode 100644 index 0000000..0f4bf45 --- /dev/null +++ b/templates/article_footer.html @@ -0,0 +1 @@ + diff --git a/templates/article_header.html b/templates/article_header.html new file mode 100644 index 0000000..6ec338e --- /dev/null +++ b/templates/article_header.html @@ -0,0 +1,5 @@ +

    <-- Back to main page

    +
    +

    $TITLE

    +

    Posted on $DATE_POSTED

    +
    diff --git a/templates/article_list_footer.html b/templates/article_list_footer.html new file mode 100644 index 0000000..776b4ca --- /dev/null +++ b/templates/article_list_footer.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/templates/article_list_header.html b/templates/article_list_header.html new file mode 100644 index 0000000..456ab9c --- /dev/null +++ b/templates/article_list_header.html @@ -0,0 +1 @@ +
      diff --git a/templates/article_separator.html b/templates/article_separator.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/footer.html b/templates/footer.html new file mode 100644 index 0000000..da9fd8c --- /dev/null +++ b/templates/footer.html @@ -0,0 +1 @@ +
    diff --git a/templates/header.html b/templates/header.html new file mode 100644 index 0000000..bae7487 --- /dev/null +++ b/templates/header.html @@ -0,0 +1,15 @@ + + + + + + + +Ghativega - Homepage + + + + + diff --git a/templates/index_footer.html b/templates/index_footer.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/index_header.html b/templates/index_header.html new file mode 100644 index 0000000..c0f2c72 --- /dev/null +++ b/templates/index_header.html @@ -0,0 +1,10 @@ + + + +
    +
    diff --git a/templates/tag_entry.html b/templates/tag_entry.html new file mode 100644 index 0000000..cb23fee --- /dev/null +++ b/templates/tag_entry.html @@ -0,0 +1 @@ +$NAME \ No newline at end of file diff --git a/templates/tag_index_footer.html b/templates/tag_index_footer.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/tag_index_header.html b/templates/tag_index_header.html new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/templates/tag_index_header.html @@ -0,0 +1 @@ + diff --git a/templates/tag_list_footer.html b/templates/tag_list_footer.html new file mode 100644 index 0000000..b9fa558 --- /dev/null +++ b/templates/tag_list_footer.html @@ -0,0 +1 @@ +

    \ No newline at end of file diff --git a/templates/tag_list_header.html b/templates/tag_list_header.html new file mode 100644 index 0000000..7a57395 --- /dev/null +++ b/templates/tag_list_header.html @@ -0,0 +1 @@ +

    Tags: \ No newline at end of file diff --git a/templates/tag_separator.html b/templates/tag_separator.html new file mode 100644 index 0000000..c3a6e48 --- /dev/null +++ b/templates/tag_separator.html @@ -0,0 +1 @@ +, \ No newline at end of file -- cgit v1.2.3