no-style-please 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/_config.yml +1 -1
- data/_includes/head.html +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba4753979c9e7795dc66c63ead31e5c3ec034ed2cc7c4e68da45e162d4315472
|
4
|
+
data.tar.gz: 786425e2bf0bf495450ba3bf65f67c63bc41da2cc772be6b833c6036ba7a597d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a092197b6c1fc266754f2c0465f526b05e721d856c457d7695deb3ab81a7aa4ad2e00a643e21b6f6df0e3c9f147a4e63386289ff804b7f54a84e4f93f4465791
|
7
|
+
data.tar.gz: 47bc3be275030dff70d1a182341db34d9364508f996dfd098802bceddf50a80295bfcdc0cff6dd8dd7705ac38d3fa94410ae078df7cf1fedbb241f49e0893144
|
data/README.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
A (nearly) no-css minimalist [Jekyll](https://jekyllrb.com/) theme, inspired by [elly's site](http://tilde.town/~elly/).
|
4
4
|
|
5
|
+
<img src="./screenshots/composition.png" />
|
6
|
+
|
5
7
|
## Installation
|
6
8
|
|
7
9
|
If you haven't already created your blog using Jekyll, follow the [instructions](https://jekyllrb.com/docs/) to do so from Jekyll's documentation.
|
data/_config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
title: no style, please! # name of the site
|
2
2
|
author: Riccardo Graziosi # name of site's author
|
3
3
|
email: riccardo.graziosi97@gmail.com # email of site's author
|
4
|
-
url:
|
4
|
+
url: https://riggraz.dev/no-style-please # root address of the site
|
5
5
|
description: > # description of the site (multiple lines allowed)
|
6
6
|
A (nearly) no-css minimalist Jekyll theme.
|
7
7
|
|
data/_includes/head.html
CHANGED
@@ -3,8 +3,10 @@
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
5
5
|
|
6
|
+
<title>{{ site.title }}</title>
|
7
|
+
|
6
8
|
{% feed_meta %}
|
7
|
-
{% seo %}
|
9
|
+
{% seo title=false %}
|
8
10
|
|
9
11
|
{% if site.goat_counter and jekyll.environment == "production" %}
|
10
12
|
{% include goat_counter.html %}
|