reverie-theme 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +20 -0
- data/README.md +106 -0
- data/_includes/analytics.html +16 -0
- data/_includes/disqus.html +17 -0
- data/_includes/meta.html +30 -0
- data/_includes/svg-icons.html +14 -0
- data/_layouts/default.html +55 -0
- data/_layouts/page.html +12 -0
- data/_layouts/post.html +39 -0
- data/_pages/about.md +29 -0
- data/_pages/categories.md +24 -0
- data/_pages/search.md +21 -0
- data/_posts/2019-02-13-introducing-reverie-jekyll-theme.md +87 -0
- data/_posts/2019-08-08-no-title-posts.md +6 -0
- data/_posts/2019-7-27-super-long-article.md +11 -0
- data/_posts/2019-7-27-this-post-demonstrates-post-content-styles.md +95 -0
- data/_posts/2019-7-28-super-short-article.md +7 -0
- data/_posts/2019-8-12-code-snippets.md +42 -0
- data/images/404.jpg +0 -0
- data/images/categories.png +0 -0
- data/images/favicon-32x32.png +0 -0
- data/images/galaxy.jpg +0 -0
- data/images/mobile-demo.png +0 -0
- data/images/reverie-demo.png +0 -0
- data/images/reverie-text.png +0 -0
- data/images/reverie.png +0 -0
- data/images/search.png +0 -0
- metadata +169 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fb2e5362bb2e214da2ea02bcabde89247b960115470e8bc769430c214864f112
|
4
|
+
data.tar.gz: 820b22e4d3d2d6189f829e87cd79851b0e2ae1d0a2e72e98f3aedfe8abf2e5d1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c9a954ee4c9bc8481a55c4d0555e67c2a00cb45b5b717b3c01e6bade16e1706ab1883e5f04afd593ae85de7db5c6bc104f768370a74310d166725764e4da1d05
|
7
|
+
data.tar.gz: 6176290ae4a5857463402eb6edcb3305825a222b926a24809d98cb8f179c6e08f016afbf6fb50363c23d275d41ce17a1c4330a1f0ec32a8200b2f25c9d77abfb
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Amit Merchant
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
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, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
<h1 align="center">
|
2
|
+
<br>
|
3
|
+
<img src="/images/reverie-text.png" alt="Reverie" width="200"/>
|
4
|
+
<br>
|
5
|
+
<p align="center">
|
6
|
+
<a href="https://ko-fi.com/Y8Y2QC9Y"><img src="https://www.ko-fi.com/img/githubbutton_sm.svg" alt="Ko-fi" width="200"/></a>
|
7
|
+
</p>
|
8
|
+
</h1>
|
9
|
+
|
10
|
+
Reverie is a [Jekyll](https://jekyllrb.com/)-powered theme which is simple and opinionated. It's actually a fork of [jekyll-now](https://github.com/barryclark/jekyll-now) with some additional features and personal touches which I've implemented to suit my needs for my blog.
|
11
|
+
|
12
|
+
> [Theme demo](https://www.amitmerchant.com/reverie/introducing-reverie-jekyll-theme/)
|
13
|
+
|
14
|
+
This is a plug-and-play Jekyll theme best suited to use on [GitHub Pages](https://pages.github.com) without even setting up a local environment.
|
15
|
+
|
16
|
+
![](/images/reverie-demo.png)
|
17
|
+
|
18
|
+
| Responsiveness | Search | Categories |
|
19
|
+
|---------------------|----------------------|----------------------|
|
20
|
+
|![Responsiveness](/images/mobile-demo.png) | ![search](/images/search.png) | ![categories](/images/categories.png) |
|
21
|
+
|
22
|
+
## Features overview
|
23
|
+
|
24
|
+
- Command-line free fork-first workflow, using GitHub.com to create, customize and post to your blog
|
25
|
+
- Fully responsive and mobile optimized base theme
|
26
|
+
- Sass/Coffeescript support using Jekyll 2.0
|
27
|
+
- Free hosting on your GitHub Pages user site
|
28
|
+
- All the SEO goodies comes in-built
|
29
|
+
- Markdown blogging
|
30
|
+
- Syntax highlighting using Pygments
|
31
|
+
- [Dracula syntax theme](https://draculatheme.com/) included
|
32
|
+
- Disqus commenting
|
33
|
+
- Google Analytics integration
|
34
|
+
- Fuzzy search across blog posts
|
35
|
+
- Pagination of posts works out-of-the-box.
|
36
|
+
- Categorize posts out-of-the box
|
37
|
+
- RSS Feed
|
38
|
+
- In-built sitemap
|
39
|
+
|
40
|
+
> <p><i>Like this theme?</i> Become a patreon to support my opensource work <p>
|
41
|
+
> <a href="https://www.patreon.com/amitmerchant"><img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" width="160"></a>
|
42
|
+
|
43
|
+
## Using Reverie on GitHub Pages
|
44
|
+
|
45
|
+
### 1. Fork Reverie to your User Repository
|
46
|
+
|
47
|
+
Fork this repository, then rename the repository to `yourgithubusername.github.io`.
|
48
|
+
|
49
|
+
Alternatively, you can use [`Use this template`](https://github.com/amitmerchant1990/reverie/generate) button if you want to create a repository with a clean commit history which will use Reverie as a template.
|
50
|
+
|
51
|
+
Your Jekyll blog will often be viewable immediately at <https://yourgithubusername.github.io> (if it's not, you can often force it to build by completing step 2.
|
52
|
+
|
53
|
+
### 2. Customize and view your site
|
54
|
+
|
55
|
+
Enter your site name, description, avatar and many other options by editing the `_config.yml` file. You can easily turn on Google Analytics tracking, Disqus commenting and social icons here.
|
56
|
+
|
57
|
+
Making a change to `_config.yml` (or any file in your repository) will force GitHub Pages to rebuild your site with jekyll. Your rebuilt site will be viewable a few seconds later at <https://yourgithubusername.github.io> - if not, give it ten minutes as GitHub suggests and it'll appear soon.
|
58
|
+
|
59
|
+
### 3. Publish your first blog post
|
60
|
+
|
61
|
+
Create a new file called `/_posts/2019-2-13-Hello-World.md` to publish your first blog post. That's all you need to do to publish your first blog post! This [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) might come in handy while writing the posts.
|
62
|
+
|
63
|
+
> You can add additional posts in the browser on GitHub.com too! Just hit the <kbd>Create new file</kbd> button in `/_posts/` to create new content. Just make sure to include the [front-matter](http://jekyllrb.com/docs/frontmatter/) block at the top of each new blog post and make sure the post's filename is in this format: year-month-day-title.md
|
64
|
+
|
65
|
+
## Using Categories in Reverie
|
66
|
+
|
67
|
+
You can categorize your content based on `categories` in Reverie. For this, you just need to add `categories` in front matter like below:
|
68
|
+
|
69
|
+
For adding single category:
|
70
|
+
|
71
|
+
```md
|
72
|
+
categories: JavaScript
|
73
|
+
```
|
74
|
+
|
75
|
+
For adding multiple categories:
|
76
|
+
|
77
|
+
```md
|
78
|
+
categories: [PHP, Laravel]
|
79
|
+
```
|
80
|
+
|
81
|
+
The categorized content can be shown over this URL: <https://yourgithubusername.github.io/categories/>
|
82
|
+
|
83
|
+
## Pagination
|
84
|
+
|
85
|
+
Pagination of posts in Reverie works out-of-the-box. You only need to specify number of posts you want on a single page in `_config.yml` and Reverie will take care of the rest.
|
86
|
+
|
87
|
+
```yml
|
88
|
+
paginate: 6
|
89
|
+
```
|
90
|
+
|
91
|
+
## RSS
|
92
|
+
|
93
|
+
The generated [RSS feed](https://en.wikipedia.org/wiki/RSS) of your blog can be found at <https://yourgithubusername.github.io/feed>. You can see the example RSS feed over [here](https://www.amitmerchant.com/reverie/feed.xml).
|
94
|
+
|
95
|
+
## Sitemap
|
96
|
+
|
97
|
+
The generated sitemap of your blog can be found at <https://yourgithubusername.github.io/sitemap>. You can see the example sitemap feed over [here](https://www.amitmerchant.com/reverie/sitemap).
|
98
|
+
|
99
|
+
## The name?
|
100
|
+
|
101
|
+
reverie - _a state of being pleasantly lost in one's thoughts; a daydream._<br><sup>/ˈrɛv(ə)ri/</sup>
|
102
|
+
|
103
|
+
|
104
|
+
## License
|
105
|
+
|
106
|
+
MIT
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{% if site.google_analytics %}
|
2
|
+
<!-- Google Analytics -->
|
3
|
+
<script>
|
4
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
5
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
6
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
7
|
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
8
|
+
|
9
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
10
|
+
ga('send', 'pageview', {
|
11
|
+
'page': '{{ site.baseurl }}{{ page.url }}',
|
12
|
+
'title': '{{ page.title | replace: "'", "\\'" }}'
|
13
|
+
});
|
14
|
+
</script>
|
15
|
+
<!-- End Google Analytics -->
|
16
|
+
{% endif %}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{% if site.disqus %}
|
2
|
+
<div class="comments">
|
3
|
+
<div id="disqus_thread"></div>
|
4
|
+
<script type="text/javascript">
|
5
|
+
|
6
|
+
var disqus_shortname = '{{ site.disqus }}';
|
7
|
+
|
8
|
+
(function() {
|
9
|
+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
10
|
+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
11
|
+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
12
|
+
})();
|
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 %}
|
data/_includes/meta.html
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
<meta charset="utf-8" />
|
2
|
+
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
|
3
|
+
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
4
|
+
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
|
5
|
+
|
6
|
+
{% if page.excerpt %}
|
7
|
+
<meta name="description" content="{{ page.excerpt| strip_html }}" />
|
8
|
+
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
|
9
|
+
{% elsif page.description %}
|
10
|
+
<meta name="description" content="{{ page.description }}" />
|
11
|
+
<meta property="og:description" content="{{ page.description }}" />
|
12
|
+
{% else %}
|
13
|
+
<meta name="description" content="{{ site.description }}">
|
14
|
+
<meta property="og:description" content="{{ site.description }}" />
|
15
|
+
{% endif %}
|
16
|
+
<meta name="author" content="{{ site.name }}" />
|
17
|
+
|
18
|
+
{% if page.title %}
|
19
|
+
<meta property="og:title" content="{{ page.title }}" />
|
20
|
+
<meta property="twitter:title" content="{{ page.title }}" />
|
21
|
+
{% endif %}
|
22
|
+
|
23
|
+
{% if page.image %}
|
24
|
+
<meta property="og:image" content="{{ site.url }}{{ page.image }}"/>
|
25
|
+
<meta property="twitter:image" content="{{ site.url }}{{ page.image }}"/>
|
26
|
+
{% else %}
|
27
|
+
<meta property="og:image" content="{{ site.url }}{{ site.avatar }}"/>
|
28
|
+
<meta property="twitter:image" content="{{ site.url }}{{ site.avatar }}"/>
|
29
|
+
{% endif %}
|
30
|
+
<meta property="og:site_name" content="Amit Merchant - Software Engineer"/>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{% if site.footer-links.dribbble %}<a href="https://dribbble.com/{{ site.footer-links.dribbble }}"><i class="svg-icon dribbble"></i></a>{% endif %}
|
2
|
+
{% if site.footer-links.email %}<a href="mailto:{{ site.footer-links.email }}"><i class="svg-icon email"></i></a>{% endif %}
|
3
|
+
{% if site.footer-links.facebook %}<a href="https://www.facebook.com/{{ site.footer-links.facebook }}"><i class="svg-icon facebook"></i></a>{% endif %}
|
4
|
+
{% if site.footer-links.flickr %}<a href="https://www.flickr.com/{{ site.footer-links.flickr }}"><i class="svg-icon flickr"></i></a>{% endif %}
|
5
|
+
{% if site.footer-links.github %}<a href="https://github.com/{{ site.footer-links.github }}"><i class="svg-icon github"></i></a>{% endif %}
|
6
|
+
{% if site.footer-links.instagram %}<a href="https://instagram.com/{{ site.footer-links.instagram }}"><i class="svg-icon instagram"></i></a>{% endif %}
|
7
|
+
{% if site.footer-links.linkedin %}<a href="https://www.linkedin.com/in/{{ site.footer-links.linkedin }}"><i class="svg-icon linkedin"></i></a>{% endif %}
|
8
|
+
{% if site.footer-links.pinterest %}<a href="https://www.pinterest.com/{{ site.footer-links.pinterest }}"><i class="svg-icon pinterest"></i></a>{% endif %}
|
9
|
+
{% if site.footer-links.rss %}<a href="{{ site.baseurl }}/feed.xml"><i class="svg-icon rss"></i></a>{% endif %}
|
10
|
+
{% if site.footer-links.twitter %}<a href="https://www.twitter.com/{{ site.footer-links.twitter }}"><i class="svg-icon twitter"></i></a>{% endif %}
|
11
|
+
{% if site.footer-links.stackoverflow %}<a href="http://stackoverflow.com/{{ site.footer-links.stackoverflow }}"><i class="svg-icon stackoverflow"></i></a>{% endif %}
|
12
|
+
{% if site.footer-links.youtube %}<a href="https://youtube.com/{{ site.footer-links.youtube }}"><i class="svg-icon youtube"></i></a>{% endif %}
|
13
|
+
{% if site.footer-links.googleplus %}<a href="https://plus.google.com/{{ site.footer-links.googleplus }}"><i class="svg-icon googleplus"></i></a>{% endif %}
|
14
|
+
{% if site.footer-links.playconsole %}<a href="https://play.google.com/store/apps/dev?id={{ site.footer-links.playconsole }}"><i class="svg-icon playconsole"></i></a>{% endif %}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>{% if page.title and page.title != "" %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
5
|
+
{% seo %}
|
6
|
+
{% include meta.html %}
|
7
|
+
|
8
|
+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/style.css" />
|
9
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
10
|
+
<link rel="canonical" href="{{ site.url }}{{ page.url }}" />
|
11
|
+
|
12
|
+
<meta name="theme-color" content="#000000">
|
13
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/images/favicon-32x32.png">
|
14
|
+
</head>
|
15
|
+
|
16
|
+
<body>
|
17
|
+
<div id="bar"></div>
|
18
|
+
<div class="wrapper-container">
|
19
|
+
<div class="wrapper-masthead">
|
20
|
+
<div class="container">
|
21
|
+
<header class="masthead clearfix">
|
22
|
+
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.baseurl }}{{ site.avatar }}" /></a>
|
23
|
+
|
24
|
+
<div class="site-info">
|
25
|
+
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
|
26
|
+
<p class="site-description">{{ site.description }}</p>
|
27
|
+
</div>
|
28
|
+
|
29
|
+
<nav>
|
30
|
+
<a href="{{ site.baseurl }}/">Home</a>
|
31
|
+
<a href="{{ site.baseurl }}/search">Search</a>
|
32
|
+
<a href="{{ site.baseurl }}/about">About</a>
|
33
|
+
</nav>
|
34
|
+
</header>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="wrapper-main">
|
39
|
+
<div id="main" role="main" class="container">
|
40
|
+
{{ content }}
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<div class="wrapper-footer">
|
45
|
+
<div class="container">
|
46
|
+
<footer class="footer">
|
47
|
+
{% include svg-icons.html %}
|
48
|
+
</footer>
|
49
|
+
</div>
|
50
|
+
</div>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
{% include analytics.html %}
|
54
|
+
</body>
|
55
|
+
</html>
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="post detailed">
|
6
|
+
<h1>{{ page.title }}</h1>
|
7
|
+
|
8
|
+
<div>
|
9
|
+
<p class="author_title">{{site.author}} · {{ page.date | date: "%B %e, %Y" }}</p>
|
10
|
+
{% if page.last_modified_at %}
|
11
|
+
<p class="author_title" datetime="{{ page.last_modified_at | date_to_xmlschema }}">(Updated: {{ page.last_modified_at | date: "%b %-d, %Y" }})</p>
|
12
|
+
{% endif %}
|
13
|
+
<div class="post-tags">
|
14
|
+
{% if post %}
|
15
|
+
{% assign categories = post.categories %}
|
16
|
+
{% else %}
|
17
|
+
{% assign categories = page.categories %}
|
18
|
+
{% endif %}
|
19
|
+
{% for category in categories %}
|
20
|
+
<a href="{{site.baseurl}}/categories/#{{category|slugize}}">{{category}}</a>
|
21
|
+
{% unless forloop.last %} {% endunless %}
|
22
|
+
{% endfor %}
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<div class="entry">
|
27
|
+
{{ content }}
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div>
|
31
|
+
<p><span class="share-box">Share:</span> <a href="http://twitter.com/share?text={{ page.title }}&url={{site.url}}{{page.url}}" target="_blank">Twitter</a>, <a href="https://www.facebook.com/sharer.php?u={{site.url}}{{page.url}}" target="_blank">Facebook</a></p>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<!--<div class="date">
|
35
|
+
Written on {{ page.date | date: "%B %e, %Y" }}
|
36
|
+
</div>-->
|
37
|
+
|
38
|
+
{% include disqus.html %}
|
39
|
+
</article>
|
data/_pages/about.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: About
|
4
|
+
permalink: /about/
|
5
|
+
---
|
6
|
+
|
7
|
+
[Reverie](https://github.com/amitmerchant1990/reverie) is a Jekyll theme which is simple and opinionated. It's actually a fork of [jekyll-now](https://github.com/barryclark/jekyll-now) with some additional features and personal touches which I've implemented to suit my needs for [my blog](https://www.amitmerchant.com).
|
8
|
+
|
9
|
+
This is a plug-and-play Jekyll theme which you can use on GitHub Pages without even setting up a local environment.
|
10
|
+
|
11
|
+
## Features
|
12
|
+
|
13
|
+
- Command-line free fork-first workflow, using GitHub.com to create, customize and post to your blog
|
14
|
+
- Fully responsive and mobile optimized base theme
|
15
|
+
- Sass/Coffeescript support using Jekyll 2.0
|
16
|
+
- Free hosting on your GitHub Pages user site
|
17
|
+
- All the SEO goodies comes in-built
|
18
|
+
- Markdown blogging
|
19
|
+
- Syntax highlighting using Pygments
|
20
|
+
- [Dracula syntax theme](https://draculatheme.com/) included
|
21
|
+
- Disqus commenting
|
22
|
+
- Google Analytics integration
|
23
|
+
- Fuzzy search across blog posts
|
24
|
+
- Pagination of posts works out-of-the-box.
|
25
|
+
- Categorize posts out-of-the box
|
26
|
+
- RSS Feed
|
27
|
+
- In-built sitemap
|
28
|
+
|
29
|
+
Learn more about it [here](https://github.com/amitmerchant1990/reverie) on how to get started.
|
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
permalink: /categories/
|
4
|
+
title: Categories
|
5
|
+
---
|
6
|
+
|
7
|
+
|
8
|
+
<div id="archives">
|
9
|
+
{% for category in site.categories %}
|
10
|
+
<div class="archive-group">
|
11
|
+
{% capture category_name %}{{ category | first }}{% endcapture %}
|
12
|
+
<div id="#{{ category_name | slugize }}"></div>
|
13
|
+
<p></p>
|
14
|
+
|
15
|
+
<h3 class="category-head">{{ category_name }}</h3>
|
16
|
+
<a name="{{ category_name | slugize }}"></a>
|
17
|
+
{% for post in site.categories[category_name] %}
|
18
|
+
<article class="archive-item">
|
19
|
+
<h4><a href="{{ site.baseurl }}{{ post.url }}">{% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%}</a></h4>
|
20
|
+
</article>
|
21
|
+
{% endfor %}
|
22
|
+
</div>
|
23
|
+
{% endfor %}
|
24
|
+
</div>
|
data/_pages/search.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: Search
|
4
|
+
permalink: /search/
|
5
|
+
---
|
6
|
+
|
7
|
+
<div id="search-container">
|
8
|
+
<input type="text" id="search-input" placeholder="Search through the blog posts...">
|
9
|
+
<ul id="results-container"></ul>
|
10
|
+
</div>
|
11
|
+
|
12
|
+
<script src="{{ site.baseurl }}/assets/simple-jekyll-search.min.js" type="text/javascript"></script>
|
13
|
+
|
14
|
+
<script>
|
15
|
+
SimpleJekyllSearch({
|
16
|
+
searchInput: document.getElementById('search-input'),
|
17
|
+
resultsContainer: document.getElementById('results-container'),
|
18
|
+
searchResultTemplate: '<div style="text-align: left !important;"><a href="{url}"><h1 style="text-align:left !important;">{title}</h1></a><span style="text-align:left !important;">{date}</span></div>',
|
19
|
+
json: '{{ site.baseurl }}/search.json'
|
20
|
+
});
|
21
|
+
</script>
|
@@ -0,0 +1,87 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: Introducing Reverie - A ridiculously elegant Jekyll theme
|
4
|
+
categories: [Miscellaneous, Jekyll]
|
5
|
+
---
|
6
|
+
|
7
|
+
[Reverie](https://github.com/amitmerchant1990/reverie) is a [Jekyll](https://jekyllrb.com/)-powered theme which is simple and opinionated. It's actually a fork of [jekyll-now](https://github.com/barryclark/jekyll-now) with some additional features and personal touches which I've implemented to suit my needs for my blog.
|
8
|
+
|
9
|
+
This is a plug-and-play Jekyll theme which you can use on GitHub Pages without even setting up a local environment.
|
10
|
+
|
11
|
+
![](/images/reverie-demo.png)
|
12
|
+
|
13
|
+
## Features overview
|
14
|
+
|
15
|
+
- Command-line free fork-first workflow, using GitHub.com to create, customize and post to your blog
|
16
|
+
- Fully responsive and mobile optimized base theme
|
17
|
+
- Sass/Coffeescript support using Jekyll 2.0
|
18
|
+
- Free hosting on your GitHub Pages user site
|
19
|
+
- All the SEO goodies comes in-built
|
20
|
+
- Markdown blogging
|
21
|
+
- Syntax highlighting using Pygments
|
22
|
+
- [Dracula syntax theme](https://draculatheme.com/) included
|
23
|
+
- Disqus commenting
|
24
|
+
- Google Analytics integration
|
25
|
+
- Fuzzy search across blog posts
|
26
|
+
- Pagination of posts works out-of-the-box.
|
27
|
+
- Categorize posts out-of-the box
|
28
|
+
- RSS Feed
|
29
|
+
- In-built sitemap
|
30
|
+
|
31
|
+
<div style="text-align: center;">
|
32
|
+
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7D6KJY&placement=wwwamitmerchantcom" id="_carbonads_js"></script>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
## Using Reverie on GitHub Pages
|
36
|
+
|
37
|
+
### Step 1) Fork Reverie to your User Repository
|
38
|
+
|
39
|
+
Fork [this repository](https://github.com/amitmerchant1990/reverie), then rename the repository to `yourgithubusername.github.io`.
|
40
|
+
|
41
|
+
Alternatively, you can use [Use this template](https://github.com/amitmerchant1990/reverie/generate) button if you want to create a repository with a clean commit history which will use Reverie as a template.
|
42
|
+
|
43
|
+
Your Jekyll blog will often be viewable immediately at <https://yourgithubusername.github.io> (if it's not, you can often force it to build by completing step 2)
|
44
|
+
|
45
|
+
### Step 2) Customize and view your site
|
46
|
+
|
47
|
+
Enter your site name, description, avatar and many other options by editing the `_config.yml` file. You can easily turn on Google Analytics tracking, Disqus commenting and social icons here.
|
48
|
+
|
49
|
+
Making a change to `_config.yml` (or any file in your repository) will force GitHub Pages to rebuild your site with jekyll. Your rebuilt site will be viewable a few seconds later at <https://yourgithubusername.github.io> - if not, give it ten minutes as GitHub suggests and it'll appear soon.
|
50
|
+
|
51
|
+
### Step 3) Publish your first blog post
|
52
|
+
|
53
|
+
Create a new file called `/_posts/2019-2-13-Hello-World.md` to publish your first blog post. That's all you need to do to publish your first blog post! This [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) might come in handy while writing the posts.
|
54
|
+
|
55
|
+
> You can add additional posts in the browser on GitHub.com too! Just hit the <kbd>Create new file</kbd> button in `/_posts/` to create new content. Just make sure to include the [front-matter](http://jekyllrb.com/docs/frontmatter/) block at the top of each new blog post and make sure the post's filename is in this format: year-month-day-title.md
|
56
|
+
|
57
|
+
## Using Categories in Reverie
|
58
|
+
|
59
|
+
You can categorize your content based on `categories` in Reverie. For this, you just need to add `categories` in front matter like below:
|
60
|
+
|
61
|
+
For adding single category:
|
62
|
+
|
63
|
+
```md
|
64
|
+
categories: JavaScript
|
65
|
+
```
|
66
|
+
|
67
|
+
For adding multiple categories:
|
68
|
+
|
69
|
+
```md
|
70
|
+
categories: [PHP, Laravel]
|
71
|
+
```
|
72
|
+
|
73
|
+
The contegorized content can be shown over this URL: <https://yourgithubusername.github.io/categories/>
|
74
|
+
|
75
|
+
## RSS
|
76
|
+
|
77
|
+
The generated [RSS feed](https://en.wikipedia.org/wiki/RSS) of your blog can be found at <https://yourgithubusername.github.io/feed>. You can see the example RSS feed over [here](https://www.amitmerchant.com/reverie/feed).
|
78
|
+
|
79
|
+
## Sitemap
|
80
|
+
|
81
|
+
The generated sitemap of your blog can be found at <https://yourgithubusername.github.io/sitemap>. You can see the example sitemap feed over [here](https://www.amitmerchant.com/reverie/sitemap).
|
82
|
+
|
83
|
+
## License
|
84
|
+
|
85
|
+
MIT
|
86
|
+
|
87
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: Some articles are just so long they deserve a really long title to see if things will break well
|
4
|
+
categories: Miscellaneous
|
5
|
+
---
|
6
|
+
|
7
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit. Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum. In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris. Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
8
|
+
|
9
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit. Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum. In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris. Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
10
|
+
|
11
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit. Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum. In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris. Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
@@ -0,0 +1,95 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: This post demonstrates post content styles
|
4
|
+
categories: Miscellaneous
|
5
|
+
---
|
6
|
+
|
7
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
8
|
+
|
9
|
+
## Some great heading (h2)
|
10
|
+
|
11
|
+
Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum. In arcu magna, aliquet vel pretium et, molestie et arcu.
|
12
|
+
|
13
|
+
Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris. Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
14
|
+
|
15
|
+
## Another great heading (h2)
|
16
|
+
|
17
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt. Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit.
|
18
|
+
|
19
|
+
### Some great subheading (h3)
|
20
|
+
|
21
|
+
Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum. In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum.
|
22
|
+
|
23
|
+
Phasellus et hendrerit mauris. Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc.
|
24
|
+
|
25
|
+
### Some great subheading (h3)
|
26
|
+
|
27
|
+
Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
28
|
+
|
29
|
+
> This quote will change your life. It will reveal the secrets of the universe, and all the wonders of humanity. Don't misuse it.
|
30
|
+
|
31
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce bibendum neque eget nunc mattis eu sollicitudin enim tincidunt.
|
32
|
+
|
33
|
+
### Some great subheading (h3)
|
34
|
+
|
35
|
+
Vestibulum lacus tortor, ultricies id dignissim ac, bibendum in velit. Proin convallis mi ac felis pharetra aliquam. Curabitur dignissim accumsan rutrum.
|
36
|
+
|
37
|
+
```html
|
38
|
+
<html>
|
39
|
+
<head>
|
40
|
+
</head>
|
41
|
+
<body>
|
42
|
+
<p>Hello, World!</p>
|
43
|
+
</body>
|
44
|
+
</html>
|
45
|
+
```
|
46
|
+
|
47
|
+
|
48
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
49
|
+
|
50
|
+
#### You might want a sub-subheading (h4)
|
51
|
+
|
52
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
53
|
+
|
54
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
55
|
+
|
56
|
+
#### But it's probably overkill (h4)
|
57
|
+
|
58
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
59
|
+
|
60
|
+
### Oh hai, an unordered list!!
|
61
|
+
|
62
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
63
|
+
|
64
|
+
- First item, yo
|
65
|
+
- Second item, dawg
|
66
|
+
- Third item, what what?!
|
67
|
+
- Fourth item, fo sheezy my neezy
|
68
|
+
|
69
|
+
### Oh hai, an ordered list!!
|
70
|
+
|
71
|
+
In arcu magna, aliquet vel pretium et, molestie et arcu. Mauris lobortis nulla et felis ullamcorper bibendum. Phasellus et hendrerit mauris.
|
72
|
+
|
73
|
+
1. First item, yo
|
74
|
+
2. Second item, dawg
|
75
|
+
3. Third item, what what?!
|
76
|
+
4. Fourth item, fo sheezy my neezy
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
## Headings are cool! (h2)
|
81
|
+
|
82
|
+
Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc. Praesent varius interdum vehicula. Aenean risus libero, placerat at vestibulum eget, ultricies eu enim. Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
83
|
+
|
84
|
+
Praesent nulla tortor, malesuada adipiscing adipiscing sollicitudin, adipiscing eget est.
|
85
|
+
|
86
|
+
Proin eget nibh a massa vestibulum pretium. Suspendisse eu nisl a ante aliquet bibendum quis a nunc.
|
87
|
+
|
88
|
+
### Tables
|
89
|
+
|
90
|
+
|Title 1 | Title 2 | Title 3 | Title 4 |
|
91
|
+
|--------------------- | --------------------- | --------------------- | ---------------------|
|
92
|
+
|lorem | lorem ipsum | lorem ipsum dolor | lorem ipsum dolor sit|
|
93
|
+
|lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit|
|
94
|
+
|lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit|
|
95
|
+
|lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit | lorem ipsum dolor sit|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: Some articles are just so short that we've to make the footer stick
|
4
|
+
categories: Miscellaneous
|
5
|
+
---
|
6
|
+
|
7
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
layout: post
|
3
|
+
title: Code snippets in a blog post
|
4
|
+
categories: [HTML,Code]
|
5
|
+
---
|
6
|
+
|
7
|
+
This post demonstrate the use of code snippets in the theme. The code snippets are powered by [Pygments](http://pygments.org/) and the code theme that is been used in Reverie is called [Draula](https://draculatheme.com/).
|
8
|
+
|
9
|
+
This is a raw snippet:
|
10
|
+
|
11
|
+
```
|
12
|
+
hello world
|
13
|
+
123
|
14
|
+
This is a text snippet
|
15
|
+
```
|
16
|
+
|
17
|
+
This is a PHP snippet:
|
18
|
+
|
19
|
+
```php
|
20
|
+
<?php
|
21
|
+
echo 'Hello, World!';
|
22
|
+
?>
|
23
|
+
```
|
24
|
+
|
25
|
+
This is a JavaScript snippet:
|
26
|
+
|
27
|
+
```js
|
28
|
+
const add = (a, b) => a + b
|
29
|
+
const minus = (a, b) => a - b
|
30
|
+
|
31
|
+
console.log(add(100,200)) // 300
|
32
|
+
console.log(minus(100,200)) // -100
|
33
|
+
```
|
34
|
+
|
35
|
+
This is a Python snippet:
|
36
|
+
|
37
|
+
```python
|
38
|
+
def say_hello():
|
39
|
+
print("hello world!")
|
40
|
+
|
41
|
+
say_hello() // "hello world!"
|
42
|
+
```
|
data/images/404.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
data/images/galaxy.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/images/reverie.png
ADDED
Binary file
|
data/images/search.png
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,169 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: reverie-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amit Merchant
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-09-15 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.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.0.0
|
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.9'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.9'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-seo-tag
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.1'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-paginate
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.1.0
|
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.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-sitemap
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.3.1
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.3.1
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bundler
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.0.2
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.0.2
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rake
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 12.3.1
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 12.3.1
|
111
|
+
description:
|
112
|
+
email:
|
113
|
+
- bullredeyes@gmail.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- LICENSE
|
119
|
+
- README.md
|
120
|
+
- _includes/analytics.html
|
121
|
+
- _includes/disqus.html
|
122
|
+
- _includes/meta.html
|
123
|
+
- _includes/svg-icons.html
|
124
|
+
- _layouts/default.html
|
125
|
+
- _layouts/page.html
|
126
|
+
- _layouts/post.html
|
127
|
+
- _pages/about.md
|
128
|
+
- _pages/categories.md
|
129
|
+
- _pages/search.md
|
130
|
+
- _posts/2019-02-13-introducing-reverie-jekyll-theme.md
|
131
|
+
- _posts/2019-08-08-no-title-posts.md
|
132
|
+
- _posts/2019-7-27-super-long-article.md
|
133
|
+
- _posts/2019-7-27-this-post-demonstrates-post-content-styles.md
|
134
|
+
- _posts/2019-7-28-super-short-article.md
|
135
|
+
- _posts/2019-8-12-code-snippets.md
|
136
|
+
- images/404.jpg
|
137
|
+
- images/categories.png
|
138
|
+
- images/favicon-32x32.png
|
139
|
+
- images/galaxy.jpg
|
140
|
+
- images/mobile-demo.png
|
141
|
+
- images/reverie-demo.png
|
142
|
+
- images/reverie-text.png
|
143
|
+
- images/reverie.png
|
144
|
+
- images/search.png
|
145
|
+
homepage: https://github.com/amitmerchant1990/reverie
|
146
|
+
licenses:
|
147
|
+
- MIT
|
148
|
+
metadata: {}
|
149
|
+
post_install_message:
|
150
|
+
rdoc_options: []
|
151
|
+
require_paths:
|
152
|
+
- lib
|
153
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
159
|
+
requirements:
|
160
|
+
- - ">="
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '0'
|
163
|
+
requirements: []
|
164
|
+
rubyforge_project:
|
165
|
+
rubygems_version: 2.7.6
|
166
|
+
signing_key:
|
167
|
+
specification_version: 4
|
168
|
+
summary: A ridiculously elegant Jekyll theme.
|
169
|
+
test_files: []
|