jekyll-theme-meliora 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +48 -0
  4. data/_data/menus.yml +24 -0
  5. data/_includes/all-posts.html +5 -0
  6. data/_includes/blog-nav-menu.html +39 -0
  7. data/_includes/category-nav-menu.html +7 -0
  8. data/_includes/contact-form.html +27 -0
  9. data/_includes/current-status.html +11 -0
  10. data/_includes/footer.html +4 -0
  11. data/_includes/head.html +11 -0
  12. data/_includes/image.html +6 -0
  13. data/_includes/kindle-embed.html +6 -0
  14. data/_includes/nav-menu.html +11 -0
  15. data/_includes/noscript.html +11 -0
  16. data/_includes/paginated-posts.html +33 -0
  17. data/_includes/post-info.html +9 -0
  18. data/_includes/post-list-meta.html +16 -0
  19. data/_includes/post-meta.html +14 -0
  20. data/_includes/scripts.html +21 -0
  21. data/_includes/sharing-nav-menu.html +11 -0
  22. data/_includes/skip-nav.html +1 -0
  23. data/_includes/status-loop.html +13 -0
  24. data/_includes/styles.html +5 -0
  25. data/_includes/styles/blue.scss +16 -0
  26. data/_includes/styles/bluegray.scss +16 -0
  27. data/_includes/styles/cyan.scss +16 -0
  28. data/_includes/styles/deeporange.scss +16 -0
  29. data/_includes/styles/deeppurple.scss +16 -0
  30. data/_includes/styles/green.scss +16 -0
  31. data/_includes/styles/indigo.scss +16 -0
  32. data/_includes/styles/lightblue.scss +16 -0
  33. data/_includes/styles/orange.scss +16 -0
  34. data/_includes/styles/pink.scss +16 -0
  35. data/_includes/styles/purple.scss +16 -0
  36. data/_includes/styles/red.scss +16 -0
  37. data/_includes/styles/teal.scss +16 -0
  38. data/_includes/thanks-for-reading.html +4 -0
  39. data/_includes/top-link.html +1 -0
  40. data/_includes/youtube.html +6 -0
  41. data/_layouts/archive.html +11 -0
  42. data/_layouts/default.html +13 -0
  43. data/_layouts/home.html +12 -0
  44. data/_layouts/page.html +12 -0
  45. data/_layouts/post.html +24 -0
  46. data/_sass/meliora.scss +11 -0
  47. data/_sass/meliora/_base.scss +120 -0
  48. data/_sass/meliora/_components.scss +87 -0
  49. data/_sass/meliora/_generic.scss +67 -0
  50. data/_sass/meliora/_objects.scss +5 -0
  51. data/_sass/meliora/_settings.scss +39 -0
  52. data/_sass/meliora/_tools.scss +4 -0
  53. data/_sass/meliora/_trumps.scss +48 -0
  54. data/_sass/meliora/themes/blue.scss +17 -0
  55. data/_sass/meliora/themes/bluegray.scss +18 -0
  56. data/_sass/meliora/themes/cyan.scss +17 -0
  57. data/_sass/meliora/themes/deeporange.scss +17 -0
  58. data/_sass/meliora/themes/deeppurple.scss +17 -0
  59. data/_sass/meliora/themes/default.scss +17 -0
  60. data/_sass/meliora/themes/green.scss +17 -0
  61. data/_sass/meliora/themes/indigo.scss +17 -0
  62. data/_sass/meliora/themes/lightblue.scss +17 -0
  63. data/_sass/meliora/themes/orange.scss +17 -0
  64. data/_sass/meliora/themes/pink.scss +17 -0
  65. data/_sass/meliora/themes/purple.scss +17 -0
  66. data/_sass/meliora/themes/red.scss +17 -0
  67. data/_sass/meliora/themes/teal.scss +17 -0
  68. data/assets/css/highlightjs/xcode.css +93 -0
  69. data/assets/css/main.scss +14 -0
  70. data/assets/js/highlight.pack.js +2 -0
  71. data/assets/js/jquery-3.1.1.min.js +4 -0
  72. data/assets/js/jquery.fitvids.js +87 -0
  73. metadata +257 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6b64a1498eadd9140163d2caee64a77ceefb4954
4
+ data.tar.gz: d2977f721d31fbf73ff185e58f1023e520e40eeb
5
+ SHA512:
6
+ metadata.gz: 9fc643a0dccf712bfdf09f16888eaae916643b9f150c05922307db443e83ae6c0824fe7f17013b83c55f23b147618640c317518445e2b6f519071baf88f85e78
7
+ data.tar.gz: c8017ad119039a45045441e3ac4954645ce5c08f0fc50554da52e240aef10daba260f54a201ab9597066e61cc257ece7f3741b45ccba72dc513abdec744140a2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Matthew Graybosch
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # jekyll-theme-meliora
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "jekyll-theme-meliora"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: jekyll-theme-meliora
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install jekyll-theme-meliora
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
data/_data/menus.yml ADDED
@@ -0,0 +1,24 @@
1
+ home:
2
+ items:
3
+ - title: About
4
+ url: /about/
5
+ - title: Posts
6
+ url: /blog/
7
+ archive:
8
+ items:
9
+ - title: About
10
+ url: /about/
11
+ - title: Posts
12
+ url: /blog/
13
+ page:
14
+ items:
15
+ - title: About
16
+ url: /about/
17
+ - title: Posts
18
+ url: /blog/
19
+ post:
20
+ items:
21
+ - title: About
22
+ url: /about/
23
+ - title: Posts
24
+ url: /blog/
@@ -0,0 +1,5 @@
1
+ <ul>
2
+ {% for post in site.posts %}
3
+ <li><span class="post_date">{{ post.date | date: "%b %d, %Y" }}</span> &mdash; <a href="{{ site.url}}{{ post.url }}">{{ post.title }}</a></li>
4
+ {% endfor %}
5
+ </ul>
@@ -0,0 +1,39 @@
1
+ {% if include.category %}
2
+ {% assign posts = site.categories.[include.category] %}
3
+ {% assign category = site.data.categories[include.category] %}
4
+ {% else %}
5
+ {% assign posts = site.posts %}
6
+ {% endif %}
7
+ {% if category %}
8
+ <h1>{{ category.title | markdownify | remove: '<p>' | remove: '</p>' | strip }}</h1>
9
+ <p>{{ category.description | markdownify | remove: '<p>' | remove: '</p>' | strip }}</p>
10
+ {% endif %}
11
+ <nav id="{{ include.id }}" aria-label="{{ include.aria_label }}">
12
+ {% if include.limit %}
13
+ {% for post in posts limit: include.limit %}
14
+ <article class="post_list">
15
+ <header>
16
+ <h3>{% unless post.altTitle %}{{ post.title }}{% else %}{{ post.altTitle | markdownify | remove: '<p>' | remove: '</p>' | strip }}{% endunless %}</h3>
17
+ </header>
18
+ <section>
19
+ <p>{{ post.description }}</p>
20
+ </section>
21
+ <aside>
22
+ {% include post-list-meta.html %}
23
+ </aside>
24
+ </article>
25
+ {% endfor %}
26
+ {% else %}
27
+ {% for post in posts %}
28
+ <article class="post_list">
29
+ <header>
30
+ <h3>{% unless post.altTitle %}{{ post.title }}{% else %}{{ post.altTitle | markdownify | remove: '<p>' | remove: '</p>' | strip }}{% endunless %}</h3>
31
+ {% include post-list-meta.html %}
32
+ </header>
33
+ <section>
34
+ <p>{{ post.description }}</p>
35
+ </section>
36
+ </article>
37
+ {% endfor %}
38
+ {% endif %}
39
+ </nav>
@@ -0,0 +1,7 @@
1
+ <nav id="category_list" aria-label="Blog Category Menu">
2
+ <ul>
3
+ {% for category in site.data.categories sort: category[1].title %}
4
+ <li><a href="{{ site.url }}/blog/{{ category[0] }}/">{{ category[1].archiveTitle | markdownify | remove: '<p>' | remove: '</p>' | strip }}</a></li>
5
+ {% endfor %}
6
+ </ul>
7
+ </nav>
@@ -0,0 +1,27 @@
1
+ <form id="formspree_contact_form" class="bg-material50 border-material400" method="POST" action="http://formspree.io/{{ site.real_email }}">
2
+ <div class="form_row">
3
+ {% if include.subject %}
4
+ <input type="hidden" name="_subject" value="[matthewgraybosch.com] {{ include.subject }}">
5
+ {% else %}
6
+ <input type="hidden" name="_subject" value="[matthewgraybosch.com] Message from Contact Form">
7
+ {% endif %}
8
+ </div>
9
+ <div class="form_row">
10
+ <input type="hidden" name="_next" value="//matthewgraybosch.com/contact/thanks/" />
11
+ </div>
12
+ <div class="form_row">
13
+ <label for="emailField">From:</label>
14
+ <input id="emailField" name="_replyto" placeholder="Your email" type="email" required="true" autocomplete="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$">
15
+ </div>
16
+ <div class="form_row">
17
+ <label for="messageField">Message:</label>
18
+ <textarea id="messageField" name="message" rows="10" placeholder="Your message" required="true" spellcheck="true"></textarea>
19
+ </div>
20
+ <div class="form_row hidden">
21
+ <label for="spamTrapField" class="hidden">Spam Trap:</label>
22
+ <input id="spamTrapField" class="hidden" type="text" name="_gotcha" />
23
+ </div>
24
+ <div class="form_row form_row_right_align">
25
+ <button id="sendEmailButton" type="submit">Send</button>
26
+ </div>
27
+ </form>
@@ -0,0 +1,11 @@
1
+ {% assign status = (site.status | sort: 'date' | reverse) %}
2
+ {% for item in status limit: 1 %}
3
+ <article>
4
+ <section>
5
+ {{ item.content }}
6
+ </section>
7
+ <aside class="post_info material400 small">
8
+ <p><a href="{{ item.url | prepend: site.url }}">posted on {{ item.date | date: '%l:%M %p on %m/%d/%Y' }}</a></p>
9
+ </aside>
10
+ </article>
11
+ {% endfor %}
@@ -0,0 +1,4 @@
1
+ <footer id="page_footer">
2
+ <p>&copy; 1996-{{ site.time | date: '%Y' }} <a href="{{ site.url }}/contact/" rel="author" class="link">{{ site.name | default: site.title }}</a><br /> Hand-coded with &hearts; in {{ site.location }}<br />Built with <a href="https://jekyllrb.com" rel="nofollow" class="link">Jekyll</a> and <a href="https://travis-ci.org" rel="nofollow" class="link">Travis CI</a></p>
3
+ {% include top-link.html %}
4
+ </footer>
@@ -0,0 +1,11 @@
1
+ <link rel="author" href="{{ site.url }}/humans.txt" />
2
+ <link rel="cats" href="{{ site.url }}/cats.txt" />
3
+ <meta charset="utf-8">
4
+ <meta name=generator content="Jekyll 3.3.1">
5
+ <meta name="HandheldFriendly" content="True">
6
+ <meta name="MobileOptimized" content="320">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+ <meta http-equiv="cleartype" content="on">
9
+ <link rel="alternate" type="application/rss+xml" title="Matthew Graybosch's Blog Feed" href="/feed.xml">
10
+ <link rel="alternate" type="application/rss+xml" title="Matthew Graybosch's Status Feed" href="/status.xml">
11
+ {% seo %}
@@ -0,0 +1,6 @@
1
+ <figure class="bg-material50 border-material400">
2
+ <img class="border-materialBlack" src="{{ include.src | prepend: site.url }}" width="677" alt="{{ include.alt }}">
3
+ {% if include.caption %}
4
+ <figcaption>{{ include.caption | markdownify }}</figcaption>
5
+ {% endif %}
6
+ </figure>
@@ -0,0 +1,6 @@
1
+ <figure class="bg-material50 border-material400">
2
+ <div class="center_contents">
3
+ <iframe type="text/html" width="628" height="1000" frameborder="0" allowfullscreen="true" src="{{ include.src }}"></iframe>
4
+ </div>
5
+ <figcaption><figcaption>{{ include.caption | markdownify }}</figcaption></figcaption>
6
+ </figure>
@@ -0,0 +1,11 @@
1
+ {% assign menu = site.data.menus[include.menu] %}
2
+ <nav id="{{ include.id }}" aria-label="{{ include.aria_label }}" {% if include.class %}class="{{ include.class }}"{% endif %}>
3
+ {% if menu.title %}<h2>{{ menu.title }}</h2>{% endif %}
4
+ {% if menu.description %}<p>{{ menu.description | markdownify | remove: '<p>' | remove: '</p>' }}</p>{% endif %}
5
+ <ul>
6
+ {% unless menu.title %}<li><h1 class="normal_font_size material700">{{ site.name }}</h1></li>{% endunless %}
7
+ {% for item in menu.items %}
8
+ <li>{% if item.date %}<span class="small material400">{{ item.date }}</span>{% endif %} <a href="{{ item.url }}" {% unless include.underline_links %}class="link"{% endunless %}>{{ item.title | markdownify | remove: '<p>' | remove: '</p>' | strip }}</a></li>
9
+ {% endfor %}
10
+ </ul>
11
+ </nav>
@@ -0,0 +1,11 @@
1
+ {% if page.options.noscript or page.options.jquery or page.options.highlight or page.options.fitvids %}
2
+ <noscript>
3
+ <aside class="bg-material200 border-materialBlack material900 small">
4
+ <h1>JavaScript Disabled</h1>
5
+ <p>Hi there! It looks like you're protecting yourself by using <a href="https://noscript.net/" rel="nofollow">NoScript</a> or <a href="http://www.alanwood.net/demos/enabling-javascript.html" rel="nofollow">your browser's settings</a> to disable JavaScript.</p>
6
+ <p>That's a smart move, and you have my respect for doing so. You will still have access to the page's text and image content, but embedded content might not work without JavaScript.</p>
7
+ <h2>Before You Enable JavaScript</h2>
8
+ <p>I as your host, it is my responsibility to warn you that if you decide to enable JavaScript, the embedded content on this page may attempt to run tracking code or serve you ads. I don't have Google Analytics installed myself or serve ads, but since I use <a href="https://www.cloudflare.com" rel="nofollow">Cloudflare</a> the CDN may also try to run its own code on this page.</p>
9
+ </aside>
10
+ </noscript>
11
+ {% endif %}
@@ -0,0 +1,33 @@
1
+ <nav id="{{ include.id }}" aria-label="{{ include.aria_label }}">
2
+ {% for post in paginator.posts %}
3
+ <article class="post_list">
4
+ <header>
5
+ <h3>{% unless post.altTitle %}{{ post.title }}{% else %}{{ post.altTitle | markdownify | remove: '<p>' | remove: '</p>' | strip }}{% endunless %}</h3>
6
+ {% include post-list-meta.html %}
7
+ </header>
8
+ <section>
9
+ <p>{{ post.description }}</p>
10
+ </section>
11
+ <footer>
12
+ {% include post-list-meta.html %}
13
+ </footer>
14
+ </article>
15
+ {% endfor %}
16
+ </nav>
17
+ <!-- Pagination links -->
18
+ <nav class="pager" aria-label="Paginator Navigation">
19
+ <div class="container">
20
+ {% if paginator.previous_page %}
21
+ <a class="prev" href="{{ paginator.previous_page_path | relative_url }}">
22
+ <span>&lArr; Older</span>
23
+ </a>
24
+ {% endif %}
25
+ {% if paginator.next_page %}
26
+ <span class="float_right">
27
+ <a class="next" href="{{ paginator.next_page_path | relative_url }}">
28
+ <span>Newer &rArr;</span>
29
+ </a>
30
+ </span>
31
+ {% endif %}
32
+ </div>
33
+ </nav>
@@ -0,0 +1,9 @@
1
+ <section id="article_footer_about_post">
2
+ {% assign category0 = page.categories[0] %}
3
+ {% assign category = site.data.categories[category0] %}
4
+ <h2>About This Post</h2>
5
+ <p class="post_info">Posted at {{ page.date | date: '%l:%M %p on %m/%d/%Y' }} under <a href="/blog/{{ category0 }}/">{{ category.title }}</a>.</p>
6
+ {% if page.updated %}
7
+ <p class="post_info">Updated at {{ page.updated | date: '%l:%M %p on %m/%d/%Y' }}</p>
8
+ {% endif %}
9
+ </section>
@@ -0,0 +1,16 @@
1
+ {% assign category0 = post.categories[0] %}
2
+ {% assign words_per_minute = site.words_per_minute | default: 200 %}
3
+ {% assign words = post.content | strip_html | number_of_words %}
4
+ <p class="post_info material400 small">
5
+ <a href="{{ post.url }}">
6
+ posted at {{ post.date | date: '%l:%M %p on %m/%d/%Y' }} &middot;
7
+ {{ category0 }} &middot;
8
+ {% if words < words_per_minute %}
9
+ less than a minute to read
10
+ {% elsif words == words_per_minute %}
11
+ 1 minute to read
12
+ {% else %}
13
+ {{ words | divided_by:words_per_minute }} minutes to read
14
+ {% endif %}
15
+ </a>
16
+ </p>
@@ -0,0 +1,14 @@
1
+ {% assign category0 = page.categories[0] %}
2
+ {% assign words_per_minute = site.words_per_minute | default: 200 %}
3
+ {% assign words = page.content | strip_html | number_of_words %}
4
+ <p class="reading_time material400">
5
+ {% if words < words_per_minute %}
6
+ less than a minute to read
7
+ {% elsif words == words_per_minute %}
8
+ 1 minute to read
9
+ {% else %}
10
+ {{ words | divided_by:words_per_minute }} minutes to read
11
+ {% endif %}
12
+ &middot; {{ category0 }}
13
+ &middot; posted at {{ page.date | date: '%l:%M %p on %m/%d/%Y' }}
14
+ </p>
@@ -0,0 +1,21 @@
1
+ {% if page.options.jquery or page.options.highlight or page.options.fitvids %}
2
+ <script src="{{ site.url }}/assets/js/jquery-3.1.1.min.js" type="text/javascript" async="true"></script>
3
+ {% endif %}
4
+ {% if page.options.highlight %}
5
+ <script src="{{ site.url }}/assets/js/highlight.pack.js" type="text/javascript" async="true"></script>
6
+ <script type="text/javascript">
7
+ $(document).ready(function() {
8
+ $('pre code').each(function(i, block) {
9
+ hljs.highlightBlock(block);
10
+ });
11
+ });
12
+ </script>
13
+ {% endif %}
14
+ {% if page.options.fitvids %}
15
+ <script src="{{ site.url }}/assets/js/jquery.fitvids.js" type="text/javascript" async="true"></script>
16
+ <script type="text/javascript">
17
+ $(document).ready(function(){
18
+ $('iframe[src*="youtube"]').parent().fitVids();
19
+ });
20
+ </script>
21
+ {% endif %}
@@ -0,0 +1,11 @@
1
+ <nav id="article_sharing_nav" aria-label="Sharing Menu" class="flat_nav_menu">
2
+ <ul>
3
+ <li class="bold material400">Thanks for sharing!</li>
4
+ <li><a href="http://wordpress.com/press-this.php?u={{ site.url }}{{ page.url }}&t={{ page.title }}&s={{ page.description }}&i={{ site.url }}{% if page.image %}{{ page.image }}{% else %}{{ site.image }}{% endif %}" class="link">WordPress</a></li>
5
+ <li><a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" class="link">Google+</a></li>
6
+ <li><a href="http://www.tumblr.com/share/link?url={{ site.url }}{{ page.url }}&name={{ page.title }}&description={{ page.description }}" class="link">Tumblr</a></li>
7
+ <li><a href="http://reddit.com/submit?url={{ site.url }}{{ page.url }}&title={{ page.title }}" class="link">Reddit</a></li>
8
+ <li><a href="https://twitter.com/share?url={{ site.url }}{{ page.url }}&text={{ page.title }}&via={{ site.twitter_username }}&hashtags=#{{ page.category }}" class="link">Twitter</a></li>
9
+ <li><a href="http://www.facebook.com/sharer.php?u={{ site.url }}{{ page.url }}" class="link">Facebook</a></li>
10
+ </ul>
11
+ </nav>
@@ -0,0 +1 @@
1
+ <div id="skip_link"><a href="#main_content" tabindex="0">Skip to main content</a></div>
@@ -0,0 +1,13 @@
1
+ {% for item in status %}
2
+ <article class="post_list">
3
+ <header>
4
+ <h2>{{ item.title }}</h2>
5
+ </header>
6
+ <section>
7
+ {{ item.content }}
8
+ </section>
9
+ <aside class="post_info material400 small">
10
+ <p><a href="{{ item.url | prepend: site.url }}" {% unless include.underline_links %}class="link"{% endunless %}>posted on {{ item.date | date: '%l:%M %p on %m/%d/%Y' }}</a></p>
11
+ </aside>
12
+ </article>
13
+ {% endfor %}
@@ -0,0 +1,5 @@
1
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
2
+ <!--We'll take a perfomance hit if we load additional stylesheets, but I don't want to inline this shit if I'm not using it.-->
3
+ {% if page.options.highlight %}
4
+ <link rel="stylesheet" href="{{ site.url }}/assets/css/highlightjs/xcode.css">
5
+ {% endif %}
@@ -0,0 +1,16 @@
1
+ // matthewgraybosch.com
2
+ // uses ITCSS architecture.
3
+ // See https://medium.com/@jordankoschei/how-i-shrank-my-css-by-84kb-by-refactoring-with-itcss-2e8dafee123a#.dm4sr8ywt for details.
4
+
5
+ // Material design colors for a consistent look.
6
+ // All color schemes live in _sass/material-colors.
7
+ // To change color scheme, change this import statement.
8
+ @import "material-colors/blue";
9
+ // Everything else.
10
+ @import "settings";
11
+ @import "tools";
12
+ @import "generic";
13
+ @import "base";
14
+ @import "objects";
15
+ @import "components";
16
+ @import "trumps";
@@ -0,0 +1,16 @@
1
+ // matthewgraybosch.com
2
+ // uses ITCSS architecture.
3
+ // See https://medium.com/@jordankoschei/how-i-shrank-my-css-by-84kb-by-refactoring-with-itcss-2e8dafee123a#.dm4sr8ywt for details.
4
+
5
+ // Material design colors for a consistent look.
6
+ // All color schemes live in _sass/material-colors.
7
+ // To change color scheme, change this import statement.
8
+ @import "material-colors/bluegray";
9
+ // Everything else.
10
+ @import "settings";
11
+ @import "tools";
12
+ @import "generic";
13
+ @import "base";
14
+ @import "objects";
15
+ @import "components";
16
+ @import "trumps";