ultra-minimal-theme 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5547336cac6cfa7a1482a852ab31950703dfed6a9be30c76012abd4c92030d40
4
- data.tar.gz: 1113baa52731256e2d8d48d9b57e6f7e231932098de9cd6a551d44d78c2447d1
3
+ metadata.gz: 5f749026abd07ee9e3089af52128d59e26813fc5edf853a614a9eb8c50efd3ac
4
+ data.tar.gz: a1c9ac27ad0ffb8b24f9a1fa04b50c39361a3f7ff75d810fd890dfd3f167c9c8
5
5
  SHA512:
6
- metadata.gz: '08ed3d0bd951a68ae1167537142c3c0b98a038e318527151be737091fb3aee0ef9231b59a8b07764b8337d5546ad64035acf2f8115b8747a4ec40e969ec1b8e1'
7
- data.tar.gz: fd976f2b0e010c51acb07653c7c62d156e59aa167fdcfefa62aaddb5d1ceee0a6317829f2ffc86ab06c9d5f5ab030aa130213b7e82b13953f0437a5a3131ee0d
6
+ metadata.gz: 9c71378336d2866d197e6f3ce5bee40c391d719efc92158b324f175ec700cbaf04efb8afda9d5651a711bab99aeeadd989ef2063c6d18a1b7d9e6bb8a312b595
7
+ data.tar.gz: 263a44da67e45fdce264b28f5949d841969ffcbe57ef1c1130ab61d1449fb9e5a79a806292c02b8856f201c8f0f8fa2228b8c7bd4e10f7a87c1e9d3b5110a62a
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Jekyll is a great tool, but it's themes are clunky, ugly and too heavy.
4
4
 
5
- This is a WIP theme that strips of everything but the bare bones to create text-based blog posts. Right now, I am adding the CSS in via a link in the `head.html` file. Some more CSS tweaking is needed to make it work for as little or as many styles as you want to incorporate.
5
+ Ultra Minimal Theme strips of everything but the bare bones to create text-based blog posts. Right now, I am adding the CSS in via a link in the `head.html` file. Some more CSS tweaking is needed to make it work for as little or as many styles as you want to incorporate.
6
6
 
7
7
  ## Customizing CSS
8
8
  There are two ways to customize CSS. Either insert your own CSS via the `custom_styles.scss` file in the `_sass` folder, or add your own style sheet via `_includes/head.html`. Currently this site is styled using [Slightly Better CSS](https://github.com/printerscanner/slightly-better-css), a lightweight CSS template.
@@ -29,6 +29,8 @@ Or install it yourself as:
29
29
 
30
30
  $ gem install ultra-minimal-theme
31
31
 
32
+ Find version information on this theme on [RubyGems](https://rubygems.org/gems/ultra-minimal-theme/versions/0.1.0).
33
+
32
34
  ## Usage
33
35
 
34
36
  In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
@@ -1,17 +1,17 @@
1
1
  <footer>
2
2
  <data href="{{ "/" | relative_url }}"></data>
3
3
  <hr>
4
+
4
5
  {%- if site.author %}
5
- <ul>
6
6
  {% if site.author.name -%}
7
- <li>{{ site.author.name | escape }}</li>
7
+ Written by {{ site.author.name | escape }}
8
8
  {% endif -%}
9
9
  {% if site.author.email -%}
10
- <li><a href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
10
+ at <a href="mailto:{{ site.author.email }}">{{ site.author.email }}.</a>
11
11
  {%- endif %}
12
- </ul>
12
+ This blog was built using the <a href="https://github.com/printerscanner/ultra-minimal-theme">ultra minimal theme</a> and <a href="printerscanner.github.io/slightly-better-css/">Slightly Better CSS</a>.</p>
13
13
  {%- endif %}
14
- <p>{{ site.description | escape }}</p>
14
+ <!-- <p>{{ site.description | escape }}</p> -->
15
15
  <br></br>
16
16
 
17
17
  </footer>
@@ -12,9 +12,7 @@
12
12
  {{ content }}
13
13
  </div>
14
14
  </main>
15
-
16
15
  {%- include footer.html -%}
17
-
18
16
  </body>
19
17
 
20
18
  </html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultra-minimal-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - abbeyyacoe