beautiful-jekyll-theme 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6f3503906bdea75f5ba73802f2e7686dcf03f480
4
+ data.tar.gz: 5b1d0cf083b4d826b38551ce919f188815c011a0
5
+ SHA512:
6
+ metadata.gz: 8ba853b02fb926ddeefbf5991ff21f73c7ad13473dc708a9a29d3d23271f3a7ba9edc3d569b60c0185cc85bd4e4c02dfb74f293b2f67833d5bd2ede41ae666ef
7
+ data.tar.gz: 3eca81f5af4c45464d068004c2f2569119dc0a1eda3606cba5346f262f9234f6c09126289505bd97a268004fe2d3b938de62fdda896f9559e902382383b855ba
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Dean Attali
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.
@@ -0,0 +1,261 @@
1
+ # Beautiful-Jekyll Theme (beautiful-jekyll-theme gem)
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/beautiful-jekyll-theme.svg)](https://badge.fury.io/rb/beautiful-jekyll-theme)
4
+ [![saythanks](http://i.imgur.com/L88apDa.png)](https://saythanks.io/to/daattali)
5
+
6
+ > *Copyright 2016 [Dean Attali](http://deanattali.com). Licensed under the MIT license.*
7
+
8
+ **Beautiful-Jekyll** is a ready-to-use Jekyll theme to help you create an awesome website quickly. Perfect for personal blogs or simple project websites, with a focus on responsive and clean design. You can look at [my personal website](http://deanattali.com) to see it in use, or see examples of websites other people created using this theme [here](https://github.com/daattali/beautiful-jekyll#showcased-users-success-stories).
9
+
10
+ If you need a bit of help or have comments, feel free to [contact me](http://deanattali.com/aboutme#contact). Even if you don't have anything important to say but found this useful, I'd love to [hear about it](http://deanattali.com/aboutme#contact). Lastly, if you like this theme, please consider [supporting me](https://www.paypal.me/daattali/20) if you want to make me extra happy. :)
11
+
12
+ ![Screenshot](./screenshot.png)
13
+
14
+ ## Prerequisites
15
+
16
+ To use this theme's gem, you need to first have a functioning Jekyll website. If you don't, there are many resources online for how to set up a Jekyll site. Here are the basic commands to get a minimal Jekyll site set up in Ubuntu:
17
+
18
+ ```
19
+ $ sudo apt-get install ruby ruby-dev make gcc
20
+ $ sudo gem install jekyll bundler
21
+ $ jekyll new ~/mysite
22
+ ```
23
+
24
+ ## Installation
25
+
26
+ To use the Beautiful-Jekyll theme, add this line to your Jekyll site's `Gemfile`:
27
+
28
+ ```ruby
29
+ gem "beautiful-jekyll-theme"
30
+ ```
31
+
32
+ Then add this line to your Jekyll site's `_config.yml`:
33
+
34
+ ```yaml
35
+ theme: beautiful-jekyll-theme
36
+ ```
37
+
38
+ And finally execute:
39
+
40
+ ```
41
+ $ bundle
42
+ ```
43
+
44
+ To preview your site, run `bundle exec jekyll serve` (optionally with the `--host 0.0.0.0` flag if needed) and open your browser at `http://localhost:4000`.
45
+
46
+ ## Usage
47
+
48
+ Using Beautiful-Jekyll is very simple, but you should take a few minutes to read through the features it supports to learn how to use it.
49
+
50
+ ### Adding content
51
+
52
+ You can now start adding pages to your site. Beautiful-Jekyll supports three layouts: `post`, `page`, and `minimal`. In order to use Beautiful-Jekyll's template, a page must have its `layout` parameter set to one of these options in the YAML.
53
+
54
+ Any blog posts (pages under the `_posts` directory) should use the `post` layout, while most other pages should use the `page` layout. You can use the `minimal` layout if you want a page with minimal styling, without the bulky navigation bar and footer.
55
+
56
+ Instead of remembering to manually add the layout parameter to every page's YAML, I recommend you add the following lines to your `_config.yml` so that all blog posts will automatically have layout `post` and all other pages will have layout `page`:
57
+
58
+ ```yaml
59
+ defaults:
60
+ -
61
+ scope:
62
+ path: ""
63
+ type: "posts"
64
+ values:
65
+ layout: "post"
66
+ -
67
+ scope:
68
+ path: ""
69
+ values:
70
+ layout: "page"
71
+ ```
72
+
73
+ ### Adding an index page
74
+
75
+ Feel free to create the index page (homepage) of your site however you'd like. If you want to have an index page similar to the one at [deanattali.com](http://deanattali.com), then create `index.html` as follows:
76
+
77
+ ```html
78
+ ---
79
+ layout: page
80
+ title: My Website
81
+ subtitle: Some short description of my site
82
+ ---
83
+
84
+ <div class="posts-list">
85
+ {% for post in paginator.posts %}
86
+ <article class="post-preview">
87
+ <a href="{{ post.url }}">
88
+ <h2 class="post-title">{{ post.title }}</h2>
89
+ {% if post.subtitle %}
90
+ <h3 class="post-subtitle">{{ post.subtitle }}</h3>
91
+ {% endif %}
92
+ </a>
93
+
94
+ <p class="post-meta">
95
+ Posted on {{ post.date | date: "%B %-d, %Y" }}
96
+ </p>
97
+
98
+ <div class="post-entry">
99
+ {{ post.excerpt | strip_html | xml_escape | truncatewords: 50 }}
100
+ {% assign excerpt_word_count = post.excerpt | number_of_words %}
101
+ {% if post.content != post.excerpt or excerpt_word_count > 50 %}
102
+ <a href="{{ post.url }}" class="post-read-more">[Read&nbsp;More]</a>
103
+ {% endif %}
104
+ </div>
105
+
106
+ {% if post.tags.size > 0 %}
107
+ <div class="blog-tags">
108
+ Tags:
109
+ {{ post.tags | join: ", " }}
110
+ </div>
111
+ {% endif %}
112
+
113
+ </article>
114
+ {% endfor %}
115
+ </div>
116
+
117
+ {% if paginator.total_pages > 1 %}
118
+ <ul class="pager main-pager">
119
+ {% if paginator.previous_page %}
120
+ <li class="previous">
121
+ <a href="{{ paginator.previous_page_path | replace: '//', '/' }}">&larr; Newer Posts</a>
122
+ </li>
123
+ {% endif %}
124
+ {% if paginator.next_page %}
125
+ <li class="next">
126
+ <a href="{{ paginator.next_page_path | replace: '//', '/' }}">Older Posts &rarr;</a>
127
+ </li>
128
+ {% endif %}
129
+ </ul>
130
+ {% endif %}
131
+ ```
132
+
133
+ You'll also need to add these lines to your `_config.yml` because the code above uses pagination:
134
+
135
+ ```yaml
136
+ paginate: 5
137
+ gems:
138
+ - jekyll-paginate
139
+ ```
140
+
141
+ Make sure there is no `index.md` file (if there is one, then delete it).
142
+
143
+ ### Creating a navigation bar
144
+
145
+ Add these lines to your `_config.yml` file to get a demo navigation bar:
146
+
147
+ ```yaml
148
+ navbar-links:
149
+ Home: ""
150
+ About Me: "aboutme"
151
+ Resources:
152
+ - Beautiful Jekyll: "http://deanattali.com/beautiful-jekyll/"
153
+ - Learn markdown: "http://www.markdowntutorial.com/"
154
+ - GitHub Pages: "https://pages.github.com/"
155
+ Author's home: "http://deanattali.com"
156
+ ```
157
+
158
+ Change these values to match the pages on your site. Each menu item is composed of a `key:value` pair, where the `key` is the text that shows up in the navigation bar, and `value` is the URL to link to. The URL can either be the name of a page on your site (eg. `""` will go to your homepage, `aboutme` will go to a page called `aboutme` on your site), or a URL to an external site beginning in `http`. If you want to define sub-menus, use the format that the `Resources` menu is using in the sample code above.
159
+
160
+ #### Displaying an image in the navigation bar
161
+
162
+ You can add an image to the navigation bar by defining the `avatar` parameter in `_config.yml`. The image should be a square (width = height).
163
+
164
+ ```yaml
165
+ avatar: "/path/to/image.png"
166
+ ```
167
+
168
+ ### Add your name/email/social media links to the footer
169
+
170
+ You can add contact information and social media links in the footer. They will be displayed as nice little logos, to give the footer a clean feel. Add the following to your `_config.yml` file:
171
+
172
+ ```yaml
173
+ author:
174
+ name: Some Person
175
+ email: "youremail@domain.com"
176
+ facebook: yourname # eg. daattali
177
+ github: yourname # eg. daattali
178
+ twitter: yourname # eg. daattali
179
+ reddit: yourname # eg. daattali
180
+ google-plus: +yourname # eg. +DeanAttali or 109424658772469020925
181
+ linkedin: yourname # eg. daattali
182
+ xing: yourname # eg. daattali
183
+ stackoverflow: yourlink # eg. "3943160/daattali"
184
+ snapchat: yourname # eg. daattali
185
+ instagram: yourname # eg. daattali
186
+ youtube: yourlink # eg. user/daattali or channel/daattali
187
+ spotify: yourname # eg. daattali
188
+ ```
189
+
190
+ Remove the lines that you don't want to display in the footer, and change `yourname` to the correct values in the links you want to keep.
191
+
192
+ #### Add your website's name to the footer
193
+
194
+ After all the contact info links, you can also add the name of your website by defining the` url-pretty` parameter in `_config.yml`:
195
+
196
+ ```yaml
197
+ url-pretty: "MyWebsite.com"
198
+ ```
199
+
200
+ ### Buttons for sharing blog posts on social media
201
+
202
+ By default, every blog post will have buttons at the bottom for sharing the page on Twitter, Facebook, LinkedIn, and Google+. If you want to disable these buttons, add these lines to your `_config.yml`:
203
+
204
+ ```yaml
205
+ share-links-active:
206
+ twitter: false
207
+ facebook: false
208
+ google: false
209
+ linkedin: false
210
+ ```
211
+
212
+ These settings will remove all four buttons. You can use `true` instead of `false` for any buttons that you want to keep.
213
+
214
+ ### Allowing users to leave comments
215
+
216
+ If you want to enable comments on your site, Beautiful-Jekyll supports the [Disqus](https://disqus.com/) comments plugin. To use it, simply sign up to Disqus and add your Disqus shortname (**not** the userid) to the `disqus` parameter in `_config.yml`:
217
+
218
+ ```yaml
219
+ disqus: yourshortname
220
+ ```
221
+
222
+ ### Adding Google Analytics to track page views
223
+
224
+ Beautiful-Jekyll lets you easily add Google Analytics to all your pages. This will allow you to track all sorts of information about visits to your website, such as how many times each page is viewed and where (geographically) your users come from. To add Google Analytics, simply sign up to [Google Analytics](http://www.google.com/analytics/) to obtain your Google Tracking ID, and add this tracking ID to the `google_analytics` parameter in `_config.yml`:
225
+
226
+ ```yaml
227
+ google_analytics: yourid
228
+ ```
229
+
230
+ ### YAML parameter you can use to personalize each page
231
+
232
+ These are all the parameters you can place inside a page's YAML front matter that Beautiful-Jekyll supports.
233
+
234
+ Parameter | Description
235
+ ----------- | -----------
236
+ layout | What type of page this is (default is `blog` for blog posts and `page` for other pages. You can use `minimal` if you don't want a header and footer).
237
+ title | Page or blog post title.
238
+ subtitle | Short description of page or blog post that goes under the title.
239
+ bigimg | Include a large full-width image at the top of the page. You can either give the path to a single image, or provide a list of images to cycle through (see [my personal website](http://deanattali.com/) as an example).
240
+ comments | Only applicable if the `disqus` parameter is set in the `_config.yml` file. All blog posts automatically have comments enabled. To enable comments on a specific page, use `comments: true`; to turn comments off for a specific blog post, use `comments: false`.
241
+ social-share | If you don't want to show buttons to share a blog post on social media, use `social-share: false` (this feature is turned on by default).
242
+ share-img | If you want to specify an image to use when sharing the page on Facebook or Twitter, then provide the image's full URL here.
243
+ js | List of local JavaScript files to include in the page (eg. `/js/mypage.js`)
244
+ ext-js | List of external JavaScript files to include in the page (eg. `//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js`)
245
+ css | List of local CSS files to include in the page
246
+ ex-css | List of external CSS files to include in the page
247
+ googlefonts | List of Google fonts to include in the page (eg. `["Monoton", "Lobster"]`)
248
+
249
+ ## Contributions
250
+
251
+ If you find anything wrong or would like to contribute in any way, feel free to submit a pull request/open an issue [on GitHub](https://github.com/daattali/beautiful-jekyll), or [send me a message](http://deanattali.com/contact).
252
+
253
+ Thank you to [all contributors](https://github.com/daattali/beautiful-jekyll/graphs/contributors). Special thanks to the following people with non-trivial contributions (in chronological order): [@hristoyankov](https://github.com/hristoyankov), [@jamesonzimmer](https://github.com/jamesonzimmer), [@XNerv](https://github.com/XNerv), [@epwalsh](https://github.com/epwalsh), [@rtlee9](https://github.com/rtlee9).
254
+
255
+ ## Credits
256
+
257
+ This template was not made entirely from scratch. I would like to give special thanks to:
258
+ - [Barry Clark](https://github.com/barryclark) and his project [Jekyll Now](https://github.com/barryclark/jekyll-now), from whom I've taken several ideas and code snippets, as well as some documenation tips.
259
+ - [Iron Summit Media](https://github.com/IronSummitMedia) and their project [Bootstrap Clean Blog](https://github.com/IronSummitMedia/startbootstrap-clean-blog), from which I've used some design ideas and some of the templating code for posts and pagination.
260
+
261
+ I'd also like to thank [Dr. Jekyll's Themes](http://drjekyllthemes.github.io/), [Jekyll Themes](http://jekyllthemes.org/), and another [Jekyll Themes](http://jekyllrc.github.io/jekyllthemes/) for featuring Beautiful Jekyll in their Jekyll theme directories.
@@ -0,0 +1,17 @@
1
+ {% if site.disqus %}
2
+ <div class="comments">
3
+ <div id="disqus_thread"></div>
4
+ <script type="text/javascript">
5
+ var disqus_shortname = '{{ site.disqus }}';
6
+ /* ensure that pages with query string get the same discussion */
7
+ var url_parts = window.location.href.split("?");
8
+ var disqus_url = url_parts[0];
9
+ (function() {
10
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
11
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
12
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
13
+ })();
14
+ </script>
15
+ <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
16
+ </div>
17
+ {% endif %}
@@ -0,0 +1,19 @@
1
+ <footer class="footer-min">
2
+ <div class="text-muted">
3
+ {{ site.author.name }}
4
+ &nbsp;&nbsp;&bull;&nbsp;&nbsp;
5
+ {% if page.date %}
6
+ {{ page.date }}
7
+ {% else %}
8
+ {{ site.time | date: '%Y' }}
9
+ {% endif %}
10
+ &nbsp;&nbsp;&bull;&nbsp;&nbsp;
11
+
12
+ {% if site.url-pretty %}
13
+ <a href="{{ site.url }}">{{ site.url-pretty }}</a>
14
+ &nbsp;&nbsp;&bull;&nbsp;&nbsp;
15
+ {% endif %}
16
+
17
+ Theme by <a href="http://deanattali.com/beautiful-jekyll/">beautiful-jekyll</a>
18
+ </div>
19
+ </footer>
@@ -0,0 +1,34 @@
1
+ {% if layout.common-ext-js %}
2
+ {% for js in layout.common-ext-js %}
3
+ <script src="{{ js }}"></script>
4
+ {% endfor %}
5
+ {% endif %}
6
+
7
+ {% if page.ext-js %}
8
+ {% for js in page.ext-js %}
9
+ <script src="{{ js }}"></script>
10
+ {% endfor %}
11
+ {% endif %}
12
+
13
+ {% if page.js %}
14
+ {% for js in page.js %}
15
+ <script src="{{ js | replace: '//', '/' }}"></script>
16
+ {% endfor %}
17
+ {% endif %}
18
+
19
+ {% if layout.common-js %}
20
+ {% for js in layout.common-js %}
21
+ <!-- doing something a bit funky here because I want to be careful not to include JQuery twice! -->
22
+ {% if js contains 'jquery' %}
23
+ <script>
24
+ if (typeof jQuery == 'undefined') {
25
+ document.write('<script src="{{ js | replace: "//", "/" }}"></scr' + 'ipt>');
26
+ }
27
+ </script>
28
+ {% else %}
29
+ <script src="{{ js | replace: '//', '/' }}"></script>
30
+ {% endif %}
31
+ {% endfor %}
32
+ {% endif %}
33
+
34
+ {% include google_analytics.html %}
@@ -0,0 +1,158 @@
1
+ <footer>
2
+ <div class="container beautiful-jekyll-footer">
3
+ <div class="row">
4
+ <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
5
+ <ul class="list-inline text-center footer-links">
6
+ {% if site.author.facebook %}
7
+ <li>
8
+ <a href="https://www.facebook.com/{{ site.author.facebook }}" title="Facebook">
9
+ <span class="fa-stack fa-lg">
10
+ <i class="fa fa-circle fa-stack-2x"></i>
11
+ <i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
12
+ </span>
13
+ </a>
14
+ </li>
15
+ {% endif %}
16
+ {% if site.author.github %}
17
+ <li>
18
+ <a href="https://github.com/{{ site.author.github }}" title="GitHub">
19
+ <span class="fa-stack fa-lg">
20
+ <i class="fa fa-circle fa-stack-2x"></i>
21
+ <i class="fa fa-github fa-stack-1x fa-inverse"></i>
22
+ </span>
23
+ </a>
24
+ </li>
25
+ {% endif %}
26
+ {% if site.author.twitter %}
27
+ <li>
28
+ <a href="https://twitter.com/{{ site.author.twitter }}" title="Twitter">
29
+ <span class="fa-stack fa-lg">
30
+ <i class="fa fa-circle fa-stack-2x"></i>
31
+ <i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
32
+ </span>
33
+ </a>
34
+ </li>
35
+ {% endif %}
36
+ {% if site.author.reddit %}
37
+ <li>
38
+ <a href="https://reddit.com/u/{{ site.author.reddit }}" title="Reddit">
39
+ <span class="fa-stack fa-lg">
40
+ <i class="fa fa-circle fa-stack-2x"></i>
41
+ <i class="fa fa-reddit fa-stack-1x fa-inverse"></i>
42
+ </span>
43
+ </a>
44
+ </li>
45
+ {% endif %}
46
+ {% if site.author.google-plus %}
47
+ <li>
48
+ <a href="https://plus.google.com/{{ site.author.google-plus }}" title="Google+">
49
+ <span class="fa-stack fa-lg">
50
+ <i class="fa fa-circle fa-stack-2x"></i>
51
+ <i class="fa fa-google-plus fa-stack-1x fa-inverse"></i>
52
+ </span>
53
+ </a>
54
+ </li>
55
+ {% endif %}
56
+ {% if site.author.email %}
57
+ <li>
58
+ <a href="mailto:{{ site.author.email }}" title="Email me">
59
+ <span class="fa-stack fa-lg">
60
+ <i class="fa fa-circle fa-stack-2x"></i>
61
+ <i class="fa fa-envelope fa-stack-1x fa-inverse"></i>
62
+ </span>
63
+ </a>
64
+ </li>
65
+ {% endif %}
66
+ {% if site.author.linkedin %}
67
+ <li>
68
+ <a href="https://linkedin.com/in/{{ site.author.linkedin }}" title="LinkedIn">
69
+ <span class="fa-stack fa-lg">
70
+ <i class="fa fa-circle fa-stack-2x"></i>
71
+ <i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
72
+ </span>
73
+ </a>
74
+ </li>
75
+ {% endif %}
76
+ {% if site.author.xing %}
77
+ <li>
78
+ <a href="https://www.xing.com/profile/{{ site.author.xing }}" title="Xing">
79
+ <span class="fa-stack fa-lg">
80
+ <i class="fa fa-circle fa-stack-2x"></i>
81
+ <i class="fa fa-xing fa-stack-1x fa-inverse"></i>
82
+ </span>
83
+ </a>
84
+ </li>
85
+ {% endif %}
86
+ {% if site.author.stackoverflow %}
87
+ <li>
88
+ <a href="https://stackoverflow.com/users/{{ site.author.stackoverflow }}" title="StackOverflow">
89
+ <span class="fa-stack fa-lg">
90
+ <i class="fa fa-circle fa-stack-2x"></i>
91
+ <i class="fa fa-stack-overflow fa-stack-1x fa-inverse"></i>
92
+ </span>
93
+ </a>
94
+ </li>
95
+ {% endif %}
96
+ {% if site.author.snapchat %}
97
+ <li>
98
+ <a href="https://www.snapchat.com/add/{{ site.author.snapchat }}" title="Snapchat">
99
+ <span class="fa-stack fa-lg">
100
+ <i class="fa fa-circle fa-stack-2x"></i>
101
+ <i class="fa fa-snapchat-ghost fa-stack-1x fa-inverse"></i>
102
+ </span>
103
+ </a>
104
+ </li>
105
+ {% endif %}
106
+ {% if site.author.instagram %}
107
+ <li>
108
+ <a href="https://www.instagram.com/{{ site.author.instagram }}" title="Instagram">
109
+ <span class="fa-stack fa-lg">
110
+ <i class="fa fa-circle fa-stack-2x"></i>
111
+ <i class="fa fa-instagram fa-stack-1x fa-inverse"></i>
112
+ </span>
113
+ </a>
114
+ </li>
115
+ {% endif %}
116
+ {% if site.author.youtube %}
117
+ <li>
118
+ <a href="https://www.youtube.com/{{ site.author.youtube }}" title="YouTube">
119
+ <span class="fa-stack fa-lg">
120
+ <i class="fa fa-circle fa-stack-2x"></i>
121
+ <i class="fa fa-youtube fa-stack-1x fa-inverse"></i>
122
+ </span>
123
+ </a>
124
+ </li>
125
+ {% endif %}
126
+ {% if site.author.spotify %}
127
+ <li>
128
+ <a href="https://open.spotify.com/user/{{ site.author.spotify }}" title="Spotify">
129
+ <span class="fa-stack fa-lg">
130
+ <i class="fa fa-circle fa-stack-2x"></i>
131
+ <i class="fa fa-spotify fa-stack-1x fa-inverse"></i>
132
+ </span>
133
+ </a>
134
+ </li>
135
+ {% endif %}
136
+ </ul>
137
+ <p class="copyright text-muted">
138
+ {% if site.author.name %}
139
+ {{ site.author.name }}
140
+ &nbsp;&bull;&nbsp;
141
+ {% endif %}
142
+
143
+ {{ site.time | date: '%Y' }}
144
+
145
+ {% if site.url-pretty %}
146
+ &nbsp;&bull;&nbsp;
147
+ <a href="{{ site.url }}">{{ site.url-pretty }}</a>
148
+ {% endif %}
149
+ </p>
150
+ <!-- Please don't remove this, keep my open source work credited :) -->
151
+ <p class="theme-by text-muted">
152
+ Theme by
153
+ <a href="http://deanattali.com/beautiful-jekyll/">beautiful-jekyll</a>
154
+ </p>
155
+ </div>
156
+ </div>
157
+ </div>
158
+ </footer>