meliora 0.2.0 → 0.2.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
  SHA1:
3
- metadata.gz: da8f9d04642b8e3ae4cbb81bfa2c9565933039c1
4
- data.tar.gz: 019d9c326d4300b8b7d8457d46ed7bfd5471bd4f
3
+ metadata.gz: ce14e032973e9757217cd09898d4998ab21cef3c
4
+ data.tar.gz: 518c833268eea33afa025bb16de8469edebb94f6
5
5
  SHA512:
6
- metadata.gz: 0dd7bdd07dbcd64f4b99668b2655c4dedd8570114bbfd769b383cd7378dd08625e4871beaa356dd071850f8145fe9eae9d0fd28267245e6cc4f5d8fde501883b
7
- data.tar.gz: 8f6403a8bb61391aab5639bb47d05d1d85eb5ac5883e8066d4c6ab367878cd6f7e3827a2d9040820c702c5f6846ced43df850c5ff1b6a8f829ce9ca1a0c2740f
6
+ metadata.gz: c4024654fe9a92394729f051d9ed2a8088b93e05774fc4791181bfb817d3cfa900d5aa65781adb9193ddb1850cd03766c174269026c0d9dc56501df2f7163ca6
7
+ data.tar.gz: 8e1fbb677081aaafc629d42c5eff004fcc0fa72b7e8cc185ee9b65e9baef8d752a0af104d326b88c544647522c6eae0b6846c873b1c0ef413e45f57f87efff4c
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <header id="page_header">
5
+ {% include skip-nav.html %}
6
+ {% include nav-menu.html id="page_nav" aria_label="Page Menu" class="flat_nav_menu" menu="blog" %}
7
+ </header>
8
+ <main id="main_content">
9
+ {{ content }}
10
+ </main>
11
+ {% include footer.html %}
@@ -3,7 +3,7 @@ layout: default
3
3
  ---
4
4
  <header id="page_header">
5
5
  {% include skip-nav.html %}
6
- {% include nav-menu.html id="page_nav" aria_label="Page Menu" class="flat_nav_menu" menu="blog" %}
6
+ {% include nav-menu.html id="page_nav" aria_label="Page Menu" class="flat_nav_menu" menu="post" %}
7
7
  </header>
8
8
  {% include noscript.html %}
9
9
  <main id="main_content">
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <header id="page_header">
5
+ {% include skip-nav.html %}
6
+ {% include nav-menu.html id="page_nav" aria_label="Page Menu" class="flat_nav_menu" menu="starbreaker" %}
7
+ </header>
8
+ {% include noscript.html %}
9
+ <main id="main_content">
10
+ {{ content }}
11
+ </main>
12
+ {% include footer.html %}
@@ -0,0 +1,84 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <header id="page_header">
5
+ {% include skip-nav.html %}
6
+ {% include nav-menu.html id="page_nav" aria_label="Page Menu" class="flat_nav_menu" menu="status" %}
7
+ </header>
8
+ {% include noscript.html %}
9
+ <main id="main_content">
10
+ <article>
11
+ <header id="article_header">
12
+ <hgroup>
13
+ <h1>{{ page.title }}</h1>
14
+ <p class="reading_time material400 bold">posted at {{ page.date | date: '%l:%M %p on %m/%d/%Y' }}</p>
15
+ </hgroup>
16
+ </header>
17
+ <section id="article_content">
18
+ {{ content }}
19
+ </section>
20
+ <footer id="article_footer">
21
+ {% include thanks-for-reading.html %}
22
+ {% for c in site.status %}
23
+ {% if c.title == page.title %}
24
+ {% assign thisPost = c %}
25
+ {% if forloop.index == 1 %}
26
+ {% assign prevflag = 0 %}
27
+ {% assign nextflag = 1 %}
28
+ {% elsif forloop.index == forloop.length %}
29
+ {% assign prevflag = 1 %}
30
+ {% assign nextflag = 0 %}
31
+ {% else %}
32
+ {% assign prevflag = 1 %}
33
+ {% assign nextflag = 1 %}
34
+ {% endif %}
35
+ {% endif %}
36
+ {% endfor %}
37
+
38
+ {% for c in site.status %}
39
+ {% if c.title == page.title %}
40
+ {% assign prevflag = 0 %}
41
+ {% endif %}
42
+ {% if prevflag == 1 %}
43
+ {% assign prevPost = c %}
44
+ {% assign page.previous = c %}
45
+ {% endif %}
46
+ {% endfor %}
47
+
48
+ {% if nextflag == 1 %}
49
+ {% for c in site.status %}
50
+ {% if foundPost == 1 %}
51
+ {% assign getNext = 1 %}
52
+ {% endif %}
53
+ {% if c.title == page.title %}
54
+ {% assign foundPost = 1 %}
55
+ {% endif %}
56
+ {% if getNext == 1%}
57
+ {% assign nextPost = c %}
58
+ {% assign page.next = c %}
59
+ {% assign foundPost = 0 %}
60
+ {% assign getNext = 0 %}
61
+ {% endif %}
62
+ {% endfor %}
63
+ {% endif %}
64
+
65
+ <nav id="post-nav" aria-label="Status Navigation">
66
+ <div class="container">
67
+ {% if prevPost.url %}
68
+ <a class="prev" href="{{prevPost.url}}">
69
+ <span>&lt; {{prevPost.title}}</span>
70
+ </a>
71
+ {% endif %}
72
+ {% if nextPost.url %}
73
+ <span class="float_right">
74
+ <a class="next" href="{{nextPost.url}}">
75
+ <span>{{nextPost.title}} &gt;</span>
76
+ </a>
77
+ </span>
78
+ {% endif %}
79
+ </div>
80
+ </nav>
81
+ </footer>
82
+ </article>
83
+ </main>
84
+ {% include footer.html %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meliora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Graybosch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-03 00:00:00.000000000 Z
11
+ date: 2017-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -198,10 +198,13 @@ files:
198
198
  - _includes/top-link.html
199
199
  - _includes/youtube.html
200
200
  - _layouts/archive.html
201
+ - _layouts/blog.html
201
202
  - _layouts/default.html
202
203
  - _layouts/home.html
203
204
  - _layouts/page.html
204
205
  - _layouts/post.html
206
+ - _layouts/starbreaker.html
207
+ - _layouts/status.html
205
208
  - _sass/meliora.scss
206
209
  - _sass/meliora/_base.scss
207
210
  - _sass/meliora/_components.scss