jekyll-uikit 0.2.4 → 0.3.0

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: 2ffe44525a6d42ddb8101b9ed55671c102793427
4
- data.tar.gz: 5f80a91be8cfbce402509da61409a44ac89e2c9c
3
+ metadata.gz: 6e8317d348d1fe706e5e00d04fc7372c1a3f855a
4
+ data.tar.gz: 20a76bd24da56fb50b3ab21a41295560d1083693
5
5
  SHA512:
6
- metadata.gz: d67da91040ba56c001a9017bca09bf0c83943379fd3dd5202477ada62b5dc4f014671c769e209bf9c2034bee318a98c7bb55a9b0f2ab5dbc36dbfaedd0059fb4
7
- data.tar.gz: 429f06b6e1424d305a52622f5fcea96fb323d4ad861b33ced03e337ca7b46b80747095217202ca423c9872c756fbb46e8184e62a0e31fe308df5d6d61afcbd50
6
+ metadata.gz: f4cf9e6dd7780790031439a265c398a354abb3d51ef94c7ea50bd9ac63c0444d25709f7dea82eb8440ff185bf65b815e75d45737c033011c1c2cf4df3d79b648
7
+ data.tar.gz: ad1d55a405c9d99757ac84878e0a79c4b59481f6507c368f6a40a3262ca9704cbca997aa20fbb5353773ebe5786be0a081b553879886bd1ccf1bd5fc9176e330
data/README.md CHANGED
@@ -23,7 +23,6 @@
23
23
 
24
24
  ![Jekyll-UiKit Archives](/docs/Archives-Screenshot.png)
25
25
 
26
-
27
26
  Built with [UiKit](https://getuikit.com/) by [YooTheme](https://yootheme.com/), with an elegant homepage, a blog and archive pages, and lighting fast search with Algolia.
28
27
 
29
28
  # Features
@@ -34,19 +33,21 @@ Built with [UiKit](https://getuikit.com/) by [YooTheme](https://yootheme.com/),
34
33
 
35
34
  * Responsive layout.
36
35
 
37
- * Simple landing/ home page.
36
+ * Contact forms powered by [Formspree.io](https://formspree.io)!
38
37
 
39
38
  * Paginated blog page with follow links on last page.
40
39
 
41
- * Tag archive page that automatically populates with tags from posts. ie: [tag1, tag2, tag3, etc]
40
+ * Tag archive page that automatically populates with tags from posts. ie: [tag1, tag2, tag3, etc].
42
41
 
43
- * Optimized for search engines with support for Twitter Cards and Open Graph data
42
+ * Optimized for search engines with support for Twitter Cards and Open Graph data.
44
43
 
45
44
  * Comments powered by Disqus, with Staticman integration planned.
46
45
 
47
- * Google Analytics support
46
+ * Google Analytics support.
47
+
48
+ * Large header image support.
48
49
 
49
- * Large header image support with `bigimg`.
50
+ * Reading time for posts and blog index. [Credits](https://carlosbecker.com/posts/jekyll-reading-time-without-plugins/)
50
51
 
51
52
  ## Installation
52
53
 
@@ -12,7 +12,7 @@
12
12
  {% assign thanks_url = "/thanks/" %}
13
13
  {% endif %}
14
14
 
15
- <form class="form form--{{ name_id }}" method="post" name="{{ name }}" action="{{ thanks_url }}"
15
+ <form class="form form--{{ name_id }}" method="post" name="{{ name }}" action="{{ thanks_url }}"
16
16
  {% if include.netlify_form %}
17
17
  netlify-honeypot="bot-field"
18
18
  netlify
@@ -34,14 +34,14 @@
34
34
  <label class="label" for="message--{{ name_id }}">Message:<textarea class="uk-textarea" id="message--{{ name_id }}" name="message" placeholder="Your message..." required="required"></textarea></label>
35
35
  </div>
36
36
 
37
- <input class="uk-button uk-button-primary" type="submit" value="Send message" />
37
+ <input class="button uk-button uk-button-primary" type="submit" value="Send message"/>
38
38
 
39
39
  {% if include.netlify_form %}
40
40
  <label style="display:none">Don’t fill this out if you’re human: <input name="bot-field" /></label>
41
41
  {% else %}
42
42
  <input type="text" name="_gotcha" style="display:none">
43
43
  <input type="hidden" name="_subject" value="{{ site.title }} submission from {{ name }}">
44
- <input type="hidden" name="_next" value="{{ thanks_url }}" />
44
+ <input type="hidden" name="_next" value="{{ thanks_url }}"/>
45
45
  {% endif %}
46
46
  </fieldset>
47
47
  </form>
@@ -65,7 +65,9 @@
65
65
  <!-- UiKit CSS -->
66
66
  <link rel="stylesheet" href="{{ "/assets/css/uikit.min.css" | relative_url }}">
67
67
  <!-- syntax highlighting CSS -->
68
- <link rel="stylesheet" href="{{ "/assets/css/syntax.css" | relative_url }}" type="text/css">
68
+ <link rel="stylesheet" href="{{ "/assets/css/syntax.css" | relative_url }}" type="text/css">
69
+ <!-- Overrides CSS -->
70
+ <link rel="stylesheet" href="{{ "/assets/css/theme-overrides.scss" | relative_url }}" type="text/css">
69
71
  <!-- UiKit Javascript -->
70
72
  <script type="text/javascript" src="{{ "/assets/js/uikit.min.js " | relative_url }}"></script>
71
73
  <script type="text/javascript" src="{{ "/assets/js/uikit-icons.min.js " | relative_url }}"></script>
@@ -77,16 +79,9 @@
77
79
  enable_page_level_ads: true
78
80
  });
79
81
  </script>
80
- <style>
81
- .intro-text {
82
- text-shadow: 1px 1px 2px black;
83
- }
84
- blockquote {
85
- border-left: 5px solid #ccc;
86
- background: #f9f9f9;
87
- border-radius: 0px 4px 4px 0px;
88
- padding: 5px 10px;
89
- }
90
-
91
- </style>
82
+ <style>
83
+ .button, input[type=submit] {
84
+ -webkit-appearance: none;
85
+ }
86
+ </style>
92
87
  </head>
@@ -24,7 +24,8 @@ layout: default
24
24
  <span uk-icon="calendar"></span> <span class="date">{{page.date | date: "%b %d, %Y "}}</span>
25
25
  <span uk-icon="tag"></span>
26
26
  {% for tag in page.tags %}
27
- <a href="{{ site.baseurl }}/archive/index.html#{{ tag | cgi_escape }}" title="Pages tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}
27
+ <a href="{{ site.baseurl }}/archive/index.html#{{ tag | cgi_escape }}" title="Pages tagged {{ tag }}" rel="tag">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}
28
+ {% include reading-time.html %}
28
29
  </p>
29
30
  </div>
30
31
  </div>
@@ -0,0 +1,12 @@
1
+ .intro-text {
2
+ text-shadow: 1px 1px 2px black;
3
+ }
4
+ blockquote {
5
+ border-left: 5px solid #ccc;
6
+ background: #f9f9f9;
7
+ border-radius: 0px 4px 4px 0px;
8
+ padding: 5px 10px;
9
+ }
10
+ .button, input[type=submit] {
11
+ -webkit-appearance: none;
12
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-uikit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - jpasholk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-14 00:00:00.000000000 Z
11
+ date: 2018-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -154,6 +154,7 @@ files:
154
154
  - assets/apple-touch-icon.png
155
155
  - assets/avatar-icon.png
156
156
  - assets/css/syntax.css
157
+ - assets/css/theme-overrides.scss
157
158
  - assets/css/uikit.min.css
158
159
  - assets/img/algolia.png
159
160
  - assets/img/archive-page.png