athene 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2bd1f7a266fcaa84251ebfdb22d9c2bcf5cd889b
4
- data.tar.gz: 5211cba6460c04fc178738fb3081e69cea651608
3
+ metadata.gz: c002905e806ca3c3e692140d26b6128fd4c6995e
4
+ data.tar.gz: 203b5552acf40e43b784b795a92159a5512774ab
5
5
  SHA512:
6
- metadata.gz: 3c0b6dc759fbf38c468cc77f719fd71a00ee12d032f1c1700ed08d23ddde5ed3ba3a9a47011789c50777e3625c3a50ed65306f30c59674f912d238d9b9203158
7
- data.tar.gz: 59cf8baad6b0164944045a4ffe8e4d42232f60291bb970821946bff7cd5ad158d7e72f519650e1e765222dc1099f6b488feb0406bca0d6d5e42178f9f9e67187
6
+ metadata.gz: 31e4ec88a3e713a0d441c9e4904245db56818ee3fafc2a05c9c6dc0034a346ff2176596403402462ca748c6e262ccde0bd810fe30f30eeb0e668a3ccae0893b0
7
+ data.tar.gz: 44e6b30247683b3aedfa72f326790aa7a3a012913441dafdbca7e1cce608b62e7883f1b54b0968bbf9fd5cff7b2a1b7e3a4bb5b3121da486d799458f8ee91262
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # athene
2
2
 
3
- Welcome to your new Jekyll theme! 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` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
3
+ This is a simple jekyll theme. It includes nothing special and its very minimal.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ ![screenshot](screenshot.png)
6
6
 
7
7
  ## Installation
8
8
 
@@ -26,13 +26,15 @@ Or install it yourself as:
26
26
 
27
27
  $ gem install athene
28
28
 
29
- ## Usage
29
+ ## Todo
30
30
 
31
- TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
31
+ - [ ] Add config variables
32
+ - [ ] Add examples
33
+ - [ ] Add usage
32
34
 
33
35
  ## Contributing
34
36
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/athene. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
38
 
37
39
  ## Development
38
40
 
@@ -1,7 +1,12 @@
1
1
  <footer>
2
2
  Copyright © zeotyn.de
3
3
  <aside>
4
- <a href="https://twitter.com/zeotyn" target="_blank"><i class="icon ion-social-twitter"></i></a>
5
- <a href="https://github.com/Zeotyn" target="_blank"><i class="icon ion-social-github"></i></a>
4
+ {% if site.github_username %}
5
+ {% include github.html username=site.github_username %}
6
+ {% endif %}
7
+
8
+ {% if site.twitter_username %}
9
+ {% include twitter.html username=site.twitter_username %}
10
+ {% endif %}
6
11
  </aside>
7
12
  </footer>
@@ -0,0 +1 @@
1
+ <a href="https://github.com/{{ include.username }}" target="_blank"><i class="icon ion-social-github"></i></a>
@@ -1,4 +1,10 @@
1
1
  <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+
6
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
2
8
  <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
3
9
  <link rel="stylesheet" href="{{ "/assets/css/ionicons.min.css" | relative_url }}">
4
10
  </head>
@@ -1,3 +1,3 @@
1
1
  <header id="header">
2
- <a href="/"><h1>Zeotyn</h1></a>
2
+ <a class="site-title" href="{{ "/" | relative_url}}"><h1>{{ site.title | escape }}</h1></a>
3
3
  </header>
@@ -0,0 +1 @@
1
+ <a href="https://twitter.com/{{ include.username }}" target="_blank"><i class="icon ion-social-twitter"></i></a>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: athene
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeotyn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-17 00:00:00.000000000 Z
11
+ date: 2016-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -62,8 +62,10 @@ files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
64
  - _includes/footer.html
65
+ - _includes/github.html
65
66
  - _includes/head.html
66
67
  - _includes/header.html
68
+ - _includes/twitter.html
67
69
  - _layouts/default.html
68
70
  - _layouts/home.html
69
71
  - _layouts/page.html