diff --git a/_config.yml b/_config.yml index 334fd7a..966103c 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,2 @@ theme: jekyll-theme-hacker -name: _ -title: _ author: Vishnu Sivan \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..1c8c883 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,38 @@ + + + + + + + + {% include head-custom.html %} + +{% seo %} + + + + +
+
+ +

{{ site.title | default: site.github.repository_name }}

+
+

{{ site.description | default: site.github.project_tagline }}

+ +
+ {% if site.show_downloads %} + Download as .zip + Download as .tar.gz + {% endif %} + View on GitHub +
+
+
+ +
+
+ {{ content }} +
+
+ + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..0676aff --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,14 @@ +--- +layout: default +--- + +{{ page.date | date: "%-d %B %Y" }} +

{{ page.title }}

+ +

by {{ page.author | default: site.author }}

+ +{{content}} + +{% if page.tags %} + tags: {{ page.tags | join: " - " }} +{% endif %} diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..d3e92bb --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,10 @@ +--- +--- + +@import 'jekyll-theme-hacker'; + +@import "{{ site.theme }}"; + +header { + display: none; +} \ No newline at end of file diff --git a/assets/images/bkg.png b/assets/images/bkg.png new file mode 100644 index 0000000..d10e5ca Binary files /dev/null and b/assets/images/bkg.png differ diff --git a/assets/images/blacktocat.png b/assets/images/blacktocat.png new file mode 100644 index 0000000..9759d77 Binary files /dev/null and b/assets/images/blacktocat.png differ diff --git a/assets/images/bullet.png b/assets/images/bullet.png new file mode 100644 index 0000000..c8f8de1 Binary files /dev/null and b/assets/images/bullet.png differ