jekyll-theme-iamlynnmckay 0.0.5 → 0.0.8

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSE.txt → LICENSE} +5 -5
  3. data/README.md +1 -6
  4. data/_config.yml +74 -78
  5. data/_includes/404-template.html +18 -0
  6. data/_includes/about-template.html +1 -0
  7. data/_includes/bib-template.html +1 -0
  8. data/_includes/blog-template.html +11 -0
  9. data/_includes/contact-template.html +3 -0
  10. data/_includes/css.html +2 -0
  11. data/_includes/default-template.html +17 -0
  12. data/_includes/disqus-comments.html +0 -2
  13. data/_includes/footer.html +27 -112
  14. data/_includes/google-analytics.html +10 -12
  15. data/_includes/head.html +9 -6
  16. data/_includes/header.html +25 -24
  17. data/_includes/home-template.html +21 -0
  18. data/_includes/js.html +1 -0
  19. data/_includes/list-of-homepage-links.html +8 -0
  20. data/_includes/page-template.html +8 -0
  21. data/_includes/post-categories.html +5 -0
  22. data/_includes/post-date.html +5 -0
  23. data/_includes/post-item-proxy.html +1 -0
  24. data/_includes/post-item.html +6 -0
  25. data/_includes/post-meta.html +12 -0
  26. data/_includes/post-tags.html +6 -0
  27. data/_includes/post-template.html +16 -0
  28. data/_includes/posts-by-category.html +1 -0
  29. data/_includes/posts-by-date-top-three.html +2 -0
  30. data/_includes/posts-by-date.html +1 -0
  31. data/_includes/posts-by-tag.html +1 -0
  32. data/_includes/posts-list-nested.html +14 -0
  33. data/_includes/posts-list.html +8 -0
  34. data/_includes/social.html +73 -0
  35. data/_layouts/404.html +5 -0
  36. data/_layouts/bib.html +1 -1
  37. data/_layouts/default.html +1 -15
  38. data/_layouts/home.html +1 -57
  39. data/_layouts/page.html +5 -0
  40. data/_layouts/post.html +1 -43
  41. data/_sass/_minima-custom.scss +699 -0
  42. data/_sass/iamlynnmckay.scss +282 -0
  43. data/assets/css/main.scss +4 -0
  44. data/assets/js/bouncing-ball-in-canvas-element.js +41 -0
  45. data/assets/js/main.js +13 -0
  46. data/assets/js/random-color-for-font-awesome-icons.js +5 -0
  47. metadata +52 -51
  48. data/_includes/scripts.html +0 -73
  49. data/_includes/tailwind.config.js +0 -12
  50. data/_layouts/about.html +0 -7
  51. data/_layouts/posts.html +0 -36
  52. data/_sass/syntax-highlighting.scss +0 -71
  53. data/assets/_files/.gitignore +0 -14
  54. data/assets/_files/_bibliography/references.bib +0 -13
  55. data/assets/_files/_config.yml +0 -78
  56. data/assets/_files/_includes/tailwind.config.js +0 -12
  57. data/assets/_files/about.html +0 -6
  58. data/assets/_files/index.html +0 -3
  59. data/assets/_files/package.json +0 -10
  60. data/assets/_files/postcss.config.js +0 -21
  61. data/assets/_files/posts.html +0 -4
  62. data/assets/_images/logo.svg +0 -1
  63. data/assets/_scripts/build.sh +0 -34
  64. data/assets/_scripts/run.sh +0 -7
  65. data/assets/main.scss +0 -204
@@ -0,0 +1,14 @@
1
+ {%- if site.posts.size > 0 -%}
2
+ <ul class="x-post-list">
3
+ {% for _key_value_pair in include.nested_posts %}
4
+ <li>
5
+ {% capture _key %}{{ _key_value_pair | first }}{% endcapture %}
6
+ <div id="{{ include.id_prefix }}-{{ _key }}" class="x-post-link x-post-meta">
7
+ <span>{{ include.text_prefix }}{{ _key }}</span>
8
+ </div>
9
+ {% assign posts=include.nested_posts[_key] %}
10
+ {% include posts-list.html posts=posts ul_class="list-style-none" size=include.size %}
11
+ </li>
12
+ {% endfor %}
13
+ </ul>
14
+ {%- endif -%}
@@ -0,0 +1,8 @@
1
+ {%- if include.posts.size > 0 -%}
2
+ {% assign ul_class = include.ul_class | default: "x-post-list" %}
3
+ <ul class="{{ ul_class }}">
4
+ {%- for post in include.posts -%}
5
+ {% include post-item-proxy.html size=include.size post=post %}
6
+ {%- endfor -%}
7
+ </ul>
8
+ {%- endif -%}
@@ -0,0 +1,73 @@
1
+ <ul class="x-social-media-list">
2
+ <li>
3
+ <a href="https://bandcamp.com/{{ site.twitter.username }}">
4
+ <i class="fab fa-bandcamp"></i>
5
+
6
+ </a>
7
+ </li>
8
+ <li>
9
+ <a href="https://facebook.com/{{ site.twitter.username }}">
10
+ <i class="fab fa-facebook"></i>
11
+ </a>
12
+ </li>
13
+ <li>
14
+ <a href="https://github.com/{{ site.twitter.username }}">
15
+ <i class="fab fa-github"></i>
16
+ </a>
17
+ </li>
18
+ <li>
19
+ <a href="https://instagram.com/{{ site.twitter.username }}">
20
+ <i class="fab fa-instagram"></i>
21
+ </a>
22
+ </li>
23
+ <li>
24
+ <a href="https://patreon.com/{{ site.twitter.username }}">
25
+ <i class="fab fa-patreon"></i>
26
+ </a>
27
+ </li>
28
+ <li>
29
+ <a href="https://pinterest.com/{{ site.twitter.username }}">
30
+ <i class="fab fa-pinterest"></i>
31
+ </a>
32
+ </li>
33
+ <li>
34
+ <a href="https://reddit.com/{{ site.twitter.username }}">
35
+ <i class="fab fa-reddit"></i>
36
+ </a>
37
+ </li>
38
+ <li>
39
+ <a href="https://soundcloud.com/{{ site.twitter.username }}">
40
+ <i class="fab fa-soundcloud"></i>
41
+ </a>
42
+ </li>
43
+ <li>
44
+ <a href="https://stack-overflow.com/{{ site.twitter.username }}">
45
+ <i class="fab fa-stack-overflow"></i>
46
+ </a>
47
+ </li>
48
+ <li>
49
+ <a href="https://twitch.com/{{ site.twitter.username }}">
50
+ <i class="fab fa-twitch"></i>
51
+ </a>
52
+ </li>
53
+ <li>
54
+ <a href="https://twitter.com/{{ site.twitter.username }}">
55
+ <i class="fab fa-twitter"></i>
56
+ </a>
57
+ </li>
58
+ <li>
59
+ <a href="https://venmo.com/u/{{ site.twitter.username }}">
60
+ <i class="fab fa-paypal"></i>
61
+ </a>
62
+ </li>
63
+ <li>
64
+ <a href="https://wikipedia.com/{{ site.twitter.username }}">
65
+ <i class="fab fa-wikipedia-w"></i>
66
+ </a>
67
+ </li>
68
+ <li>
69
+ <a href="https://youtube.com/{{ site.twitter.username }}">
70
+ <i class="fab fa-youtube"></i>
71
+ </a>
72
+ </li>
73
+ </ul>
data/_layouts/404.html ADDED
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include 404-template.html %}
data/_layouts/bib.html CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  ---
3
3
 
4
- <li>{{ reference }}</li>
4
+ {% include bib-template.html %}
@@ -1,15 +1 @@
1
- <!DOCTYPE html>
2
- <html lang="{{ page.lang | default: site.lang | default: ' en' }}">
3
- {%- include head.html -%}
4
- <body>
5
- {%- include header.html -%}
6
- <main aria-label="Content">
7
- <div class="flex flex-col min-h-screen">
8
- <div class="relative sm:max-w-xl sm:mx-auto mr-8 ml-8">
9
- {{ content }}
10
- </div>
11
- </div>
12
- </main>
13
- {%- include footer.html -%}
14
- </body>
15
- </html>
1
+ {% include default-template.html %}
data/_layouts/home.html CHANGED
@@ -2,60 +2,4 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <blockquote>
6
- <h1>{{- site.description | escape -}}</h1>
7
- </blockquote>
8
- <figure>
9
- <img width="250" height="250" viewBox="0 0 250 250" src="/{{ site.logo }}" />
10
- </figure>
11
- <section>
12
- <h3 class="text-center italic">
13
- e.g.
14
- </h3>
15
- <ul class="grid grid-cols-1">
16
- {% for i in (0..2) %}
17
- <li class="x-fa">
18
- <i class="fa fa-angle-double-right"></i>
19
- <span class="text-category">
20
- <a href="/blog#{{ site.posts[i].categories[0] }}"> {{ site.posts[i].categories[0] | escape }}</a>
21
- </span>
22
- <div class="text-title text-center">
23
- <i class="fa fa-caret-right"></i>
24
- <a href="{{ site.posts[i].url }}"> {{ site.posts[i].title | escape }}</a>
25
- </div>
26
- <div class="grid grid-cols-2">
27
- <span class="text-tag">
28
- {% for tag in site.posts[i].tags %}
29
- <a href="/blog">#{{ tag }}</a>
30
- {% endfor %}
31
- </span>
32
- <span>
33
- <time class="text-date text-right" datetime="{{ post.date | date_to_xmlschema }}">
34
- {{ site.posts[i].date | date: "%b %-d, %Y" }}
35
- </time>
36
- </span>
37
- </div>
38
- </li>
39
- {% endfor %}
40
- </ul>
41
- <h3 class="text-center italic">
42
- goto
43
- </h3>
44
- <div class="grid lg:grid-cols-2 sm:grid-cols-1 m-5 text-center">
45
- <a href="/posts">
46
- <h2>
47
- <i class="fa fa-angle-right"></i>
48
- {{ site.descriptions.posts | escape }}
49
- </h2>
50
- </a>
51
- <a href="/about">
52
- <h2>
53
- <i class="fa fa-angle-right"></i>
54
- {{ site.descriptions.about | escape }}
55
- </h2>
56
- </a>
57
- </div>
58
- <div class="flex justify-center">
59
- <canvas id="canvas" width="300"></canvas>
60
- </div>
61
- </section>
5
+ {% include home-template.html %}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include page-template.html %}
data/_layouts/post.html CHANGED
@@ -2,46 +2,4 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <article itemscope itemtype="http://schema.org/BlogPosting">
6
- <header class="mb-8">
7
- <div class="text-category">
8
- <i class="fa fa-angle-double-right"></i>
9
- <a href="/blog#{{ page.categories[0] }}"> {{ page.categories[0] | escape }}</a>
10
- </div>
11
- <div class="ml-3">
12
- <h1 itemprop="name headline">
13
- <i class="fa fa-angle-right"></i>
14
- {{ page.title | escape }}
15
- </h1>
16
- </div>
17
- <p>
18
- <span class="text-tag">
19
- {% for tag in page.tags %}
20
- <a href="/blog">#{{ tag }}</a>
21
- {% endfor %}
22
- </span>
23
- <time class="text-date text-right" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
24
- {{ page.date | date: "%b %-d, %Y" }}
25
- </time>
26
- {%- if page.author -%}
27
- <span itemprop="author" itemscope itemtype="http://schema.org/Person">
28
- <span itemprop="name">{{ page.author }}</span>
29
- </span>
30
- {%- endif -%}
31
- </p>
32
- </header>
33
- <div itemprop="articleBody">
34
- <section>
35
- {{ content }}
36
- </section>
37
- </div>
38
- {%- if site.disqus.shortname -%}
39
- {%- include disqus-comments.html -%}
40
- {%- endif -%}
41
- <div class="mt-8">
42
- <h2>References:</h2>
43
- <ul>
44
- {% bibliography --file references --cited %}
45
- </ul>
46
- </div>
47
- </article>
5
+ {% include post-template.html %}