meliora 0.2.2 → 0.2.3

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: 67358adda3294373833a8458e058719df7632e06
4
- data.tar.gz: 130061dac27347ac778d2c5b602c74fce192eecb
3
+ metadata.gz: 603a39e7692621644bbbc197750f8642ab12f041
4
+ data.tar.gz: 5ca24febaf41ffd795c86698862bae2cfe043b23
5
5
  SHA512:
6
- metadata.gz: a1e59cdbaae415d0eb0e681b9af6b1bad5bee5fac46b03a300e32d1d53300115617fd45be078dfd957273976d92b95620aeb807d3def97d3e9dc1a87e55dc8b4
7
- data.tar.gz: 2eaa0c2a37c39c899e342b7189f40767ce3bfd83f87a332a4df1610252947a5fedf258e05ff4fbcaa8c6ff140b9545a1593ce8e92ddf41e60e45d3f7b0fde53f
6
+ metadata.gz: cf76d37b62284d0346b54d8da9550c64f55db3b4f00fd2176b2f7245e4e8f98c84bf4f79219ef15b9ca7bc21599de213fbf8bfb2f6464ce86ac65c4fb00b24d5
7
+ data.tar.gz: a2ba26132f7e0ac9c7f38604aca478131593a74590b5e5581224c1d93fcc07eb11ede2ba29ee40546b7ac4b79bf41e14074762d1043b2b5c63018423d75809fb
@@ -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">
@@ -21,4 +21,4 @@ layout: default
21
21
  </footer>
22
22
  </article>
23
23
  </main>
24
- {% include footer.html %}
24
+ {% include footer.html %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meliora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Graybosch
@@ -198,13 +198,10 @@ files:
198
198
  - _includes/top-link.html
199
199
  - _includes/youtube.html
200
200
  - _layouts/archive.html
201
- - _layouts/blog.html
202
201
  - _layouts/default.html
203
202
  - _layouts/home.html
204
203
  - _layouts/page.html
205
204
  - _layouts/post.html
206
- - _layouts/starbreaker.html
207
- - _layouts/status.html
208
205
  - _sass/meliora.scss
209
206
  - _sass/meliora/_base.scss
210
207
  - _sass/meliora/_components.scss
@@ -1,11 +0,0 @@
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 %}
@@ -1,12 +0,0 @@
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 %}
@@ -1,84 +0,0 @@
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 %}