lagrange 4.0.0

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
+ SHA256:
3
+ metadata.gz: 33ce3d58591d1ac26506e2d4bca6a92d95aa963a4f0ecff30bd50eb74e7cf7fe
4
+ data.tar.gz: c36a8be9a9da290179e121f6a099864400503b37c9273a557ad5f0db636d9227
5
+ SHA512:
6
+ metadata.gz: d501f419f2ba5353ff8d2e8fe81bb8ac8c38a07e9f9cbcccc8770a3a0ca52a1aaa54971da913141baf95287cb1acc1159f524a332949e082221b4782807c33bf
7
+ data.tar.gz: e3b507ade478e3f196194d3fe4bc7285801007e8543cb5a016b29802f89d3e569ad1b13c075d3668e761cec5b512c8cc8e70543dd12bcabf70dc81dc805fd8c0
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Paul Le
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,284 @@
1
+ # Lagrange
2
+
3
+ Lagrange is a minimalist Jekyll theme for running a personal blog or site for free through [Github Pages](https://pages.github.com/), or on your own server. Everything that you will ever need to know about this Jekyll theme is included in the README below, which you can also find in [the demo site](https://lenpaul.github.io/Lagrange/). For a guide on how to start a blog or personal website using Jekyll and GitHub Pages, please check out [this article](https://hungryminds.ca/how-to-start-a-blog-or-personal-website-using-jekyll-and-github-pages/).
4
+
5
+ ![alt text](https://user-images.githubusercontent.com/8409329/32631384-17107870-c56e-11e7-932f-deeb7c12e4db.png "Lagrange Demo Image")
6
+
7
+ ## Notable features
8
+
9
+ * Compatible with GitHub Pages.
10
+
11
+ * Support for Jekyll's built-in Sass/SCSS preprocessor and data files for making customizing easier.
12
+
13
+ * [Google Analytics](https://www.google.com/analytics/) support.
14
+
15
+ * Commenting support powered by [Disqus](https://disqus.com/).
16
+
17
+ * Optimized for search engines.
18
+
19
+ * LaTeX support through [MathJax](https://www.mathjax.org/).
20
+
21
+ ## Table of Contents
22
+
23
+ 1. [Introduction](#introduction)
24
+ 1. [What is Jekyll](#what-is-jekyll)
25
+ 2. [Never Used Jeykll Before?](#never-used-jekyll-before)
26
+ 2. [Installation](#installation)
27
+ 1. [GitHub Pages Installation](#github-pages-installation)
28
+ 2. [Local Installation](#local-installation)
29
+ 3. [Directory Structure](#directory-structure)
30
+ 4. [Starting From Scratch](#starting-from-scratch)
31
+ 3. [Configuration](#configuration)
32
+ 1. [Sample Posts](#sample-posts)
33
+ 2. [Site Variables](#site-variables)
34
+ 3. [Adding Menu Pages](#adding-menu-pages)
35
+ 4. [Posts](#posts)
36
+ 5. [Layouts](#layouts)
37
+ 6. [YAML Front Block Matter](#yaml-front-block-matter)
38
+ 4. [Features](#features)
39
+ 1. [Design Considerations](#design-considerations)
40
+ 2. [Disqus](#disqus)
41
+ 3. [Google Analytics](#google-analytics)
42
+ 4. [RSS Feeds](#rss-feeds)
43
+ 5. [Social Media Icons](#social-media-icons)
44
+ 6. [MathJax](#mathjax)
45
+ 7. [Syntax Highlighting](#syntax-highlighting)
46
+ 8. [Markdown](#markdown)
47
+ 5. [Everything Else](#everything-else)
48
+ 6. [Contributing](#Contributing)
49
+ 7. [Questions?](#questions)
50
+ 8. [Credits](#credits)
51
+ 9. [License](#license)
52
+
53
+ ## Introduction
54
+
55
+ Lagrange is a Jekyll theme that was built to be 100% compatible with [GitHub Pages](https://pages.github.com/). If you are unfamiliar with GitHub Pages, you can check out [their documentation](https://help.github.com/categories/github-pages-basics/) for more information. [Jonathan McGlone's guide](http://jmcglone.com/guides/github-pages/) on creating and hosting a personal site on GitHub is also a good resource.
56
+
57
+ ### What is Jekyll?
58
+
59
+ Jekyll is a simple, blog-aware, static site generator for personal, project, or organization sites. Basically, Jekyll takes your page content along with template files and produces a complete website. For more information, visit the [official Jekyll site](https://jekyllrb.com/docs/home/) for their documentation. Codecademy also offers a great course on [how to deploy a Jekyll site](https://www.codecademy.com/learn/deploy-a-website) for complete beginners.
60
+
61
+ ### Never Used Jekyll Before?
62
+
63
+ The beauty of hosting your website on GitHub is that you don't have to actually have Jekyll installed on your computer. Everything can be done through the GitHub code editor, with minimal knowledge of how to use Jekyll or the command line. All you have to do is add your posts to the `_posts` directory and edit the `_config.yml` file to change the site settings. With some rudimentary knowledge of HTML and CSS, you can even modify the site to your liking. This can all be done through the GitHub code editor, which acts like a content management system (CMS).
64
+
65
+ ## Installation
66
+
67
+ ### GitHub Pages Installation
68
+
69
+ To start using Jekyll right away with GitHub Pages, [fork the Lagrange repository on GitHub](https://github.com/LeNPaul/Lagrange/fork). From there, you can rename your repository to `USERNAME.github.io`, where `USERNAME` is your GitHub username, and edit the `settings.yml` file in the `_data` folder to your liking. Ensure that you have a branch named `gh-pages`. Your website should be ready immediately at 'http://USERNAME.github.io'. Note: if you are hosting several sites under the same GitHub username, then you will have to use [Project Pages instead of User Pages](https://help.github.com/articles/user-organization-and-project-pages/) - just change the repository name to something other than 'http://USERNAME.github.io'.
70
+
71
+ Head over to the `_posts` directory to view all the posts that are currently on the website, and to see examples of what post files generally look like. You can simply just duplicate the template post and start adding your own content.
72
+
73
+ ### Local Installation
74
+
75
+ For a full local installation of Lagrange, [download your own copy of Lagrange](https://github.com/LeNPaul/Lagrange/archive/gh-pages.zip) and unzip it into it's own directory. From there, open up your favorite command line tool, enter `bundle install`, and then enter `jekyll serve`. Your site should be up and running locally at [http://localhost:4000](http://localhost:4000).
76
+
77
+ ### Directory Structure
78
+
79
+ If you are familiar with Jekyll, then the Lagrange directory structure shouldn't be too difficult to navigate. The following some highlights of the differences you might notice between the default directory structure. More information on what these folders and files do can be found in the [Jekyll documentation site](https://jekyllrb.com/docs/structure/).
80
+
81
+ ```bash
82
+ Lagrange/
83
+ ├── _data # Data files
84
+ | └── settings.yml # Theme settings and custom text
85
+ ├── _includes # Theme includes
86
+ ├── _layouts # Theme layouts (see below for details)
87
+ ├── _posts # Where all your posts will go
88
+ ├── assets # Style sheets and images are found here
89
+ | ├── css # Style sheets go here
90
+ | | └── main.css # Main CSS file
91
+ | | └── syntax.css # Style sheet for code syntax highlighting
92
+ | └── img # Images go here
93
+ ├── menu # Menu pages
94
+ ├── _config.yml # Site build settings
95
+ ├── Gemfile # Ruby Gemfile for managing Jekyll plugins
96
+ ├── index.md # Home page
97
+ ├── LICENSE.md # License for this theme
98
+ ├── README.md # Includes all of the documentation for this theme
99
+ └── rss-feed.xml # Generates RSS 2.0 file which Jekyll points to
100
+ ```
101
+
102
+ ### Starting From Scratch
103
+
104
+ To completely start from scratch, simply delete all the files in the `_posts`, `assets/img`, and `menu` folder, and add your own content. You may also replace the `README.md` file with your own README. Everything in the `_data` folder and `_config.yml` file can be edited to suit your needs. You may also change the `favicon.ico` file to your own favicon.
105
+
106
+ ## Configuration
107
+
108
+ ### Sample Posts
109
+
110
+ Visit the [the demo site](https://lenpaul.github.io/Lagrange/) to find sample posts that show what different types of text formatting look like. You can find these posts in the `_posts` folder, which show what the best practices for setting up your own site are.
111
+
112
+ ### Site Variables
113
+
114
+ To change site build settings, edit the `_config.yml` file found in the root of your repository, which you can tweak however you like. More information on configuration settings and plugins can be found on [the Jekyll documentation site](https://jekyllrb.com/docs/configuration/). This is also where you will be able to customize the title, description, and the author/owner of your site.
115
+
116
+ If you are hosting your site on GitHub Pages, then committing a change to the `_config.yml` file will force a rebuild of your site with Jekyll. Any changes made should be viewable soon after. If you are hosting your site locally, then you must run `jekyll serve` again for the changes to take place.
117
+
118
+ In the `settings.yml` file found in the `_data` folder, you will be able to customize your site settings, such as setting Disqus comments, Google Analytics, what shows up in your menu, and social media information.
119
+
120
+ ### Adding Menu Pages
121
+
122
+ The menu pages are found in the `menu` folder in the root directory, and can be added to your menu in the `settings.yml` file.
123
+
124
+ ### Posts
125
+
126
+ You will find example posts in your `_posts` directory. Go ahead and edit any post and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
127
+
128
+ To add new posts, simply add a file in the `_posts` directory that follows the convention of `YYYY-MM-DD-name-of-post.md` and includes the necessary front matter. Take a look at any sample post to get an idea about how it works. If you already have a website built with Jekyll, simply copy over your posts to migrate to Lagrange.
129
+
130
+ ### Layouts
131
+
132
+ There are two main layout options that are included with Lagrange: post and page. Layouts are specified through the [YAML front block matter](https://jekyllrb.com/docs/frontmatter/). Any file that contains a YAML front block matter will be processed by Jekyll. For example:
133
+
134
+ ```
135
+ ---
136
+ layout: post
137
+ title: "Example Post"
138
+ ---
139
+ ```
140
+
141
+ Examples of what posts looks like can be found in the `_posts` directory, which includes this post you are reading right now. Posts are the basic blog post layout, which includes a header image, post content, author name, date published, social media sharing links, and related posts.
142
+
143
+ Pages are essentially the post layout without any of the extra features of the posts layout. An example of what pages look like can be found at the [About](https://lenpaul.github.io/Lagrange/menu/about.html) and [Contacts](https://lenpaul.github.io/Lagrange/menu/contact.html).
144
+
145
+ In addition to the two main layout options above, there are also custom layouts that have been created for the [home page](https://lenpaul.github.io/Lagrange/) and the [archives page](https://lenpaul.github.io/Lagrange/menu/writing.html). These are simply just page layouts with some [Liquid template code](https://shopify.github.io/liquid/). Check out the `index.html` file in the root directory for what the code looks like.
146
+
147
+ ### YAML Front Block Matter
148
+
149
+ The recommended YAML front block is:
150
+
151
+ ```
152
+ ---
153
+ layout:
154
+ title:
155
+ author:
156
+ categories:
157
+ tags: []
158
+ image:
159
+ ---
160
+ ```
161
+
162
+ `layout` specifies which layout to use, `title` is the page or post title, `categories` can be used to better organize your posts, `tags` are used when generating related posts based on the topic of the post, and `image` specifies which images to use. Have a look at some posts in the `_posts` directory to see how these variables are set.
163
+
164
+ ## Features
165
+
166
+ ### Design Considerations
167
+
168
+ Lagrange was designed to be a minimalist theme in order for the focus to remain on your content. For example, links are signified mainly through an underline text-decoration, in order to maximize the perceived affordance of clickability (I originally just wanted to make the links a darker shade of grey).
169
+
170
+ ### Disqus
171
+
172
+ Lagrange supports comments at the end of posts through [Disqus](https://disqus.com/). In order to activate Disqus commenting, set `disqus.comments` to true in the `_data/settings.yml` file. If you do not have a Disqus account already, you will have to set one up, and create a profile for your website. You will be given a `disqus_shortname` that will be used to generate the appropriate comments sections for your site. More information on [how to set up Disqus](http://www.perfectlyrandom.org/2014/06/29/adding-disqus-to-your-jekyll-powered-github-pages/).
173
+
174
+ ### Google Analytics
175
+
176
+ It is possible to track your site statistics through [Google Analytics](https://www.google.com/analytics/). Similar to Disqus, you will have to create an account for Google Analytics, and enter the correct Google ID for your site under `google-ID` in the `settings.yml` file. More information on [how to set up Google Analytics](https://michaelsoolee.com/google-analytics-jekyll/). Note: If you are not using Google Analytics, please change `google-ID` to an empty string.
177
+
178
+ ### RSS Feeds
179
+
180
+ Atom is supported by default through [jekyll-feed](https://github.com/jekyll/jekyll-feed). With jekyll-feed, you can set configuration variables such as 'title', 'description', and 'author', in the `_config.yml` file.
181
+
182
+ RSS 2.0 is also supported through [RSS auto-discovery](http://www.rssboard.org/rss-autodiscovery). The `rss-feed.xml` file (based on the template found at [jekyll-rss-feeds](https://github.com/snaptortoise/jekyll-rss-feeds)) that the feed path points to when using RSS 2.0 is automatically generated based on the appropriate configuration variables found in `_data/settings.yml`.
183
+
184
+ To use RSS 2.0, ensure the following is done:
185
+
186
+ * Uncomment the last two lines in the `_config.yml` file.
187
+
188
+ * In `_data/settings.yml`, under 'social', comment out the rss-square that points to `feed.xml`, and uncomment the rss-square that points to `rss-feed.xml`.
189
+
190
+ * In `_includes/head.html`, comment out `{% feed_meta %}` and uncomment the line under the RSS 2.0 comment.
191
+
192
+ ### Social Media Icons
193
+
194
+ All social media icons are courtesy of [Font Awesome](http://fontawesome.io/). You can change which icons appear, as well as the account that they link to, in the `settings.yml` file in the `_data` folder.
195
+
196
+ ### MathJax
197
+
198
+ Lagrange comes out of the box with [MathJax](https://www.mathjax.org/), which allows you to display mathematical equations in your posts through the use of [LaTeX](http://www.andy-roberts.net/writing/latex/mathematics_1).
199
+
200
+ ### Syntax Highlighting
201
+
202
+ Lagrange provides syntax highlighting through [fenced code blocks](https://help.github.com/articles/creating-and-highlighting-code-blocks/). Syntax highlighting allows you to display source code in different colors and fonts depending on what programming language is being displayed. You can find the full list of supported programming languages [here](https://github.com/jneen/rouge/wiki/List-of-supported-languages-and-lexers). Another option is to embed your code through [Gist](https://en.support.wordpress.com/gist/).
203
+
204
+ ### Markdown
205
+
206
+ As always, Jekyll offers support for GitHub Flavored Markdown, which allows you to format your posts using the [Markdown syntax](https://guides.github.com/features/mastering-markdown/). Examples of these text formatting features can be seen below. You can find this post in the `_posts` directory as well as the `README.md` file.
207
+
208
+ ## Everything Else
209
+
210
+ Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
211
+
212
+ [jekyll-docs]: http://jekyllrb.com/docs/home
213
+ [jekyll-gh]: https://github.com/jekyll/jekyll
214
+ [jekyll-talk]: https://talk.jekyllrb.com/
215
+
216
+ ## Contributing
217
+
218
+ If you would like to make a feature request, or report a bug or typo in the documentation, then please [submit a GitHub issue](https://github.com/LeNPaul/Lagrange/issues/new). If you would like to make a contribution, then feel free to [submit a pull request](https://help.github.com/articles/about-pull-requests/) - as a bonus, I will credit all contributors below! If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
219
+
220
+ Lagrange has been designed as a base for users to customize and fit to their own unique needs. Please keep this in mind when requesting features and/or submitting pull requests. Some examples of changes that I would love to see are things that would make the site easier to use, or better ways of doing things. Please avoid changes that do not benefit the majority of users.
221
+
222
+ ## Questions?
223
+
224
+ This theme is completely free and open source software. You may use it however you want, as it is distributed under the [MIT License](http://choosealicense.com/licenses/mit/). If you are having any problems, any questions or suggestions, feel free to [tweet at me](https://twitter.com/intent/tweet?text=My%question%about%Lagrange%is:%&via=paululele), or [file a GitHub issue](https://github.com/lenpaul/lagrange/issues/new).
225
+
226
+ ## Credits
227
+
228
+ ### Creator
229
+
230
+ #### Paul Le
231
+
232
+ * [www.lenpaul.com](http://lenpaul.com)
233
+
234
+ * [Twitter](https://twitter.com/paululele)
235
+
236
+ * [GitHub](https://github.com/LeNPaul)
237
+
238
+ ### Contributors
239
+
240
+ * [nikolalukovic](https://github.com/nikolalukovic)
241
+
242
+ * [gmemstr](https://github.com/gmemstr)
243
+
244
+ * [lynn9388](https://github.com/lynn9388)
245
+
246
+ * [robqiao](https://github.com/robqiao)
247
+
248
+ * [Mauladen](https://github.com/Mauladen)
249
+
250
+ * [dhanus](https://github.com/dhanus)
251
+
252
+ * [mlewand](https://github.com/mlewand)
253
+
254
+ * [Hguimaraes](https://github.com/Hguimaraes)
255
+
256
+ * [ilhamadun](https://github.com/ilhamadun)
257
+
258
+ * [brianclemens](https://github.com/brianclemens)
259
+
260
+ * [leyhline](https://github.com/leyhline)
261
+
262
+ * [aritra24](https://github.com/aritra24)
263
+
264
+ * [DuckSoft](https://github.com/DuckSoft)
265
+
266
+ * [larrylawl](https://github.com/larrylawl)
267
+
268
+ ### Icons + Demo Images
269
+
270
+ * [Death to Stock](https://deathtothestockphoto.com/)
271
+
272
+ * [Font Awesome](http://fontawesome.io/)
273
+
274
+ ### Other
275
+
276
+ * [Jekyll](https://jekyllrb.com/)
277
+
278
+ * [Free Code Camp](https://www.freecodecamp.org)
279
+
280
+ * [Khan Academy](https://www.khanacademy.org/)
281
+
282
+ ## License
283
+
284
+ Open sourced under the [MIT license](https://github.com/LeNPaul/Lagrange/blob/gh-pages/LICENSE.md).
@@ -0,0 +1,14 @@
1
+ <section class="disqus">
2
+ <div id="disqus_thread"></div>
3
+ <script type="text/javascript">
4
+ var disqus_shortname = "{{ site.data.settings.disqus.disqus_shortname }}";
5
+ var disqus_identifier = "{{ page.url }}";
6
+ (function() {
7
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
8
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
9
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
10
+ })();
11
+ </script>
12
+ <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
13
+ <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
14
+ </section>
@@ -0,0 +1,4 @@
1
+ <footer class="footer">
2
+ {% include social-icons.html %}
3
+ <div class="footer-description"><a href="{{ site.github.url }}/">{{ site.title }} | {{ site.description }} by {{ site.author }}</a></div>
4
+ </footer>
@@ -0,0 +1,8 @@
1
+ <script>
2
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6
+ ga('create', '{{ site.data.settings.google-ID }}', 'auto');
7
+ ga('send', 'pageview');
8
+ </script>
@@ -0,0 +1,34 @@
1
+ <head>
2
+ <title>
3
+ {% if page.title == "Home" %}
4
+ {{ site.title }} | {{ site.description }}
5
+ {% else %}
6
+ {{ page.title }} | {{ site.title }}
7
+ {% endif %}
8
+ </title>
9
+ <meta name="viewport" content="width=device-width, initial-scale=1">
10
+ <meta charset="utf-8">
11
+ <link rel="stylesheet" href="{{ site.github.url }}/assets/css/main.css">
12
+ <link rel="stylesheet" href="{{ site.github.url }}/assets/css/syntax.css">
13
+ <!-- Use Atom -->
14
+ {% feed_meta %}
15
+ <!-- Use RSS-2.0 -->
16
+ <!--<link href="{{ site.github.url }}/rss-feed.xml" type="application/rss+xml" rel="alternate" title="{{ site.title }} | {{ site.description }}"/>
17
+ //-->
18
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700%7CPT+Sans:400">
19
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro">
20
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Quattrocento+Sans">
21
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
22
+ <script type="text/javascript" async
23
+ src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML">
24
+ MathJax.Hub.Config({
25
+ tex2jax: {
26
+ inlineMath: [['$', '$'], ['\\(', '\\)']]
27
+ }
28
+ });
29
+ </script>
30
+ <!-- Google Analytics -->
31
+ {% include google-analytics.html %}
32
+ <!-- Use Jekyll SEO plugin -->
33
+ {% seo %}
34
+ </head>
@@ -0,0 +1,7 @@
1
+ <header class="header">
2
+ <h3 class="header-title">
3
+ <a href="{{ site.github.url }}/">{{ site.title }}</a>
4
+ <small class="header-subtitle">{{ site.description }}</small>
5
+ {% include menu.html %}
6
+ </h3>
7
+ </header>
@@ -0,0 +1,10 @@
1
+ <div class="menu">
2
+ <nav class="menu-content">
3
+ {% for item in site.data.settings.menu %}
4
+ <a href="{{ site.github.url }}/{{ item.url }}">{{ item.name }}</a>
5
+ {% endfor %}
6
+ </nav>
7
+ <nav class="social-icons">
8
+ {% include social-icons.html %}
9
+ </nav>
10
+ </div>
@@ -0,0 +1,17 @@
1
+ <span class="post-date">
2
+ {{ site.data.settings.post_date_prefix }}
3
+ {% assign d = page.date | date: "%-d" %}
4
+ {{ page.date | date: "%B" }}
5
+ {% case d %}
6
+ {% when '1' or '21' or '31' %}{{ d }}st
7
+ {% when '2' or '22' %}{{ d }}nd
8
+ {% when '3' or '23' %}{{ d }}rd
9
+ {% else %}{{ d }}th{% endcase %},
10
+ {{ page.date | date: "%Y" }}
11
+ by
12
+ {% if page.author %}
13
+ {{ page.author }}
14
+ {% else %}
15
+ {{ site.author }}
16
+ {% endif %}
17
+ </span>
@@ -0,0 +1,20 @@
1
+ {% if post.layout != post %}
2
+ {% assign words = post.content | strip_html | number_of_words %}
3
+ {% if words < 180 %}
4
+ less than 1 minute read
5
+ {% elsif words < 360 %}
6
+ 1 minute read
7
+ {% else %}
8
+ {{ words | divided_by:180 }} minute read
9
+ {% endif %}
10
+ {% endif %}
11
+ {% if post.layout == post %}
12
+ {% assign words = content | number_of_words %}
13
+ {% if words < 180 %}
14
+ less than 1 minute read
15
+ {% elsif words < 360 %}
16
+ 1 minute read
17
+ {% else %}
18
+ {{ words | divided_by:180 }} minute read
19
+ {% endif %}
20
+ {% endif %}
@@ -0,0 +1,23 @@
1
+ <div class="related">
2
+ <h1 >{{ site.data.settings.related_posts }}</h1>
3
+ {% assign listed_posts_urls = page.url | split: ' ' %}
4
+ <ul class="related-posts">
5
+ {% for tag in page.tags %}
6
+ {% for mypost in site.tags[tag] limit:3 %}
7
+ {% if listed_posts_urls contains mypost.url %}
8
+ {% else %}
9
+ <li>
10
+ <h3>
11
+ <a href="{{ site.github.url }}{{ mypost.url }}">
12
+ {{ mypost.title }}
13
+ <!--<img src="{{ site.url }}{{ site.baseurl }}/images/{{ mypost.image.teaser }}">-->
14
+ <!--<small>{{ mypost.date | date: "%B %-d, %Y" }}</small>-->
15
+ </a>
16
+ </h3>
17
+ </li>
18
+ {% assign listed_posts_urls = listed_posts_urls | push: mypost.url %}
19
+ {% endif %}
20
+ {% endfor %}
21
+ {% endfor %}
22
+ </ul>
23
+ </div>
@@ -0,0 +1,8 @@
1
+ {% for item in site.data.settings.social %}
2
+ {% assign first_char = item.link | slice: 0 %}
3
+ {% if first_char == '/' %}
4
+ <a href="{{ site.baseurl }}{{ item.link }}"><i class="fa fa-{{ item.icon }}" aria-hidden="true"></i></a>
5
+ {% else %}
6
+ <a href="{{ item.link }}" target="_blank"><i class="fa fa-{{ item.icon }}" aria-hidden="true"></i></a>
7
+ {% endif %}
8
+ {% endfor %}
@@ -0,0 +1,6 @@
1
+ <div class="post-date">{{ site.data.settings.sharing_button_prompt }}</div>
2
+ <div class="sharing-icons">
3
+ <a href="https://twitter.com/intent/tweet?text={{ page.title }}&amp;url={{ site.github.url }}{{ page.url }}" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
4
+ <a href="https://www.facebook.com/sharer/sharer.php?u={{ site.github.url }}{{ page.url }}&amp;title={{ page.title }}" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
5
+ </div>
6
+ </div>
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>
6
+ {{ page.title }}
7
+ </h1>
8
+
9
+ <ul class="posts-container">
10
+ {% for post in site.posts %}
11
+ {% unless post.next %}
12
+ <h3>{{ post.date | date: '%Y' }}</h3>
13
+ {% else %}
14
+ {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
15
+ {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
16
+ {% if year != nyear %}
17
+ <h3>{{ post.date | date: '%Y' }}</h3>
18
+ {% endif %}
19
+ {% endunless %}
20
+ <li itemscope>
21
+ <a href="{{ site.github.url }}{{ post.url }}">{{ post.title }}</a>
22
+ <p class="post-date"><span><i class="fa fa-calendar" aria-hidden="true"></i> {{ post.date | date: "%B %-d" }} - <i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</span></p>
23
+ </li>
24
+ {% endfor %}
25
+ </ul>
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html>
3
+ {% include head.html %}
4
+ <body>
5
+ <div class="container">
6
+ {% include header.html %}
7
+ <div class="content-container">
8
+ {{ content }}
9
+ </div>
10
+ {% include footer.html %}
11
+ </div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,33 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% for post in paginator.posts %}
6
+ <div class="posts-container">
7
+ <h1>
8
+ <a href="{{ site.github.url }}{{ post.url }}">{{ post.title }}</a>
9
+ </h1>
10
+ {% if post.image %}
11
+ <div class="thumbnail-container">
12
+ <a href="{{ site.github.url }}{{ post.url }}"><img src="{{ site.github.url }}/assets/img/{{ post.image }}"></a>
13
+ </div>
14
+ {% endif %}
15
+ <p>
16
+ {{ post.content | strip_html | truncate: 350 }} <a href="{{ site.github.url }}{{ post.url }}">Read more</a>
17
+ <span class="post-date"><i class="fa fa-calendar" aria-hidden="true"></i> {{ post.date | date_to_string }} - <i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</span>
18
+ </p>
19
+ </div>
20
+ {% endfor %}
21
+ <!-- Pagination links -->
22
+ <div class="pagination">
23
+ {% if paginator.next_page %}
24
+ <a class="pagination-button pagination-active next" href="{{ site.github.url }}{{ paginator.next_page_path }}">{{ site.data.settings.pagination.previous_page }}</a>
25
+ {% else %}
26
+ <span class="pagination-button">{{ site.data.settings.pagination.previous_page }}</span>
27
+ {% endif %}
28
+ {% if paginator.previous_page %}
29
+ <a class="pagination-button pagination-active" href="{{ site.baseurl }}{{ paginator.previous_page_path }}">{{ site.data.settings.pagination.next_page }}</a>
30
+ {% else %}
31
+ <span class="pagination-button">{{ site.data.settings.pagination.next_page }}</span>
32
+ {% endif %}
33
+ </div>
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>
6
+ {{ page.title }}
7
+ </h1>
8
+ <article>
9
+ {{ content }}
10
+ </article>
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>
6
+ {{ page.title }}
7
+ </h1>
8
+ {% if page.image %}
9
+ <img src="{{ site.github.url }}/assets/img/{{ page.image }}">
10
+ {% endif %}
11
+ <article>
12
+ {{ content }}
13
+ </article>
14
+ {% if site.hide_post_date != true %}
15
+ {% include post-date.html %}
16
+ {% endif %}
17
+ {% if site.hide_post_share != true %}
18
+ {% include social-sharing.html %}
19
+ {% endif %}
20
+ {% if site.hide_related_posts != true %}
21
+ {% include related-posts.html %}
22
+ {% endif %}
23
+ {% if site.data.settings.disqus.comments %}
24
+ {% include disqus.html %}
25
+ {% endif %}
@@ -0,0 +1,6 @@
1
+ @import "base",
2
+ "code",
3
+ "default",
4
+ "home",
5
+ "post",
6
+ "social-icons"
data/_sass/_base.scss ADDED
@@ -0,0 +1,80 @@
1
+ /*
2
+ Base
3
+ */
4
+
5
+ body {
6
+ font-family: $serif-font-family;
7
+ font-size: 18px;
8
+ color: $body-color;
9
+ line-height: 1.75rem;
10
+ }
11
+
12
+ @media (max-width: $elements-responsive-width) {
13
+ body {
14
+ font-size: 14px;
15
+ line-height: 1.5rem;
16
+ }
17
+ body h1 {
18
+ font-size: 1.5rem;
19
+ }
20
+ }
21
+
22
+ h1{
23
+ font-size: 2rem;
24
+ }
25
+
26
+ h1 a {
27
+ text-decoration: none;
28
+ }
29
+
30
+ h1, h2, h3, h4, h5, h6 {
31
+ font-family: $sans-serif-font-family;
32
+ color: $dark-gray-color;
33
+ }
34
+
35
+ a {
36
+ text-decoration: underline;
37
+ color: $dark-gray-color;
38
+ }
39
+
40
+ a:hover {
41
+ color: $link-color;
42
+ border-bottom: none;
43
+ }
44
+
45
+ img {
46
+ max-width: 100%;
47
+ height: auto;
48
+ border-radius: 5px;
49
+ }
50
+
51
+ blockquote {
52
+ margin: 10px 20px 10px;
53
+ padding: 0px 15px;
54
+ border-left: 0.25em solid $extra-light-gray-color;
55
+ color: $light-gray-color;
56
+ line-height: 1.5;
57
+ }
58
+
59
+ hr {
60
+ border-top: 1px solid $extra-light-gray-color;
61
+ }
62
+
63
+ /*
64
+ Tables
65
+ */
66
+
67
+ table {
68
+ border-collapse: collapse;
69
+ margin-bottom: 30px;
70
+ width: 100%;
71
+ }
72
+
73
+ table, th, td {
74
+ border: 1px solid black;
75
+ }
76
+
77
+ th, td {
78
+ padding: 15px;
79
+ text-align: left;
80
+ }
data/_sass/_code.scss ADDED
@@ -0,0 +1,70 @@
1
+ /*
2
+ Code
3
+ */
4
+
5
+ code,
6
+ pre {
7
+ font-family: $code-font-family;
8
+ }
9
+ code {
10
+ padding: .25em .5em;
11
+ font-size: .8rem;
12
+ background-color: $code-background-color;
13
+ border-radius: 3px;
14
+ }
15
+ pre {
16
+ display: block;
17
+ margin-top: 0;
18
+ margin-bottom: 1rem;
19
+ padding: 1rem;
20
+ font-size: .8rem;
21
+ line-height: 1.4;
22
+ white-space: pre;
23
+ white-space: pre-wrap;
24
+ word-break: break-all;
25
+ word-wrap: break-word;
26
+ background-color: $code-background-color;
27
+ }
28
+ pre code {
29
+ padding: 0;
30
+ font-size: 100%;
31
+ color: inherit;
32
+ background-color: transparent;
33
+ }
34
+
35
+ /* Horizontal code overflow fix */
36
+ pre.highlight {
37
+ white-space: pre;
38
+ overflow-x: auto;
39
+ }
40
+
41
+ /* Pygments via Jekyll */
42
+ .highlight {
43
+ margin-bottom: 1rem;
44
+ border-radius: 4px;
45
+ }
46
+ .highlight pre {
47
+ margin-bottom: 0;
48
+ }
49
+
50
+ /* Gist via GitHub Pages */
51
+ .gist .gist-file {
52
+ font-family: $code-font-family !important;
53
+ }
54
+ .gist .markdown-body {
55
+ padding: 15px;
56
+ }
57
+ .gist pre {
58
+ padding: 0;
59
+ background-color: transparent;
60
+ }
61
+ .gist .gist-file .gist-data {
62
+ font-size: .8rem !important;
63
+ line-height: 1.4;
64
+ }
65
+ .gist code {
66
+ padding: 0;
67
+ color: inherit;
68
+ background-color: transparent;
69
+ border-radius: 0;
70
+ }
@@ -0,0 +1,113 @@
1
+ /*
2
+ Site container
3
+ */
4
+
5
+ .container {
6
+ margin-left: auto;
7
+ margin-right: auto;
8
+ width: 615px;
9
+ }
10
+
11
+ .content-container {
12
+ margin-bottom: 4rem;
13
+ }
14
+
15
+ /*48em*/
16
+
17
+ @media (max-width: $container-responsive-width) {
18
+ .container {
19
+ width: 90vw;
20
+ }
21
+ }
22
+
23
+ /*
24
+ Header
25
+ */
26
+
27
+ .header {
28
+ padding-top: 0.5rem;
29
+ padding-bottom: 0.5rem;
30
+ margin-bottom: 4rem;
31
+ font-family: $sans-serif-font-family;
32
+ }
33
+
34
+ .header a:hover {
35
+ color:black;
36
+ }
37
+
38
+ .header-title a {
39
+ font-size: 2rem;
40
+ text-decoration: none;
41
+ color: $body-color;
42
+ }
43
+
44
+ .header-subtitle {
45
+ color: $light-gray-color;
46
+ }
47
+
48
+ /*
49
+ Menu
50
+ */
51
+
52
+ .menu {
53
+ padding-top: 0.5rem;
54
+ display: block;
55
+ }
56
+
57
+ .menu-content {
58
+ float: left;
59
+ }
60
+
61
+ .menu-content a {
62
+ color: $light-gray-color;
63
+ font-size: 1rem;
64
+ padding-right: 10px;
65
+ }
66
+
67
+ .social-icons {
68
+ float: right;
69
+ }
70
+
71
+ .social-icons a {
72
+ color: $light-gray-color;
73
+ font-size: 1rem;
74
+ }
75
+
76
+ @media (max-width: $elements-responsive-width) {
77
+ .social-icons {
78
+ float: left;
79
+ padding-top: 0px;
80
+ }
81
+ .menu-content {
82
+ margin-bottom: 5px;
83
+ }
84
+ }
85
+
86
+ /*
87
+ Footer
88
+ */
89
+
90
+ .footer {
91
+ color: $light-gray-color;
92
+ text-align: center;
93
+ margin: 2rem;
94
+ }
95
+
96
+ .footer a {
97
+ color: $light-gray-color;
98
+ padding: 10px;
99
+ text-decoration: none;
100
+ }
101
+
102
+ .footer a:hover {
103
+ color: $dark-gray-color;
104
+ }
105
+
106
+ .footer-description {
107
+ display: block;
108
+ margin-top:3px;
109
+ margin-bottom: 1rem;
110
+ color: $light-gray-color;
111
+ font-family: $sans-serif-font-family;
112
+ font-size:0.8rem;
113
+ }
data/_sass/_home.scss ADDED
@@ -0,0 +1,56 @@
1
+ /*
2
+ Posts
3
+ */
4
+
5
+ .posts-container {
6
+ margin-bottom: 5rem;
7
+ padding: 0px;
8
+ list-style: none;
9
+ }
10
+
11
+ /*
12
+ Thumbnail
13
+ */
14
+
15
+ .thumbnail-container {
16
+ max-width: 100%;
17
+ overflow: hidden;
18
+ border-radius: 5px;
19
+ margin-bottom: 25px;
20
+ }
21
+
22
+ .thumbnail-container img{
23
+ margin-top: -11.5%;
24
+ margin-bottom: -11.5%;
25
+ }
26
+
27
+ /*
28
+ Pagination
29
+ */
30
+
31
+ .pagination {
32
+ overflow: hidden;
33
+ font-family: $sans-serif-font-family;
34
+ text-align: center;
35
+ }
36
+
37
+ .pagination a {
38
+ text-decoration: none;
39
+ }
40
+
41
+ .pagination-button {
42
+ color: $light-gray-color;
43
+ border: 1px solid $pagination-button-color;
44
+ padding: 15px 45px;
45
+ display: inline-block;
46
+ font-size: 16px;
47
+ font-weight: bold;
48
+ }
49
+
50
+ .pagination-active {
51
+ color: $link-color;
52
+ }
53
+
54
+ .pagination-active:hover {
55
+ background-color: $pagination-button-color;
56
+ }
data/_sass/_post.scss ADDED
@@ -0,0 +1,31 @@
1
+ /*
2
+ Post
3
+ */
4
+
5
+ .post-date {
6
+ display: block;
7
+ margin-top:3px;
8
+ margin-bottom: 1rem;
9
+ color: $light-gray-color;
10
+ font-family: $sans-serif-font-family;
11
+ font-size:0.8rem;
12
+ }
13
+
14
+ @media (max-width: $elements-responsive-width) {
15
+ .posts h1 {
16
+ font-size: 1.5rem;
17
+ }
18
+ }
19
+
20
+ .related {
21
+ padding-bottom: 2rem;
22
+ }
23
+
24
+ .related-posts {
25
+ padding-left: 0px;
26
+ list-style: none;
27
+ }
28
+
29
+ .related-posts a {
30
+ text-decoration: none;
31
+ }
@@ -0,0 +1,68 @@
1
+ /*
2
+ Social media icons
3
+ */
4
+
5
+ .sharing-icons a {
6
+ padding-right: 10px;
7
+ }
8
+
9
+ @mixin social-media-icon($color, $transition){
10
+ -webkit-transition: $transition;
11
+ -o-transition: $transition;
12
+ -ms-transition: $transition;
13
+ -moz-transition: $transition;
14
+ transition: $transition;
15
+ &:hover{
16
+ color: $color;
17
+ }
18
+ }
19
+
20
+ .fa-envelope {
21
+ padding: 5px;
22
+ @include social-media-icon($envelope-color, $icon-transition-time);
23
+ }
24
+
25
+ .fa-twitter {
26
+ padding: 5px;
27
+ @include social-media-icon($twitter-color, $icon-transition-time);
28
+ }
29
+
30
+ .fa-instagram {
31
+ padding: 5px;
32
+ @include social-media-icon($instagram-color, $icon-transition-time);
33
+ }
34
+
35
+ .fa-github {
36
+ padding: 5px;
37
+ @include social-media-icon($github-color, $icon-transition-time);
38
+ }
39
+
40
+ .fa-linkedin {
41
+ padding: 5px;
42
+ @include social-media-icon($linkedin-color, $icon-transition-time);
43
+ }
44
+
45
+ .fa-facebook {
46
+ padding: 5px;
47
+ @include social-media-icon($facebook-color, $icon-transition-time);
48
+ }
49
+
50
+ .fa-pinterest {
51
+ padding: 5px;
52
+ @include social-media-icon($pinterest-color, $icon-transition-time);
53
+ }
54
+
55
+ .fa-medium {
56
+ padding: 5px;
57
+ @include social-media-icon($medium-color, $icon-transition-time);
58
+ }
59
+
60
+ .fa-codepen {
61
+ padding: 5px;
62
+ @include social-media-icon($codepen-color, $icon-transition-time);
63
+ }
64
+
65
+ .fa-rss-square {
66
+ padding: 5px;
67
+ @include social-media-icon($rss-color, $icon-transition-time);
68
+ }
@@ -0,0 +1,33 @@
1
+ ---
2
+ ---
3
+
4
+ $sans-serif-font-family: "Quattrocento Sans", sans-serif;
5
+ $serif-font-family: "PT Serif", Georgia, "Times New Roman", serif;
6
+ $code-font-family: "Source Code Pro", monospace;
7
+
8
+ $body-color: #505050;
9
+ $link-color: black;
10
+
11
+ $code-background-color: #f5f5f5;
12
+ $pagination-button-color: #e0e0e0;
13
+
14
+ $dark-gray-color: #333;
15
+ $light-gray-color: #999;
16
+ $extra-light-gray-color: #ccc;
17
+
18
+ $container-responsive-width: 768px;
19
+ $elements-responsive-width: 30em;
20
+
21
+ $icon-transition-time: .5s;
22
+ $envelope-color: #f39c12;
23
+ $twitter-color: #00aced;
24
+ $instagram-color: #375989;
25
+ $github-color: #343434;
26
+ $linkedin-color: #0073a4;
27
+ $facebook-color: #3d5b99;
28
+ $pinterest-color: #bd081c;
29
+ $medium-color: #00AB6C;
30
+ $codepen-color: black;
31
+ $rss-color: #ff6600;
32
+
33
+ @import "-sections-dir";
@@ -0,0 +1,65 @@
1
+ .highlight .hll { background-color: #ffc; }
2
+ .highlight .c { color: #999; } /* Comment */
3
+ .highlight .err { color: #a00; background-color: #faa } /* Error */
4
+ .highlight .k { color: #069; } /* Keyword */
5
+ .highlight .o { color: #555 } /* Operator */
6
+ .highlight .cm { color: #09f; font-style: italic } /* Comment.Multiline */
7
+ .highlight .cp { color: #099 } /* Comment.Preproc */
8
+ .highlight .c1 { color: #999; } /* Comment.Single */
9
+ .highlight .cs { color: #999; } /* Comment.Special */
10
+ .highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */
11
+ .highlight .ge { font-style: italic } /* Generic.Emph */
12
+ .highlight .gr { color: #f00 } /* Generic.Error */
13
+ .highlight .gh { color: #030; } /* Generic.Heading */
14
+ .highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */
15
+ .highlight .go { color: #aaa } /* Generic.Output */
16
+ .highlight .gp { color: #009; } /* Generic.Prompt */
17
+ .highlight .gs { } /* Generic.Strong */
18
+ .highlight .gu { color: #030; } /* Generic.Subheading */
19
+ .highlight .gt { color: #9c6 } /* Generic.Traceback */
20
+ .highlight .kc { color: #069; } /* Keyword.Constant */
21
+ .highlight .kd { color: #069; } /* Keyword.Declaration */
22
+ .highlight .kn { color: #069; } /* Keyword.Namespace */
23
+ .highlight .kp { color: #069 } /* Keyword.Pseudo */
24
+ .highlight .kr { color: #069; } /* Keyword.Reserved */
25
+ .highlight .kt { color: #078; } /* Keyword.Type */
26
+ .highlight .m { color: #f60 } /* Literal.Number */
27
+ .highlight .s { color: #d44950 } /* Literal.String */
28
+ .highlight .na { color: #4f9fcf } /* Name.Attribute */
29
+ .highlight .nb { color: #366 } /* Name.Builtin */
30
+ .highlight .nc { color: #0a8; } /* Name.Class */
31
+ .highlight .no { color: #360 } /* Name.Constant */
32
+ .highlight .nd { color: #99f } /* Name.Decorator */
33
+ .highlight .ni { color: #999; } /* Name.Entity */
34
+ .highlight .ne { color: #c00; } /* Name.Exception */
35
+ .highlight .nf { color: #c0f } /* Name.Function */
36
+ .highlight .nl { color: #99f } /* Name.Label */
37
+ .highlight .nn { color: #0cf; } /* Name.Namespace */
38
+ .highlight .nt { color: #2f6f9f; } /* Name.Tag */
39
+ .highlight .nv { color: #033 } /* Name.Variable */
40
+ .highlight .ow { color: #000; } /* Operator.Word */
41
+ .highlight .w { color: #bbb } /* Text.Whitespace */
42
+ .highlight .mf { color: #f60 } /* Literal.Number.Float */
43
+ .highlight .mh { color: #f60 } /* Literal.Number.Hex */
44
+ .highlight .mi { color: #f60 } /* Literal.Number.Integer */
45
+ .highlight .mo { color: #f60 } /* Literal.Number.Oct */
46
+ .highlight .sb { color: #c30 } /* Literal.String.Backtick */
47
+ .highlight .sc { color: #c30 } /* Literal.String.Char */
48
+ .highlight .sd { color: #c30; font-style: italic } /* Literal.String.Doc */
49
+ .highlight .s2 { color: #c30 } /* Literal.String.Double */
50
+ .highlight .se { color: #c30; } /* Literal.String.Escape */
51
+ .highlight .sh { color: #c30 } /* Literal.String.Heredoc */
52
+ .highlight .si { color: #a00 } /* Literal.String.Interpol */
53
+ .highlight .sx { color: #c30 } /* Literal.String.Other */
54
+ .highlight .sr { color: #3aa } /* Literal.String.Regex */
55
+ .highlight .s1 { color: #c30 } /* Literal.String.Single */
56
+ .highlight .ss { color: #fc3 } /* Literal.String.Symbol */
57
+ .highlight .bp { color: #366 } /* Name.Builtin.Pseudo */
58
+ .highlight .vc { color: #033 } /* Name.Variable.Class */
59
+ .highlight .vg { color: #033 } /* Name.Variable.Global */
60
+ .highlight .vi { color: #033 } /* Name.Variable.Instance */
61
+ .highlight .il { color: #f60 } /* Literal.Number.Integer.Long */
62
+
63
+ .css .o,
64
+ .css .o + .nt,
65
+ .css .nt + .nt { color: #999; }
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,145 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lagrange
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Paul Le
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-06-06 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: '4.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.6'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-paginate
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.1'
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.3'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
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.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.6'
83
+ description:
84
+ email:
85
+ - hello@paulle.ca
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.md
91
+ - README.md
92
+ - _includes/disqus.html
93
+ - _includes/footer.html
94
+ - _includes/google-analytics.html
95
+ - _includes/head.html
96
+ - _includes/header.html
97
+ - _includes/menu.html
98
+ - _includes/post-date.html
99
+ - _includes/read-time.html
100
+ - _includes/related-posts.html
101
+ - _includes/social-icons.html
102
+ - _includes/social-sharing.html
103
+ - _layouts/archive.html
104
+ - _layouts/default.html
105
+ - _layouts/home.html
106
+ - _layouts/page.html
107
+ - _layouts/post.html
108
+ - _sass/_-sections-dir.scss
109
+ - _sass/_base.scss
110
+ - _sass/_code.scss
111
+ - _sass/_default.scss
112
+ - _sass/_home.scss
113
+ - _sass/_post.scss
114
+ - _sass/_social-icons.scss
115
+ - assets/css/main.scss
116
+ - assets/css/syntax.css
117
+ - assets/img/cards.jpg
118
+ - assets/img/cutting.jpg
119
+ - assets/img/forest.jpg
120
+ - assets/img/mountains.jpg
121
+ - assets/img/spools.jpg
122
+ homepage: https://github.com/LeNPaul/Lagrange
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubygems_version: 3.2.17
142
+ signing_key:
143
+ specification_version: 4
144
+ summary: A minimalist Jekyll theme for running a personal blog
145
+ test_files: []