beautiful-jekyll-theme 1.1.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +5 -5
  2. data/404.html +13 -0
  3. data/{LICENSE.txt → LICENSE} +14 -5
  4. data/README.md +207 -203
  5. data/_data/ui-text.yml +494 -0
  6. data/_includes/comments.html +6 -0
  7. data/_includes/disqus.html +16 -14
  8. data/_includes/ext-css.html +7 -0
  9. data/_includes/ext-js.html +7 -0
  10. data/_includes/fb-comment.html +14 -0
  11. data/_includes/footer-minimal.html +6 -7
  12. data/_includes/footer-scripts.html +14 -16
  13. data/_includes/footer.html +23 -168
  14. data/_includes/google_analytics.html +13 -11
  15. data/_includes/gtag.html +11 -0
  16. data/_includes/gtm_body.html +6 -0
  17. data/_includes/gtm_head.html +9 -0
  18. data/_includes/head.html +41 -19
  19. data/_includes/header.html +37 -29
  20. data/_includes/matomo.html +17 -0
  21. data/_includes/nav.html +21 -23
  22. data/_includes/readtime.html +16 -0
  23. data/_includes/social-networks-links.html +207 -0
  24. data/_includes/social-share.html +25 -22
  25. data/_includes/staticman-comment.html +22 -0
  26. data/_includes/staticman-comments.html +83 -0
  27. data/_includes/utterances-comment.html +13 -0
  28. data/_layouts/base.html +4 -2
  29. data/_layouts/default.html +1 -1
  30. data/_layouts/home.html +75 -0
  31. data/_layouts/minimal.html +3 -3
  32. data/_layouts/page.html +1 -5
  33. data/_layouts/post.html +35 -11
  34. data/assets/css/main.css +233 -74
  35. data/assets/css/normalize.css +1 -1
  36. data/assets/css/pygment_highlights.css +0 -5
  37. data/assets/css/staticman.css +180 -0
  38. data/assets/img/404-southpark.jpg +0 -0
  39. data/assets/img/avatar-icon.png +0 -0
  40. data/assets/img/bgimage.png +0 -0
  41. data/assets/img/hello_world.jpeg +0 -0
  42. data/assets/img/install-steps.gif +0 -0
  43. data/assets/img/path.jpg +0 -0
  44. data/assets/js/main.js +21 -19
  45. data/assets/js/staticman.js +54 -0
  46. data/{assets/feed.xml → feed.xml} +8 -4
  47. data/tags.html +36 -0
  48. metadata +53 -17
  49. data/_includes/navbarlink.html +0 -16
  50. data/_layouts/tag_index.html +0 -41
@@ -1,16 +0,0 @@
1
- {% capture before %}{{ include.link[1] | split: "://" | first }}{% endcapture %}
2
- {% capture after %}{{ include.link[1] | split: "://" | last }}{% endcapture %}
3
- {% assign internal = true %}
4
- {% if before != after %}
5
- {% if before == "http" or before == "https" %}
6
- {% assign internal = false %}
7
- {% endif %}
8
- {% endif %}
9
-
10
- {% if internal %}
11
- {% capture linkurl %}/{{ include.link[1] }}{% endcapture %}
12
- {% else %}
13
- {% capture linkurl %}{{ include.link[1] }}{% endcapture %}
14
- {% endif %}
15
-
16
- <a href="{{ linkurl }}">{{ include.link[0] }}</a>
@@ -1,41 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- <h2 class="post_title">{{page.title}}:</h2>
6
-
7
- <div class="posts-list">
8
- {% for post in site.posts %}
9
- {% for tag in post.tags %}
10
- {% if tag == page.tag %}
11
- <article class="post-preview">
12
- <a href="{{ post.url }}">
13
- <h3 class="post-title">{{ post.title }}</h3>
14
-
15
- {% if post.subtitle %}
16
- <h4 class="post-subtitle">
17
- {{ post.subtitle }}
18
- </h4>
19
- {% endif %}
20
- </a>
21
-
22
- <p class="post-meta">
23
- Posted on {{ post.date | date: "%B %-d, %Y" }}
24
- </p>
25
-
26
- <div class="post-entry">
27
- {{ post.content | strip_html | xml_escape | truncatewords: 50 }}
28
- <a href="{{ post.url }}" class="post-read-more">[Read&nbsp;More]</a>
29
- </div>
30
-
31
- <div class="blog-tags">
32
- Tags:
33
- {% for tag in post.tags %}
34
- <a href="/tag/{{ tag }}">{{ tag }}</a>
35
- {% endfor %}
36
- </div>
37
- </article>
38
- {% endif %}
39
- {% endfor %}
40
- {% endfor %}
41
- </div>