simpol-jekyll-theme 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 62ffded31c6edfee01cc9233cf5301dda1b0e9b3
4
+ data.tar.gz: f0fb0ce96c7a17cd92b488acede1fa8807ba6961
5
+ SHA512:
6
+ metadata.gz: 8cf98e68e861f21290bc03b6f7006525bfa0fcff04421ab5a1d2eced9fa073be6a7c7f3bf70c4cdec6e7aa44456b45e592797ac12875f59124915e468a9ca53e
7
+ data.tar.gz: 4ce63a17f67a63cd7d2179e09758f03ac90465e617d932d14b5fb583663db96944fe2df83ed60a2a0e13f750a07213292b49cb03f2adb04d3b7ff588cab2fbd5
data/LICENSE ADDED
@@ -0,0 +1,5 @@
1
+ Copyright (c) 2017 Mathson Design, LLC and Scott Mathson
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # Introducing Simpol Theme
2
+
3
+ Simpol is a minimal, clean, and open source Jekyll theme for Github Pages.
4
+
5
+ >### Focus on the writing, the content.
6
+
7
+ ![Screenshot](https://raw.githubusercontent.com/scottmathson/simpol-theme/master/simpol-theme-screenshot.jpg)
8
+
9
+ - [Install the theme](#installation)
10
+ - [Current features](#current-features)
11
+ - [Credits](#credits)
12
+ - [Resources](#resources)
13
+
14
+ ## Installation
15
+
16
+ ### As a Fork
17
+
18
+ 1. [Fork the repo](https://github.com/scottmathson/simpol-theme#fork-destination-box)
19
+ 2. Clone down the repo with `$ git clone git@github.com:username/reponame.git`
20
+ 3. Delete the `simpol-theme-screenshot.jpg` file
21
+ 4. Install bundler with `$ gem install bundler`
22
+ 5. Install gems with `$ bundle install`
23
+ 6. Run Jekyll with `$ bundle exec jekyll serve`
24
+ 7. Have fun!
25
+
26
+ ### As a Jekyll theme gem
27
+
28
+ 1. Download the theme, [quick download link](https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/scottmathson/simpol-theme/tree/master/)
29
+ 2. Install bundler with `$ gem install bundler`
30
+ 3. Install gems with `$ bundle install`
31
+ 4. Run Jekyll with `$ bundle exec jekyll serve`
32
+ 5. Have fun!
33
+
34
+ ## Current Features
35
+
36
+ * Minimal design and feel.
37
+ * Simple and customizable Navigation, Index, and Footer
38
+ * *Site greeting, sub-greetings, links, logo, and more*
39
+ * All easily setup and managed in the config file
40
+ * Clean, light-weight, default layouts for pages and posts
41
+ * Search engine friendly! Optimized metadata for SEO.
42
+ * Easy, site-wide Google Analytics setup/integration
43
+ * Post categories and archive page
44
+ * Social sharing for Twitter, Facebook, and email on all posts.
45
+ * Sitemap, XML Feed, and 404 Page
46
+ * Single, yet powerful and light-weight CSS Stylesheet
47
+ * **Simple, like a website should be.**
48
+
49
+ ## Credits
50
+
51
+ Simpol Theme is designed, developed, and maintained by Scott Mathson, Mathson Design Co.
52
+
53
+ The clean design and feel is inspired by other minimal themes and blogs out there.
54
+
55
+ [Scott on GitHub](https://github.com/scottmathson) | [Scott on Twitter](https://twitter.com/scottmathson)
56
+
57
+ ## Resources
58
+
59
+ Check out these blog posts for help in getting started blogging with Simpol Theme. Within the posts are even more resources to help you.
60
+
61
+ * [Adding New Posts, Simpol Blogging](https://simpoltheme.com/tips/tricks/2017/04/16/writing-new-post/)
62
+ * [Markdown Overview, Simpol Blogging](https://simpoltheme.com/tips/tricks/2017/04/15/blogging-in-markdown-overview/)
63
+ * [Deploy Jekyll to GitHub Pages](https://jekyllrb.com/docs/github-pages/)
64
+
65
+
66
+ ---
67
+
68
+ ## License
69
+
70
+ Copyright (c) 2017 Mathson Design, LLC and Scott Mathson
71
+
72
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
73
+
74
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -0,0 +1,13 @@
1
+ <footer>
2
+ <p class="smaller mobile-only-show">
3
+ {% if site.footer_link_one_link %}<a href="{{ site.footer_link_one_link }}">{% else %}<a href="{{ "https://github.com/simpol-theme/simpol-theme-jekyll#readme" }}">{% endif %}
4
+ {% if site.footer_link_one_name %}{{ site.footer_link_one_name }}</a>{% else %}{{ "Setup links in _config.yml" }}</a>{% endif %}
5
+ &bull;
6
+ {% if site.footer_link_two_link %}<a href="{{ site.footer_link_two_link }}">{% else %}<a href="{{ "#" }}">{% endif %}
7
+ {% if site.footer_link_two_name %}{{ site.footer_link_two_name }}</a>{% else %}{{ "x" }}</a>{% endif %}
8
+ &bull;
9
+ {% if site.footer_link_three_link %}<a href="{{ site.footer_link_three_link }}">{% else %}<a href="{{ "#" }}">{% endif %}
10
+ {% if site.footer_link_three_name %}{{ site.footer_link_three_name }}</a>{% else %}{{ "x" }}</a>{% endif %}
11
+ </p>
12
+ <p class="inline-block">&copy; {% if site.copyright_name %}{{ site.copyright_name }}{% else %}{{ "Mathson Design, LLC" }}{% endif %} &bull; <a href="https://simpoltheme.com?utm_source=theme&amp;utm_medium=website-footer" rel="nofollow" target="_blank" title="Minimal, free, and open source Jekyll Theme">Simpol Theme</a></p>
13
+ </footer>
@@ -0,0 +1,12 @@
1
+ {% if site.google_tracking_id %}
2
+ <script>
3
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
4
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
5
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
6
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
7
+
8
+ ga('create', '{{ site.google_tracking_id }}', 'auto');
9
+ ga('send', 'pageview');
10
+
11
+ </script>
12
+ {% endif %}
@@ -0,0 +1,19 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <!-- Backup, in lieu of jekyll-seo gem -->
5
+ <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title | default: site.github.repository_name }}{% endif %}</title>
6
+ <meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
7
+ <meta name="robots" content="index, follow">
8
+ <!-- End SEO backup -->
9
+
10
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
11
+ <link rel="canonical" href="{{ site.baseurl }}{{ page.url }}">
12
+
13
+ <link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/assets/img/simpol-favicon.png">
14
+ <link rel="icon" type="image/png" href="{{ site.baseurl }}/assets/img/simpol-favicon.png" sizes="32x32">
15
+ <link rel="icon" type="image/png" href="{{ site.baseurl }}/assets/img/simpol-favicon.png" sizes="16x16">
16
+
17
+ {% seo %}
18
+ {% feed_meta %}
19
+ </head>
@@ -0,0 +1,18 @@
1
+ <nav>
2
+ <a href="{{ site.baseurl }}/">
3
+ <h1>{% if site.title %}{{ site.title }}{% else %}{{ site.title | default: site.github.repository_name }}{% endif %}
4
+ </h1>
5
+ </a>
6
+ <p>{% if site.subtitle %}{{ site.subtitle }}{% else %}{{ site.subtitle | default: site.github.project_tagline }}{% endif %}
7
+ </p>
8
+ <p class="smaller mobile-hide">
9
+ {% if site.nav_link_one_link %}<a href="{{ site.nav_link_one_link }}">{% else %}<a href="{{ "https://github.com/scottmathson/simpol-theme#readme" }}">{% endif %}
10
+ {% if site.nav_link_one_name %}{{ site.nav_link_one_name }}</a>{% else %}{{ "Setup in _config.yml" }}</a>{% endif %}
11
+ &bull;
12
+ {% if site.nav_link_two_link %}<a href="{{ site.nav_link_two_link }}">{% else %}<a href="{{ "#" }}">{% endif %}
13
+ {% if site.nav_link_two_name %}{{ site.nav_link_two_name }}</a>{% else %}{{ "x" }}</a>{% endif %}
14
+ &bull;
15
+ {% if site.nav_link_three_link %}<a href="{{ site.nav_link_three_link }}">{% else %}<a href="{{ "#" }}">{% endif %}
16
+ {% if site.nav_link_three_name %}{{ site.nav_link_three_name }}</a>{% else %}{{ "x" }}</a>{% endif %}
17
+ </p>
18
+ </nav>
@@ -0,0 +1,36 @@
1
+ {% case include.icon %}
2
+ {% when "Facebook" %}
3
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
4
+ <rect fill="#333" height="512" rx="5%" width="512"/>
5
+ <path d="m287 456v-182h61l9-72h-70v-45c0-21 6-35 35-35h38v-63c-7-1-29-3-55-3-54 0-91 33-91 94v52h-62v72h62v182z" fill="#fff"/>
6
+ </svg>
7
+ {% when "Twitter" %}
8
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
9
+ <rect fill="#333" height="512" rx="5%" width="512"/>
10
+ <path d="m456 133c-14 7-31 11-47 13 17-10 30-27 37-46-15 10-34 16-52 20-61-62-157-7-141 75-68-3-129-35-169-85-22 37-11 86 26 109-13 0-26-4-37-9 0 39 28 72 65 80-12 3-25 4-37 2 10 33 41 57 77 57-42 30-77 38-122 34 170 111 378-32 359-208 16-11 30-25 41-42z" fill="#fff"/>
11
+ </svg>
12
+ {% when "Email" %}
13
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
14
+ <rect fill="#333" height="512" rx="5%" width="512"/>
15
+ <path d="m412 111h-312c-24 0-44 20-44 45v200c0 24 20 44 44 44h312c24 0 44-20 44-44v-200c0-25-20-45-44-45zm-220 164 38 33a39 39 0 0 0 51 0l39-33-1 1 87 87h-300l87-87zm-103 71v-161l86 75zm248-86 86-75v161zm86-112v5l-157 137c-5 5-15 5-20 0l-157-137v-5z" fill="#fff"/>
16
+ </svg>
17
+ {% when "LinkedIn" %}
18
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
19
+ <rect fill="#333" height="512" rx="5%" width="512"/>
20
+ <path d="m61 178h86v258h-86zm44-124c-30 0-49 20-49 45s19 44 47 44h1c30 0 48-19 48-44s-18-45-47-45zm252 119c-45 0-66 25-77 42v-36h-86v258h86v-144c0-8 1-16 3-21 6-16 20-32 44-32 31 0 43 24 43 59v138h86v-148c0-80-42-116-99-116z" fill="#fff"/>
21
+ </svg>
22
+ {% when "Pinterest" %}
23
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
24
+ <rect fill="#333" height="512" rx="5%" width="512"/>
25
+ <path d="m265 56c-109 0-164 78-164 144 0 39 15 74 47 87 5 2 10 0 12-5l4-19c2-6 1-8-3-13-9-11-15-25-15-45 0-58 43-110 113-110 62 0 96 38 96 88 0 67-30 122-73 122-24 0-42-19-36-44 6-29 20-60 20-81 0-19-10-35-31-35-25 0-44 26-44 60 0 21 7 36 7 36l-30 125c-8 37-1 83 0 87 0 3 4 4 5 2 2-3 32-39 42-75l16-64c8 16 31 29 56 29 74 0 124-67 124-157 0-69-58-132-146-132z" fill="#fff"/>
26
+ </svg>
27
+ {% when "RSS" %}
28
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
29
+ <rect fill="#333" height="512" rx="5%" width="512"/>
30
+ <g fill="#fff">
31
+ <circle cx="123" cy="389" r="67"/>
32
+ <path d="m56 256a200 200 0 0 1 200 200h67a267 267 0 0 0 -267-267z"/>
33
+ <path d="m56 123a333 333 0 0 1 333 333h67a433 433 0 0 0 -400-400z"/>
34
+ </g>
35
+ </svg>
36
+ {% endcase %}
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+
6
+ {% include nav.html %}
7
+
8
+ <div class="main">
9
+
10
+ {{ content }}
11
+
12
+ </div>
13
+
14
+ {% include footer.html %}
15
+
16
+ {% include google-analytics.html %}
17
+
18
+ </body>
19
+ <!-- Simpol Theme - Download at: https://simpoltheme.com/
20
+ Created by, Copyright © Mathson Design, LLC and Scott Mathson -->
21
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,34 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="page-wrapper">
6
+ <!-- Post Header -->
7
+ <h1>{{ page.title }}</h1>
8
+ <p class="mono smaller">Published on {{ page.date | date: "%B %-d, %Y" }} By {{ page.author }} &mdash; <a href="{{ site.baseurl }}/categories">{{ page.categories }}</a>
9
+ </p>
10
+ <hr>
11
+
12
+ <!-- Post Content -->
13
+ <article>
14
+ {{ content }}
15
+ <div class="social-sharing inline-block">
16
+ {% assign share_url = page.url | absolute_url %}
17
+ <a href="https://twitter.com/intent/tweet?url={{ share_url }}&amp;text=Check%20this%20out%20-%20site%20theme%20by%20@simpoltheme%20(@scottmathson)" target="_blank">{% include social-icons.html icon="Twitter" %}</a>
18
+ <a href="https://www.facebook.com/sharer/sharer.php?u={{ share_url }}" target="_blank">{% include social-icons.html icon="Facebook" %}</a>
19
+ <a href="mailto:?subject=Check%20this%20out&amp;body=Check%20this%20out%20-%20site%20theme%20by%20@simpoltheme:%20{{ share_url }}">{% include social-icons.html icon="Email" %}</a>
20
+ </div>
21
+ <div class="pager">
22
+ {% if page.previous.url %}
23
+ <a href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" title="{{page.previous.title}}">
24
+ <button class="btn-primary">&larr; Previous Post</button>
25
+ </a>
26
+ {% endif %}
27
+ {% if page.next.url %}
28
+ <a href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" title="{{page.next.title}}">
29
+ <button class="btn-primary">Next Post &rarr;</button>
30
+ </a>
31
+ {% endif %}
32
+ </div><!-- end .pager -->
33
+ </article>
34
+ </div><!-- end .page-wrapper -->
@@ -0,0 +1,38 @@
1
+ ---
2
+ layout: post
3
+ title: "Simpol Blogging, Adding New Posts"
4
+ description: "How to add your first post. Simpol Theme blogging overview."
5
+ date: 2017-04-16 17:00:00
6
+ author: "Simpol Theme"
7
+ header-img: assets/img/posts/header-img/woman-typing-macbook.jpg
8
+
9
+ categories:
10
+ - Tips/Tricks
11
+ ---
12
+
13
+ # Simpol Blogging: Creating Your Post
14
+
15
+ All of the blog posts that syndicate into the homepage (index.html) feed and Sitemap are located within the `_posts` folder.
16
+
17
+ **It's easy to add new posts**.
18
+
19
+ 1. Create a new file in the `_posts` folder
20
+ 2. Name the file, using this naming convention: `YYYY-MM-DD-post-name.markdown` (_or .md_)
21
+ 3. Write out the Front Matter (see below)
22
+
23
+ As for the Front Matter, Simpol Theme incorporates and includes a few options. _Always ensure that your file's date and front matter date match up_. **Although highly recommended**, things like the `description` `author` and `header-img` are completely optional.
24
+
25
+ **`layout` `date` and `title` should not be considered optional**.
26
+
27
+ ### Example: This Post's Front Matter:
28
+
29
+ ```
30
+ ---
31
+ layout: post
32
+ title: "Simpol Blogging, Adding New Posts"
33
+ description: "How to add your first post. Simpol Theme blogging overview."
34
+ date: 2017-04-16 17:00:00
35
+ author: "Scott Mathson"
36
+ header-img: img/posts/header-img/woman-typing-macbook.jpg
37
+ ---
38
+ ```
@@ -0,0 +1,381 @@
1
+ /* Simpol Theme - Download at: https://github.com/simpol-theme/simpol-theme-jekyll/releases
2
+ Coded by & Copyright © reserved by Mathson Design, LLC and Scott Mathson
3
+ More information can be found at https://mathsondesignco.com/simpol
4
+ Theme based off of Scott's personal site: https://scottmathson.me */
5
+
6
+
7
+
8
+
9
+ /**
10
+ * CONTENTS
11
+ *
12
+ * NORMALIZING
13
+ * Basic aspects--------Scott's version of "Normalize", custom to this site.
14
+ *
15
+ * PAGE-DEFAULT
16
+ * Default styles----------------for pages, including only 3 media queries throughout entire stylesheet.
17
+ * > PAGE-DEFAULT-404----------------"404 Page" page specific.
18
+ *
19
+ * POST-DEFAULT
20
+ * Default styles----------------for posts, etc.
21
+ *
22
+ * MISC
23
+ * Miscellaneous styles----------------for items throughout site.
24
+ */
25
+
26
+
27
+ /*--------------------------------*\
28
+ #NORMALIZING
29
+ \*--------------------------------*/
30
+ html {
31
+ position: relative;
32
+ min-height: 100%;
33
+ font-family: sans-serif;
34
+ font-weight: normal;
35
+ font-size: .9em;
36
+ color: #333;
37
+ }
38
+ body {
39
+ background-color: #fffefd;
40
+ }
41
+ h1,
42
+ h2 {
43
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
44
+ font-weight: 700;
45
+ color: #222;
46
+ letter-spacing: .5px;
47
+ font-size: 1.7em;
48
+ line-height: 1.5em;
49
+ }
50
+ h3,
51
+ h4,
52
+ h5,
53
+ h6 {
54
+ font-weight: 400;
55
+ color: #333;
56
+ line-height: 1.5em;
57
+ }
58
+ h3,
59
+ h4 {
60
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
61
+ }
62
+ h5,
63
+ h6 {
64
+ font-family: "Lucida Sans Typewriter", "Lucida Console", monaco, monospace;
65
+ }
66
+ p {
67
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
68
+ font-weight: 400;
69
+ font-size: 0.95em;
70
+ line-height: 1.75em;
71
+ color: #333;
72
+ }
73
+ article,
74
+ aside,
75
+ footer,
76
+ header,
77
+ nav,
78
+ section,
79
+ iframe {
80
+ display: block;
81
+ border: 0px solid;
82
+ }
83
+ hr {
84
+ border: 0.5px solid;
85
+ color: #dedede;
86
+ }
87
+ img {
88
+ width: 100%;
89
+ }
90
+ a {
91
+ color: #777;
92
+ background-color: transparent;
93
+ }
94
+ a:hover,
95
+ a:focus {
96
+ color: #454545;
97
+ text-decoration: none;
98
+ }
99
+ button:hover,
100
+ button:focus {
101
+ color: #454545;
102
+ outline-width: 0;
103
+ text-decoration: none;
104
+ }
105
+ blockquote {
106
+ margin: 0 0 5% 0;
107
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
108
+ padding: 2%;
109
+ border-left: 4px solid #eee;
110
+ }
111
+ ul {
112
+ list-style-type: circle;
113
+ }
114
+ li {
115
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
116
+ font-weight: 400;
117
+ line-height: 1.5em;
118
+ color: #333;
119
+ }
120
+ pre,
121
+ code {
122
+ background-color: #333;
123
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
124
+ line-height: 1rem;
125
+ font-weight: 400;
126
+ font-size: .8rem;
127
+ padding: 2px;
128
+ color: #ededed;
129
+ overflow: auto;
130
+ }
131
+ .mono {
132
+ font-family: "Lucida Sans Typewriter", "Lucida Console", monaco, monospace;
133
+ }
134
+ .pull-left {
135
+ float: left;
136
+ }
137
+ .pull-right {
138
+ float: right;
139
+ }
140
+ .btn-primary {
141
+ font-size: .9em;
142
+ text-align: center;
143
+ color: white;
144
+ background-color: #777;
145
+ border: 0px;
146
+ padding: 1.2%;
147
+ text-decoration: none;
148
+ outline: none;
149
+ }
150
+
151
+
152
+
153
+
154
+ /*--------------------------------*\
155
+ #PAGE-DEFAULT
156
+ \*--------------------------------*/
157
+ @media (min-width: 320px) {
158
+ #mini-about {
159
+ margin: 0em 0em 3em 0em;
160
+ }
161
+ #mini-about .sm-1-col h1 {
162
+ font-size: 2.1em;
163
+ display: inline-block;
164
+ }
165
+ #mini-about .sm-1-col p {
166
+ line-height: 1.9em;
167
+ font-size: 0.95em;
168
+ }
169
+ #mini-about img {
170
+ width: 20%;
171
+ }
172
+ .smaller {
173
+ font-size: 0.75em;
174
+ }
175
+ .main {
176
+ padding: 2.5%;
177
+ margin: 4%;
178
+
179
+ }
180
+ nav {
181
+ position: relative;
182
+ overflow: hidden;
183
+ background-color: #fffefd; /* just in case */
184
+ text-align: center;
185
+ width: 100%;
186
+ margin-top: 2.5%;
187
+ margin: 3px 0px;
188
+ border-bottom: 1px solid #dedede;
189
+ }
190
+ nav a {
191
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
192
+ text-decoration: none;
193
+ }
194
+ nav h1 {
195
+ font-size: 1.2em;
196
+ }
197
+ nav p {
198
+ font-size: .8em;
199
+ }
200
+ .top-headline-photo {
201
+ padding-bottom: 14%;
202
+ }
203
+ footer {
204
+ float: none;
205
+ text-align: center;
206
+ padding: 0;
207
+ top: 95vh;
208
+ width: 100%;
209
+ }
210
+ .sm-1-col {
211
+ width: 100%;
212
+ }
213
+ .mobile-hide {
214
+ display: none;
215
+ }
216
+ .small-mobile-hide {
217
+ display: none;
218
+ }
219
+ .mobile-only-show {
220
+ display: block;
221
+ }
222
+ .post-cta {
223
+ float: none;
224
+ width: 30%;
225
+ }
226
+ .social-sharing {
227
+ margin: 2% auto;
228
+ }
229
+ .social-sharing svg {
230
+ width: 8%;
231
+ }
232
+ }
233
+ @media (min-width: 768px) {
234
+ #mini-about .pull-left {
235
+ margin-bottom: -1%;
236
+ }
237
+ .md-2-col {
238
+ width: 48%;
239
+ }
240
+ .lg-onequarter-col {
241
+ width: 48%;
242
+ }
243
+ .lg-threequarter-col {
244
+ width: 48%;
245
+ }
246
+ .small-mobile-hide {
247
+ display: block;
248
+ }
249
+ .post-header-img {
250
+ padding-top: 10%;
251
+ }
252
+ .post-cta {
253
+ float: right;
254
+ }
255
+ .social-sharing svg {
256
+ width: 3%;
257
+ }
258
+ }
259
+ @media (min-width: 1060px) {
260
+ #mini-about {
261
+ margin: 0 0 4em 0;
262
+ }
263
+ .main {
264
+ padding: 2%;
265
+ margin: 0 5% 0 30%;
266
+ }
267
+ nav {
268
+ position: fixed;
269
+ padding: 2.5em;
270
+ text-align: left;
271
+ width: 18%;
272
+ margin: 0;
273
+ border-bottom: none;
274
+ }
275
+ nav h1 {
276
+ font-size: 1.7em;
277
+ }
278
+ nav p {
279
+ font-size: 1em;
280
+ }
281
+ footer {
282
+ float: left;
283
+ position: fixed;
284
+ top: 88vh;
285
+ padding: 2.5%;
286
+ width: auto;
287
+ }
288
+ .lg-2-col {
289
+ width: 48%;
290
+ }
291
+ .lg-onequarter-col {
292
+ width: 20%;
293
+ }
294
+ .lg-threequarter-col {
295
+ margin-left: 2.8%;
296
+ width: 75%;
297
+ }
298
+ .post-cta {
299
+ width: 40%;
300
+ }
301
+ .social-sharing svg {
302
+ width: 22%;
303
+ }
304
+ .social-sharing {
305
+ left: -15%;
306
+ margin: 0 auto;
307
+ position: absolute;
308
+ bottom: -0.05%;
309
+ width: 15%;
310
+ }
311
+ .mobile-hide {
312
+ display: block;
313
+ }
314
+ .small-mobile-hide {
315
+ display: block;
316
+ }
317
+ .mobile-only-show {
318
+ display: none;
319
+ }
320
+ }
321
+ .page-wrapper {
322
+ width: 100%;
323
+ position: relative;
324
+ z-index: 1
325
+ }
326
+ .inner-wrapper:after {
327
+ content: "";
328
+ display: block;
329
+ clear: both;
330
+ }
331
+ .page-wrapper .inner-wrapper {
332
+ width:100%;
333
+ overflow: auto;
334
+ z-index: auto;
335
+ }
336
+ footer p {
337
+ font-size: .6em;
338
+ }
339
+
340
+
341
+
342
+
343
+ /*--------------------------------*\
344
+ #POST-DEFAULT
345
+ \*--------------------------------*/
346
+ .post-preview {
347
+ border-bottom: 0.5px solid #ddd;
348
+ padding: 2.5% 0 2.5% 0;
349
+ }
350
+ .post-preview:after {
351
+ content: "";
352
+ display: table;
353
+ clear: both;
354
+ }
355
+ .pager {
356
+ margin: 0 auto;
357
+ }
358
+ .pager a {
359
+ text-decoration: none;
360
+ }
361
+ .pager button {
362
+ margin: 0 auto;
363
+ }
364
+ .post-header-img {
365
+ max-width: 250px;
366
+ max-height: 250px;
367
+ }
368
+ .social-sharing a {
369
+ text-decoration: none;
370
+ }
371
+
372
+
373
+
374
+
375
+ /*--------------------------------*\
376
+ #MISC
377
+ \*--------------------------------*/
378
+
379
+ .hidden {display: none;}
380
+ .inline-block {display: inline-block;}
381
+ .flex {display: flex;}
Binary file
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simpol-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Scott Mathson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-09-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-paginate
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-feed
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.9'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-sitemap
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-seo-tag
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.14'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.14'
97
+ description: Simpol Jekyll Theme, a content writer's best friend. Setup a Jekyll blog
98
+ and start writing, fast. Focus on the writing, the content.
99
+ email:
100
+ - simpol@scottmathson.com
101
+ executables: []
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - LICENSE
106
+ - README.md
107
+ - _includes/footer.html
108
+ - _includes/google-analytics.html
109
+ - _includes/head.html
110
+ - _includes/nav.html
111
+ - _includes/social-icons.html
112
+ - _layouts/default.html
113
+ - _layouts/page.html
114
+ - _layouts/post.html
115
+ - _posts/2017-04-16-writing-new-post.markdown
116
+ - assets/css/main.css
117
+ - assets/img/posts/header-img/placehold-400.png
118
+ - assets/img/posts/header-img/woman-typing-macbook.jpg
119
+ - assets/img/simpol-favicon.png
120
+ - assets/img/simpol-theme-square-writing-logo.png
121
+ homepage: https://simpoltheme.com
122
+ licenses:
123
+ - ISC
124
+ metadata: {}
125
+ post_install_message:
126
+ rdoc_options: []
127
+ require_paths:
128
+ - lib
129
+ required_ruby_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ">="
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ requirements: []
140
+ rubyforge_project:
141
+ rubygems_version: 2.6.11
142
+ signing_key:
143
+ specification_version: 4
144
+ summary: A minimal, clean, and open source Jekyll theme.
145
+ test_files: []