jekyll-theme-omega 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.htpasswd +1 -0
- data/_includes/footer.html +5 -5
- data/_includes/head.html +9 -9
- data/_includes/header.html +6 -6
- data/_includes/menu.html +3 -3
- data/_includes/scripts.html +7 -7
- data/_includes/share.html +4 -4
- data/_includes/signoff.html +1 -1
- data/_layouts/home.html +6 -6
- data/htaccess +11 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8de40791e2944d59938e4ce117baedb7b70f6e20
|
|
4
|
+
data.tar.gz: a10aae7d59ce24f5f095d5d2f180a414cf877cef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3840b39a1cd29d9759601a7f7a8b5ed7a3c81cce63bdbb8252b46c0be6d3d64578086d68d47b8bf78600e110259c0467e829ee402aa13d3f797e179f4d8edc91
|
|
7
|
+
data.tar.gz: 4806ab29e46a8984e9f24bb7a39ed28411bdaf47f7f6e22bf2eb7b425e841e269c529915f3e986d0e2dff4daf76c3f840bf703a46ec5e8ddf2dc0752fb2b427c
|
data/.htpasswd
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
guest:$apr1$SpkR9bSP$eyoijyDkGmFHL1ExVc8Xw0
|
data/_includes/footer.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% if page.imagefeature %}
|
|
2
|
-
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url({{ site.url }}/images/{{ page.imagefeature }})">
|
|
2
|
+
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url({{ site.url }}/{{ site.baseurl }}/images/{{ page.imagefeature }})">
|
|
3
3
|
{% else %}
|
|
4
|
-
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url({{ site.url }}/{{ randomBackground }})">
|
|
4
|
+
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url({{ site.url }}/{{ site.baseurl }}/{{ randomBackground }})">
|
|
5
5
|
{% endif %}
|
|
6
6
|
|
|
7
7
|
<div class="inner">
|
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
</li>
|
|
71
71
|
{% endif %}
|
|
72
72
|
<li>
|
|
73
|
-
<a href="{{ site.url }}/feed.xml" data-toggle="tooltip" title="RSS feed" target="_blank">
|
|
73
|
+
<a href="{{ site.url }}/{{ site.baseurl }}/feed.xml" data-toggle="tooltip" title="RSS feed" target="_blank">
|
|
74
74
|
<i class="fa fa-rss"></i>
|
|
75
75
|
</a>
|
|
76
76
|
</li>
|
|
77
77
|
</ul>
|
|
78
78
|
<div>
|
|
79
|
-
<a href="{{ site.url }}/about/">{{ site.author.name }}</a> © {{ site.time | date: '%Y' }} •
|
|
79
|
+
<a href="{{ site.url }}/{{ site.baseurl }}/about/">{{ site.author.name }}</a> © {{ site.time | date: '%Y' }} •
|
|
80
80
|
All rights reserved.
|
|
81
81
|
</div>
|
|
82
82
|
<ul class="menu-items">
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
{% if link.external %}
|
|
86
86
|
<a href="{{ link.url }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i> {% else %} {{ link.title }}{% endif %} </a> •
|
|
87
87
|
{% else %}
|
|
88
|
-
<a href="{{ site.url }}{{ link.url }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i>{% else %}{{ link.title }}{% endif %}</a> •
|
|
88
|
+
<a href="{{ site.url }}/{{ site.baseurl }}{{ link.url }}">{% if link.icon %}<i class="fa fa-{{ link.icon }}"></i>{% else %}{{ link.title }}{% endif %}</a> •
|
|
89
89
|
{% endif %}
|
|
90
90
|
</li>
|
|
91
91
|
{% endfor %}
|
data/_includes/head.html
CHANGED
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
|
|
27
27
|
crossorigin="anonymous">
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" type="text/css" href="{{ site.url }}/assets/css/font-awesome.min.css" />
|
|
30
|
-
<link rel="stylesheet" type="text/css" href="{{ site.url }}/assets/css/syntax.css" />
|
|
31
|
-
<link rel="stylesheet" type="text/css" href="{{ site.url }}/assets/css/main.css" />
|
|
29
|
+
<link rel="stylesheet" type="text/css" href="{{ site.url }}/{{ site.baseurl }}/assets/css/font-awesome.min.css" />
|
|
30
|
+
<link rel="stylesheet" type="text/css" href="{{ site.url }}/{{ site.baseurl }}/assets/css/syntax.css" />
|
|
31
|
+
<link rel="stylesheet" type="text/css" href="{{ site.url }}/{{ site.baseurl }}/assets/css/main.css" />
|
|
32
32
|
|
|
33
33
|
{% if page.mathjax %}
|
|
34
34
|
<!--Load Mathjax-->
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
|
|
63
63
|
<!-- Icons -->
|
|
64
64
|
<!-- 16x16 -->
|
|
65
|
-
<link rel="shortcut icon" href="{{ site.url }}/images/favicons/favicon.ico">
|
|
65
|
+
<link rel="shortcut icon" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/favicon.ico">
|
|
66
66
|
<!-- 32x32 -->
|
|
67
|
-
<link rel="shortcut icon" href="{{ site.url }}/images/favicons/favicon.png">
|
|
67
|
+
<link rel="shortcut icon" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/favicon.png">
|
|
68
68
|
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
|
|
69
|
-
<link rel="apple-touch-icon-precomposed" href="{{ site.url }}/images/favicons/apple-touch-icon-precomposed.png">
|
|
69
|
+
<link rel="apple-touch-icon-precomposed" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/apple-touch-icon-precomposed.png">
|
|
70
70
|
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
|
|
71
|
-
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}/images/favicons/apple-touch-icon-72x72-precomposed.png">
|
|
71
|
+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/apple-touch-icon-72x72-precomposed.png">
|
|
72
72
|
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
|
|
73
|
-
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/favicons/apple-touch-icon-114x114-precomposed.png">
|
|
73
|
+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/apple-touch-icon-114x114-precomposed.png">
|
|
74
74
|
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
|
|
75
|
-
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/favicons/apple-touch-icon-144x144-precomposed.png">
|
|
75
|
+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/{{ site.baseurl }}/images/favicons/apple-touch-icon-144x144-precomposed.png">
|
data/_includes/header.html
CHANGED
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
{% include menu.html %}
|
|
17
17
|
|
|
18
18
|
{% if page.imagefeature %}
|
|
19
|
-
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/images/{{ page.imagefeature }})"
|
|
19
|
+
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ site.baseurl }}/images/{{ page.imagefeature }})"
|
|
20
20
|
itemscope itemtype="http://schema.org/Organization">
|
|
21
21
|
{% if page.imagecredit %}
|
|
22
22
|
<span class="image-credit">Photo Credit: <a href="{{ page.imagecreditlink }}" target="_blank"> {{ page.imagecredit }}</a></span>
|
|
23
23
|
{% endif %}
|
|
24
24
|
{% else %}
|
|
25
|
-
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ randomBackground }})"
|
|
25
|
+
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ site.baseurl }}/{{ randomBackground }})"
|
|
26
26
|
itemscope itemtype="http://schema.org/Organization">
|
|
27
27
|
{% endif %}
|
|
28
28
|
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
{% if page.headline %}
|
|
36
36
|
<div class="inner">
|
|
37
37
|
<div class="container">
|
|
38
|
-
<a class="brand light" href="{{ site.url }}/" itemprop="url">
|
|
39
|
-
{% if site.logo %}<img itemprop="logo" src="{{ site.url }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />{% endif %}
|
|
38
|
+
<a class="brand light" href="{{ site.url }}/{{ site.baseurl }}/" itemprop="url">
|
|
39
|
+
{% if site.logo %}<img itemprop="logo" src="{{ site.url }}/{{ site.baseurl }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />{% endif %}
|
|
40
40
|
<h1 class="blog-title light" itemprop="name">
|
|
41
41
|
{{ site.title }}
|
|
42
42
|
</h1>
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
{% else %}
|
|
51
51
|
<div class="inner">
|
|
52
52
|
<div class="container">
|
|
53
|
-
<a class="brand" href="{{ site.url }}/" itemprop="url">
|
|
54
|
-
{% if site.logo %}<img itemprop="logo" src="{{ site.url }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />{% endif %}
|
|
53
|
+
<a class="brand" href="{{ site.url }}/{{ site.baseurl }}/" itemprop="url">
|
|
54
|
+
{% if site.logo %}<img itemprop="logo" src="{{ site.url }}/{{ site.baseurl }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />{% endif %}
|
|
55
55
|
<h1 class="blog-title light" itemprop="name">
|
|
56
56
|
{{ site.title }}
|
|
57
57
|
</h1>
|
data/_includes/menu.html
CHANGED
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
{% if link.external %}
|
|
10
10
|
<a href="{{ link.url }}">{{ link.title }}</a>
|
|
11
11
|
{% else %}
|
|
12
|
-
<a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a>
|
|
12
|
+
<a href="{{ site.url }}/{{ site.baseurl }}{{ link.url }}">{{ link.title }}</a>
|
|
13
13
|
{% endif %}
|
|
14
14
|
</li>
|
|
15
15
|
{% endfor %}
|
|
16
|
-
<li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="fa fa-rss"></i> Feed</a></li>
|
|
16
|
+
<li><a href="{{ site.url }}/{{ site.baseurl }}/feed.xml" title="Atom/RSS feed"><i class="fa fa-rss"></i> Feed</a></li>
|
|
17
17
|
</ul>
|
|
18
18
|
</nav>
|
|
19
19
|
<nav id="navigation">
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<hr>
|
|
22
22
|
<ul> {% for tag in site.categories %}
|
|
23
23
|
<li>
|
|
24
|
-
<a href="{{ site.url }}/categories/index.html#{{ tag[0] }}">{{ tag[0] }}</a></li>
|
|
24
|
+
<a href="{{ site.url }}/{{ site.baseurl }}/categories/index.html#{{ tag[0] }}">{{ tag[0] }}</a></li>
|
|
25
25
|
{% endfor %}
|
|
26
26
|
</ul>
|
|
27
27
|
</nav>
|
data/_includes/scripts.html
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
|
|
2
2
|
crossorigin="anonymous"></script>
|
|
3
|
-
<script>window.jQuery || document.write('<script src="{{ site.url }}/assets/js/vendor/jquery-1.12.4.min.js"><\/script>')</script>
|
|
3
|
+
<script>window.jQuery || document.write('<script src="{{ site.url }}/{{ site.baseurl }}/assets/js/vendor/jquery-1.12.4.min.js"><\/script>')</script>
|
|
4
4
|
|
|
5
5
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
|
|
6
6
|
crossorigin="anonymous"></script>
|
|
7
7
|
|
|
8
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/plugins/jekyll-search.min.js"></script>
|
|
9
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/plugins/jquery.fitvids.js"></script>
|
|
10
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/plugins/jquery.waypoints.min.js"></script>
|
|
11
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/plugins/jquery.magnific-popup.min.js"></script>
|
|
12
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/main.js"></script>
|
|
13
|
-
<script type="text/javascript" src="{{ site.url }}/assets/js/script.js"></script>
|
|
8
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/plugins/jekyll-search.min.js"></script>
|
|
9
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/plugins/jquery.fitvids.js"></script>
|
|
10
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/plugins/jquery.waypoints.min.js"></script>
|
|
11
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/plugins/jquery.magnific-popup.min.js"></script>
|
|
12
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/main.js"></script>
|
|
13
|
+
<script type="text/javascript" src="{{ site.url }}/{{ site.baseurl }}/assets/js/script.js"></script>
|
|
14
14
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/zenburn.min.css">
|
|
15
15
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
|
|
16
16
|
<script>hljs.initHighlightingOnLoad();</script>
|
data/_includes/share.html
CHANGED
|
@@ -4,23 +4,23 @@
|
|
|
4
4
|
</p>
|
|
5
5
|
<ul class="social-mini">
|
|
6
6
|
<li>
|
|
7
|
-
<a href="https://twitter.com/intent/tweet?text={{ page.title | cgi_escape }}%20{{ site.url }}{{ page.url }}%20via%20@{{ site.author.twitter }}"
|
|
7
|
+
<a href="https://twitter.com/intent/tweet?text={{ page.title | cgi_escape }}%20{{ site.url }}/{{ site.baseurl }}{{ page.url }}%20via%20@{{ site.author.twitter }}"
|
|
8
8
|
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;" data-toggle="tooltip"
|
|
9
9
|
title="Share on Twitter" itemprop="Twitter">
|
|
10
10
|
<i class="fa fa-twitter"></i>
|
|
11
11
|
</a>
|
|
12
12
|
</li>
|
|
13
13
|
<li>
|
|
14
|
-
<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"
|
|
14
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}/{{ site.baseurl }}{{ page.url }}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"
|
|
15
15
|
data-toggle="tooltip" title="Share on Facebook" itemprop="Facebook">
|
|
16
16
|
<i class="fa fa-facebook"></i>
|
|
17
17
|
</a>
|
|
18
18
|
</li>
|
|
19
19
|
<li>
|
|
20
|
-
<a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;"
|
|
20
|
+
<a href="https://plus.google.com/share?url={{ site.url }}/{{ site.baseurl }}{{ page.url }}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;"
|
|
21
21
|
data-toggle="tooltip" title="Share on Google plus" itemprop="GooglePlus">
|
|
22
22
|
<i class="fa fa-google-plus"></i>
|
|
23
23
|
</a>
|
|
24
24
|
</li>
|
|
25
25
|
</ul>
|
|
26
|
-
</div>
|
|
26
|
+
</div>
|
data/_includes/signoff.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div class="post-author text-center">
|
|
2
|
-
<img src="{{site.url}}/images/{{ site.author.picture }}" alt="{{ site.author.name }}'s photo" itemprop="image" class="post-avatar img-circle img-responsive" />
|
|
2
|
+
<img src="{{site.url}}{{ site.baseurl }}/images/{{ site.author.picture }}" alt="{{ site.author.name }}'s photo" itemprop="image" class="post-avatar img-circle img-responsive" />
|
|
3
3
|
<h4 class="bordered-bottom vcard author" itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
4
4
|
By <span itemprop="name" class="fn"><a href="{{ site.url }}/about" title="About {{ site.author.name }}" itemprop="url">{{ site.author.name }}</a></span>
|
|
5
5
|
</h4>
|
data/_layouts/home.html
CHANGED
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
{% if page.imagefeature %}
|
|
28
|
-
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/images/{{ page.imagefeature }})" itemscope itemtype="http://schema.org/Organization">
|
|
28
|
+
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ site.baseurl }}/images/{{ page.imagefeature }})" itemscope itemtype="http://schema.org/Organization">
|
|
29
29
|
{% else %}
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ randomBackground }})" itemscope itemtype="http://schema.org/Organization">
|
|
32
|
+
<header id="masthead" class="blog-background overlay align-center align-middle animated from-bottom" style="background-image: url({{ site.url }}/{{ site.baseurl }}/{{ randomBackground }})" itemscope itemtype="http://schema.org/Organization">
|
|
33
33
|
{% endif %}
|
|
34
34
|
|
|
35
35
|
{% if site.search %}
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
{% if site.description %}
|
|
42
42
|
<div class="inner">
|
|
43
43
|
<div class="container">
|
|
44
|
-
<a class="brand light" href="{{ site.url }}" itemprop="url">
|
|
45
|
-
{% if site.logo %} <img itemprop="logo" src="{{ site.url }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" /> {% endif %}
|
|
44
|
+
<a class="brand light" href="{{ site.url }}/{{ site.baseurl }}" itemprop="url">
|
|
45
|
+
{% if site.logo %} <img itemprop="logo" src="{{ site.url }}/{{ site.baseurl }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" /> {% endif %}
|
|
46
46
|
<h1 class="blog-title light" itemprop="name">
|
|
47
47
|
{{ site.title }}
|
|
48
48
|
</h1>
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
{% else %}
|
|
56
56
|
<div class="inner">
|
|
57
57
|
<div class="container">
|
|
58
|
-
<a class="brand" href="{{ site.url }}" itemprop="url">
|
|
59
|
-
<img itemprop="logo" src="{{ site.url }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />
|
|
58
|
+
<a class="brand" href="{{ site.url }}/{{ site.baseurl }}" itemprop="url">
|
|
59
|
+
<img itemprop="logo" src="{{ site.url }}/{{ site.baseurl }}/images/{{ site.logo }}" alt="{{ site.title }} Logo" />
|
|
60
60
|
<h1 class="blog-title light" itemprop="name">
|
|
61
61
|
{{ site.title }}
|
|
62
62
|
</h1>
|
data/htaccess
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-omega
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- hmfaysal
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-05-
|
|
12
|
+
date: 2018-05-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -172,6 +172,7 @@ executables: []
|
|
|
172
172
|
extensions: []
|
|
173
173
|
extra_rdoc_files: []
|
|
174
174
|
files:
|
|
175
|
+
- ".htpasswd"
|
|
175
176
|
- LICENSE.txt
|
|
176
177
|
- README.md
|
|
177
178
|
- _includes/browser-upgrade.html
|
|
@@ -275,6 +276,7 @@ files:
|
|
|
275
276
|
- assets/js/script.js
|
|
276
277
|
- assets/js/vendor/jquery-1.12.4.min.js
|
|
277
278
|
- assets/json/search.json
|
|
279
|
+
- htaccess
|
|
278
280
|
homepage: https://github.com/hmfaysal/hmfaysal-omega-theme
|
|
279
281
|
licenses:
|
|
280
282
|
- MIT
|