docs-gaia-jekyll-theme 0.1.4 → 0.1.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 +5 -5
- data/_layouts/default.html +88 -85
- data/assets/css/asciidoctor.css +3 -3
- data/assets/css/foundation.css +1 -1
- data/assets/images/cambio-logo.png +0 -0
- data/assets/images/header-page.png +0 -0
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cc0ed3a59e253c9658cee78161181e18c81a4576e0ee5dad1f28462856cb17f5
|
4
|
+
data.tar.gz: 25e54103ed309cd1b7e435211ca2da785e7733ba0b6cb0e87650810d5f617be9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53fa5a706d5335aababeb7eb6c6a7041ca9ef19a3f17edbe59c85541827e4a912169f7c99bfecebafddca8b21815e54d84df39dc54f61a6a3d309208733c45fa
|
7
|
+
data.tar.gz: 691bea43ad32e380ef47c772d262ae075805fc719bf1490f8066241be2b86fd3d1ca4d6279eac98c73b12b1b9b30ae7a5cb66af0606c3a561ffb640f98fe1b6c
|
data/_layouts/default.html
CHANGED
@@ -1,100 +1,103 @@
|
|
1
1
|
<!doctype html>
|
2
2
|
<!--[if IE 9]>
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
3
|
+
<html class="lt-ie10" lang="en"> <![endif]-->
|
4
|
+
<html class="no-js" lang="en" data-useragent="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)">
|
5
|
+
<head>
|
6
|
+
<meta charset="utf-8">
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
8
|
+
<title>{{page.title}}</title>
|
9
|
+
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
10
|
+
<meta name="author" content="Your name goes here">
|
11
|
+
<meta name="copyright" content="Maybe consider a Creative Commons license">
|
12
|
+
<link rel="stylesheet" href="{{page.root}}assets/css/foundation.css">
|
13
|
+
<link rel="stylesheet" href="{{page.root}}assets/css/font-awesome.css">
|
14
|
+
<link rel="stylesheet" href="{{page.root}}assets/css/coderay.css">
|
15
|
+
<link rel="stylesheet" href="{{page.root}}assets/css/asciidoctor.css">
|
16
|
+
<script src="{{page.root}}assets/js/vendor/modernizr.js"></script>
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<!-- Nav Bar -->
|
20
|
+
<nav class="top-bar" data-topbar >
|
21
|
+
<section>
|
22
|
+
<ul class="title-area">
|
23
|
+
<li class="name">
|
24
|
+
<h1>
|
25
|
+
<a href="http://docs.gaiadev.xyz"><img src="assets/images/cambio-logo.png" width="100" style="margin-right:15px;"/>Gaia Project Documentation</a>
|
26
|
+
</h1>
|
27
|
+
</li>
|
28
|
+
</ul>
|
29
|
+
{% if site.title != 'Gaia Project Documentation' %}
|
30
|
+
<ul class="title-area">
|
31
|
+
<li class="name"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
|
32
|
+
</ul>
|
33
|
+
{% if jekyll.environment != "master" and jekyll.environment != "development" %}
|
34
|
+
<ul class="title-area">
|
35
|
+
<li class="name">
|
36
|
+
<h1>
|
37
|
+
<a href="..">{{site.title}}</a>
|
38
|
+
</h1>
|
39
|
+
</li>
|
40
|
+
</ul>
|
41
|
+
{% else %}
|
42
|
+
<ul class="title-area">
|
43
|
+
<li class="name">
|
44
|
+
<h1>
|
45
|
+
<a href=".">{{site.title}}</a>
|
46
|
+
</h1>
|
47
|
+
</li>
|
48
|
+
</ul>
|
49
|
+
{% endif %}
|
50
|
+
{% endif %}
|
51
|
+
{% if jekyll.environment != "master" and jekyll.environment != "development" %}
|
52
|
+
<ul class="title-area">
|
53
|
+
<li class="name"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
|
54
|
+
</ul>
|
55
|
+
<ul class="title-area">
|
56
|
+
<li class="name"><h1><a href=".">{{jekyll.environment}}</a></h1></li>
|
57
|
+
</ul>
|
58
|
+
{% endif %}
|
59
|
+
</section>
|
60
|
+
</nav>
|
61
|
+
<!-- End Nav -->
|
59
62
|
|
60
|
-
<!-- Main Page Content and Sidebar -->
|
61
63
|
|
62
|
-
|
63
|
-
{% if site.title != page.title %}
|
64
|
-
<h2>{{page.title}}</h2>
|
65
|
-
{% endif %}
|
66
|
-
<!-- Main Blog Content -->
|
67
|
-
<div class="large-12 columns" role="content">
|
64
|
+
<!-- Main Page Content and Sidebar -->
|
68
65
|
|
69
|
-
|
66
|
+
<div class="row">
|
67
|
+
{% if site.title != page.title %}
|
68
|
+
<h2>{{page.title}}</h2>
|
69
|
+
{% endif %}
|
70
|
+
<!-- Main Blog Content -->
|
71
|
+
<div class="large-12 columns" role="content">
|
70
72
|
|
71
|
-
|
73
|
+
{{ content }}
|
72
74
|
|
73
|
-
<!-- End Main Content -->
|
74
75
|
</div>
|
75
76
|
|
76
|
-
<!-- End Main Content
|
77
|
+
<!-- End Main Content -->
|
78
|
+
</div>
|
77
79
|
|
80
|
+
<!-- End Main Content and Sidebar -->
|
78
81
|
|
79
|
-
<!-- Footer -->
|
80
82
|
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
83
|
+
<!-- Footer -->
|
84
|
+
|
85
|
+
<footer class="row">
|
86
|
+
<div class="large-12 columns">
|
87
|
+
<hr>
|
88
|
+
<div class="row">
|
89
|
+
<div class="large-12 columns">
|
88
90
|
</div>
|
89
91
|
</div>
|
90
|
-
</
|
92
|
+
</div>
|
93
|
+
</footer>
|
91
94
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
$(document).foundation();
|
96
|
-
var doc = document.documentElement;
|
97
|
-
doc.setAttribute('data-useragent', navigator.userAgent);
|
98
|
-
|
99
|
-
|
100
|
-
|
95
|
+
<script src="{{page.root}}assets/js/vendor/jquery.js"></script>
|
96
|
+
<script src="{{page.root}}assets/js/foundation.min.js"></script>
|
97
|
+
<script>
|
98
|
+
$(document).foundation();
|
99
|
+
var doc = document.documentElement;
|
100
|
+
doc.setAttribute('data-useragent', navigator.userAgent);
|
101
|
+
</script>
|
102
|
+
</body>
|
103
|
+
</html>
|
data/assets/css/asciidoctor.css
CHANGED
@@ -66,7 +66,7 @@ a:hover,a:focus{color:#1d4b8f}
|
|
66
66
|
a img{border:none}
|
67
67
|
p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}
|
68
68
|
p aside{font-size:.875em;line-height:1.35;font-style:italic}
|
69
|
-
h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#
|
69
|
+
h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba0020;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em}
|
70
70
|
h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0}
|
71
71
|
h1{font-size:2.125em}
|
72
72
|
h2{font-size:1.6875em}
|
@@ -170,7 +170,7 @@ body.toc2.toc-right{padding-left:0;padding-right:20em}}#content #toc{border-styl
|
|
170
170
|
#content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400}
|
171
171
|
#content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em}
|
172
172
|
#content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible}
|
173
|
-
#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#
|
173
|
+
#content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba0020;text-decoration:none}
|
174
174
|
#content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221}
|
175
175
|
.audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em}
|
176
176
|
.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic}
|
@@ -395,4 +395,4 @@ body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-b
|
|
395
395
|
.hide-on-print{display:none!important}
|
396
396
|
.print-only{display:block!important}
|
397
397
|
.hide-for-print{display:none!important}
|
398
|
-
.show-for-print{display:inherit!important}}
|
398
|
+
.show-for-print{display:inherit!important}}
|
data/assets/css/foundation.css
CHANGED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docs-gaia-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MIG
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -99,7 +99,7 @@ homepage: http://docs.gaiadev.xyz
|
|
99
99
|
licenses:
|
100
100
|
- MIT
|
101
101
|
metadata: {}
|
102
|
-
post_install_message:
|
102
|
+
post_install_message:
|
103
103
|
rdoc_options: []
|
104
104
|
require_paths:
|
105
105
|
- lib
|
@@ -114,9 +114,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
- !ruby/object:Gem::Version
|
115
115
|
version: '0'
|
116
116
|
requirements: []
|
117
|
-
|
118
|
-
|
119
|
-
signing_key:
|
117
|
+
rubygems_version: 3.2.15
|
118
|
+
signing_key:
|
120
119
|
specification_version: 4
|
121
120
|
summary: Gaia Jekyll theme
|
122
121
|
test_files: []
|