diff --git a/README.md b/README.md new file mode 100644 index 0000000..3eb8506 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# Etch + +Etch is a simple, responsive theme for [Hugo](https://gohugo.io) with a focus on writing. + +![screenshot](https://raw.githubusercontent.com/LukasJoswiak/etch/master/images/screenshot_small.png) + +## Features: + +* Homepage with list of posts. +* Support for pages. +* Responsive design for optimized mobile experience. +* Syntax highlighting with customizable theme. +* Dark theme which automatically adjusts based on users' setting. + +## Installation + +To install `etch`, clone the repository into the `themes` folder in the root of your site. + +``` +$ git clone git@github.com:LukasJoswiak/etch.git themes/etch +``` + +Then, use the theme to generate your site. + +``` +$ hugo server -t etch +``` + +Read the [wiki](https://github.com/LukasJoswiak/etch/wiki) to learn about more options. diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md index 2b9ef09..2a74490 100644 --- a/exampleSite/content/_index.md +++ b/exampleSite/content/_index.md @@ -1,4 +1,4 @@ --- -title: "Content" +title: "Home" --- This is some info about me. diff --git a/images/screenshot.png b/images/screenshot.png new file mode 100644 index 0000000..fed9553 Binary files /dev/null and b/images/screenshot.png differ diff --git a/images/screenshot_dark.png b/images/screenshot_dark.png new file mode 100644 index 0000000..11505f9 Binary files /dev/null and b/images/screenshot_dark.png differ diff --git a/images/screenshot_small.png b/images/screenshot_small.png new file mode 100644 index 0000000..5b1dfae Binary files /dev/null and b/images/screenshot_small.png differ diff --git a/images/tn.png b/images/tn.png new file mode 100644 index 0000000..0556f24 Binary files /dev/null and b/images/tn.png differ diff --git a/images/tn_dark.png b/images/tn_dark.png new file mode 100644 index 0000000..b40629b Binary files /dev/null and b/images/tn_dark.png differ diff --git a/layouts/partials/head.html b/layouts/partials/head.html index d0960da..93203fd 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -20,5 +20,5 @@ {{ end }} - + diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 8017232..48298b3 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,8 +1,8 @@