jekyll-theme-prettydocs 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6357ffbb7c5b71b95a630cca51e310030aeb9fa2
4
- data.tar.gz: '05973601b66a626dc50e8be1a9e6a65e87ad5c82'
3
+ metadata.gz: 97bba91b82e7c196c3825c93f0722f942780d4e3
4
+ data.tar.gz: f6fea151c22e2f2ec3fb3522e4cf14509c9d9d30
5
5
  SHA512:
6
- metadata.gz: 7fc911cadce50239968d95aa0de45a3367f55245a113b0d4c9bbf58a9d02c799b3b0ce4d1cd32b542e082a297fa02f7c1192ac852dd0b2d2c66f8b7d3702f68c
7
- data.tar.gz: 189e18afe5db24c286c094954b79c419f089ee5a143dec041bf2ae0e3ad089613d137844d71fadf902227724e17a9514d154e7824fd1e2f9e0020ed4f621c35c
6
+ metadata.gz: f79550269f95aa9aac5a88fa5f1ac120c5b0b118c13aa65141d6fe7786e08264f331620fb2589e26469844a13d16c13bf3b4627509190aae59fc17bfcca36f48
7
+ data.tar.gz: 90cd50db7d623ef072324b7842e944de12fb4459cb64957e1d0064e73b37909bfbebf45108e8d2bd81f9dff4a58bcfde5a70a70ff70e987d9ccdad938b8bcffa
data/README.md CHANGED
@@ -1,51 +1,227 @@
1
- # jekyll-theme-prettydocs
1
+ # Jekyll Theme PrettyDocs
2
2
 
3
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Inspired on https://themes.3rdwavemedia.com/demo/prettydocs/
6
4
 
7
5
  ## Installation
8
6
 
9
7
  Add this line to your Jekyll site's Gemfile:
10
8
 
11
9
  ```ruby
12
- #replace
13
- gem "minima"
14
- #by
15
10
  gem "jekyll-theme-prettydocs"
16
11
  ```
12
+ And then run:
13
+
14
+ ```shell
15
+ $ sudo bundle update
16
+ ```
17
17
 
18
- And add this line to your Jekyll site's `_config.yml`:
18
+ Or install it yourself, run:
19
+
20
+ ```shell
21
+ $ gem install jekyll-theme-prettydocs
22
+ ```
23
+
24
+ After yor install theme, you should replace `minima` theme for new `jekyll-theme-prettydocs` theme.
25
+ To do it, change in `_config.yml` file, like this:
19
26
 
20
27
  ```yaml
21
- #replace
28
+ #replace
22
29
  theme: minima
23
30
  #by
24
31
  theme: jekyll-theme-prettydocs
25
32
  ```
26
33
 
27
- And then execute:
34
+ To start jekyll server, run:
35
+
36
+ ```
37
+ $ jekyll s
38
+ ```
39
+
40
+ Open in your browser `http://localhost:4000`. See the site, with this wonderful theme.
41
+
42
+ ![](./screenshot.png)
43
+
44
+ **After you install and start, you can to do your changes.**
45
+
46
+ ## Customize theme
47
+
48
+ ### Home Page
49
+
50
+ The first thing that you will want to change is home page links list. So, what you need is simple. Just create your pages, with these attributes:
51
+
52
+ ```yaml
53
+ cards-section: blue
54
+ title: Title of page
55
+ intro: Intro of page
56
+ icon: icon_gift
57
+ ```
58
+
59
+ So, with these small attributes into your pages, you can create a list of links in home page. Below, some description about each attribute.
60
+
61
+ #### cards-section
62
+
63
+ Cards section is usually the color of card. The colors availables is: blue, pink, purple, orange, green, and primary.
64
+
65
+ #### title
66
+
67
+ The title is title of card. It's the strong text on card.
68
+
69
+ #### intro
70
+
71
+ The intro is a introdution of card. It's a description about card.
72
+
73
+ #### icon
74
+
75
+ The icon is icon of card. 600+ FontAwesome icons.
76
+
77
+ ### Header
78
+
79
+ Default header.
80
+
81
+ {% include header.html %}
82
+
83
+ Custom header, with no breadcrumb.
84
+
85
+ {% include breadcrumb="" %}
86
+
87
+ Below, some description about all attributes.
88
+
89
+ #### icon
90
+
91
+ The icon is icon of page. 600+ FontAwesome icons.
28
92
 
29
- $ sudo bundle update
93
+ #### title
30
94
 
31
- Or install it yourself as:
95
+ The title is title of page. It's the same color of page.
32
96
 
33
- $ gem install jekyll-theme-prettydocs
97
+ #### bold
34
98
 
35
- ## Usage
99
+ The bold is white title of page.
36
100
 
37
- How to use this theme? After you generate a new site running `jekyll new site-name`, you can to follow above steps for instalation.
101
+ #### breadcrumb
38
102
 
39
- Installing a new theme. If you need more help, click [here](https://jekyllrb.com/docs/themes/#installing-a-theme).
103
+ The breadcrumb usually show or hide the section of breadcrumb. Default value is 'true', but if you set '' or 'false' you don't show breadcrumb more.
40
104
 
41
- ## Errors
105
+ #### breadcrumb-home-link
42
106
 
43
- If show error: *"Liquid Exception: Could not locate the included file 'icon-github.html'..."* you should open *about.md* and remove references the files include of minima theme, like:
107
+ The link to home link.
44
108
 
109
+ #### breadcrumb-home-title
110
+
111
+ The title of Home page link.
112
+
113
+ #### breadcrumb-active
114
+
115
+ The breadcrumb-active usually show or hide the second part of breadcrumb.
116
+
117
+ Example with others attributes.
118
+
119
+ {% include header.html
120
+ icon="fa fa-hashtag"
121
+ title="Title"
122
+ bold="White"
123
+ breadcrumb=""
124
+ %}
125
+
126
+ ### Promo Block
127
+
128
+ Default.
129
+
130
+ {% include promo-block.html %}
131
+
132
+ Custom promo block.
133
+
134
+ {% include
135
+ title="My Project"
136
+ figure="/assets/images/demo/appkit-account-drive-thumb.jpg"
137
+ figure-link="http://maiconpinto.com.br"
138
+ %}
139
+
140
+ Below, some description about all attributes.
141
+
142
+ #### icon
143
+
144
+ The icon is icon of promo block. 600+ FontAwesome icons.
145
+
146
+ #### title
147
+
148
+ The title is title of promo block.
149
+
150
+ #### title-link
151
+
152
+ The title-link is the URL of title of promo block.
153
+
154
+ #### figure
155
+
156
+ The figure is the URL of image of promo block.
157
+
158
+ #### figure-link
159
+
160
+ The figure-link is the link image of promo block.
161
+
162
+ #### figure-title
163
+
164
+ The figure-title is the title of alt attribute of image.
165
+
166
+ #### content
167
+
168
+ The content is description of promo block.
169
+
170
+ #### content-title
171
+
172
+ The content-title is the title of content. It's the strong text.
173
+
174
+ #### author
175
+
176
+ The author is author name.
177
+
178
+ #### author-link
179
+
180
+ The author-link is URL to author.
181
+
182
+ ### Content of Page
183
+
184
+ I'd like to do it the easy way, but for now I've only found this way.
185
+ You need to have the Emmet plugin installed in your editor.
186
+ Once installed, you will copy the below line, and paste into body of your page.
187
+
188
+ ```html
189
+ div.doc-wrapper>div.container>((div#doc-header.doc-header.text-center>(h1.doc-title>i.icon.fa.fa-paper-plane{Quick Start})+(div.meta>i.fa.fa-clock-o{Last Update on}))+(div.doc-body>((div.doc-content>div.content-inner>section.doc-section#download-section>(h2.section-title{Download})+(div.section-block))+(div.doc-sidebar.hidden-xs>nav#doc-menu>li>a.scrollto[href=#download-section]{Download}))))
45
190
  ```
46
- {% include icon-github.html username="jekyll" %} /
191
+
192
+ ## A complete example of page
193
+
194
+ ```html
195
+ ---
196
+ layout: green
197
+ title: Page example
198
+ permalink: /example-page/
199
+ cards-section: green
200
+ title: Title of page
201
+ intro: Intro of page
202
+ icon: icon_gift
203
+ ---
204
+
205
+ {% include header.html
206
+ icon="fa fa-hashtag"
207
+ title="Quick Start"
208
+ bold="Page"
209
+ %}
210
+
211
+ div.doc-wrapper>div.container>((div#doc-header.doc-header.text-center>(h1.doc-title>i.icon.fa.fa-paper-plane{Quick Start})+(div.meta>i.fa.fa-clock-o{Last Update on}))+(div.doc-body>((div.doc-content>div.content-inner>section.doc-section#download-section>(h2.section-title{Download})+(div.section-block{div.doc-wrapper>div.container>((div#doc-header.doc-header.text-center>(h1.doc-title>i.icon.fa.fa-paper-plane{Quick Start})+(div.meta>i.fa.fa-clock-o{Last Update on}))+(div.doc-body>((div.doc-content>div.content-inner>section.doc-section#download-section>(h2.section-title{Download})+(div.section-block))+(div.doc-sidebar.hidden-xs>nav#doc-menu>li>a.scrollto[href=#download-section]{Download}))))}))+(div.doc-sidebar.hidden-xs>nav#doc-menu>li>a.scrollto[href=#download-section]{Download}))))
212
+
213
+ {% include promo-block.html
214
+ title="My Project"
215
+ figure="/assets/images/demo/appkit-account-drive-thumb.jpg"
216
+ figure-link="http://maiconpinto.com.br"
217
+ author="Maicon Pinto"
218
+ author-link="http://maiconpinto.com.br"
219
+ %}
47
220
  ```
48
221
 
222
+ ![](./assets/images/demo/a-complete-example-of-page.png)
223
+
224
+
49
225
  ## Contributing
50
226
 
51
227
  Bug reports and pull requests are welcome on GitHub at https://github.com/maiconpinto/jekyll-theme-prettydocs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -8,19 +8,40 @@
8
8
  </div><!--//cta-container-->
9
9
  </div><!--//intro-->
10
10
  <div id="cards-wrapper" class="cards-wrapper row">
11
-
12
- {% include card-quick.html %}
13
-
14
- {% include card-components.html %}
15
-
16
- {% include card-charts.html %}
17
-
18
- {% include card-faqs.html %}
19
-
20
- {% include card-showcase.html %}
21
-
22
- {% include card-license.html %}
11
+ {% assign show_cards_section = true %}
12
+
13
+ {% for page in site.pages %}
14
+ {% if page.cards-section != null %}
15
+ {% assign show_cards_section = false %}
16
+ <div class="item item-{{ page.cards-section }} col-md-4 col-sm-6 col-xs-6">
17
+ <div class="item-inner">
18
+ <div class="icon-holder">
19
+ <span aria-hidden="true" class="icon {{ page.icon }}"></span>
20
+ </div><!--//icon-holder-->
21
+ <h3 class="title">{{ page.title }} </h3>
22
+ <p class="intro">{{ page.intro }}</p>
23
+ <a class="link" href="{{ page.url | prepend: site.baseurl }}"><span></span></a>
24
+ </div><!--//item-inner-->
25
+ </div><!--//item-->
26
+ {% endif %}
27
+ {% endfor %}
28
+
29
+ {% if show_cards_section == true %}
30
+
31
+ {% include card-quick.html %}
32
+
33
+ {% include card-components.html %}
34
+
35
+ {% include card-charts.html %}
36
+
37
+ {% include card-faqs.html %}
38
+
39
+ {% include card-showcase.html %}
40
+
41
+ {% include card-license.html %}
42
+
43
+ {% endif %}
23
44
  </div><!--//cards-->
24
-
45
+
25
46
  </div><!--//container-->
26
47
  </section><!--//cards-section-->
@@ -1,17 +1,70 @@
1
+ {% if include.icon != null %}
2
+ {% assign icon = include.icon %}
3
+ {% else %}
4
+ {% assign icon = 'icon_documents_alt icon' %}
5
+ {% endif %}
6
+
7
+ {% if include.title != null %}
8
+ {% assign title = include.title %}
9
+ {% else %}
10
+ {% assign title = 'Pretty' %}
11
+ {% endif %}
12
+
13
+ {% if include.bold != null %}
14
+ {% assign bold = include.bold %}
15
+ {% else %}
16
+ {% assign bold = 'Docs' %}
17
+ {% endif %}
18
+
19
+ {% if include.breadcrumb != null %}
20
+ {% assign breadcrumb = include.breadcrumb %}
21
+ {% else %}
22
+ {% assign breadcrumb = 'true' %}
23
+ {% endif %}
24
+
25
+ {% if include.breadcrumb-home-link != null %}
26
+ {% assign breadcrumb-home-link = include.breadcrumb-home-link %}
27
+ {% else %}
28
+ {% assign breadcrumb-home-link = 'index.html' %}
29
+ {% endif %}
30
+
31
+ {% if include.breadcrumb-home-title != null %}
32
+ {% assign breadcrumb-home-title = include.breadcrumb-home-title %}
33
+ {% else %}
34
+ {% assign breadcrumb-home-title = 'Home' %}
35
+ {% endif %}
36
+
37
+ {% if include.breadcrumb-active != null %}
38
+ {% assign breadcrumb-active = include.breadcrumb-active %}
39
+ {% else %}
40
+ {% assign breadcrumb-active = 'Quick Start' %}
41
+ {% endif %}
42
+
43
+ {% if breadcrumb-active != '' %}
44
+ {% assign breadcrumb-active-hide = false %}
45
+ {% else %}
46
+ {% assign breadcrumb-active-hide = true %}
47
+ {% endif %}
48
+
1
49
  <!-- ******Header****** -->
2
50
  <header id="header" class="header">
3
51
  <div class="container">
4
52
  <div class="branding">
5
53
  <h1 class="logo">
6
- <a href="index.html">
7
- <span aria-hidden="true" class="icon_documents_alt icon"></span>
8
- <span class="text-highlight">Pretty</span><span class="text-bold">Docs</span>
54
+ <a href="{{ page.url }}">
55
+ <span aria-hidden="true" class="{{ icon }}"></span>
56
+ <span class="text-highlight">{{ title }}</span>
57
+ <span class="text-bold">{{ bold }}</span>
9
58
  </a>
10
59
  </h1>
11
60
  </div><!--//branding-->
61
+ {% if breadcrumb == 'true' %}
12
62
  <ol class="breadcrumb">
13
- <li><a href="index.html">Home</a></li>
14
- <li class="active">Showcase</li>
63
+ <li><a href="{{ breadcrumb-home-link }}">{{ breadcrumb-home-title }}</a></li>
64
+ {%if breadcrumb-active-hide == false %}
65
+ <li class="active">{{ breadcrumb-active }}</li>
66
+ {% endif %}
15
67
  </ol>
68
+ {% endif %}
16
69
  </div><!--//container-->
17
70
  </header><!--//header-->
@@ -0,0 +1 @@
1
+ maiconpinto
@@ -1,26 +1,87 @@
1
+ {% if include.icon != null %}
2
+ {% assign icon = include.icon %}
3
+ {% else %}
4
+ {% assign icon = 'fa fa-heart' %}
5
+ {% endif %}
6
+
7
+ {% if include.title-link != null %}
8
+ {% assign title-link = include.title-link %}
9
+ {% else %}
10
+ {% assign title-link = 'https://wrapbootstrap.com/theme/appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm' %}
11
+ {% endif %}
12
+
13
+ {% if include.title != null %}
14
+ {% assign title = include.title %}
15
+ {% else %}
16
+ {% assign title = 'AppKit - Bootstrap Angular Admin Theme for Developers' %}
17
+ {% endif %}
18
+
19
+ {% if include.figure != null %}
20
+ {% assign figure = include.figure | prepend: site.baseurl %}
21
+ {% else %}
22
+ {% assign figure = '/assets/images/demo/appkit-widgets-thumb.jpg' | prepend: site.baseurl %}
23
+ {% endif %}
24
+
25
+ {% if include.figure-link != null %}
26
+ {% assign figure-link = include.figure-link %}
27
+ {% else %}
28
+ {% assign figure-link = 'https://wrapbootstrap.com/theme/appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm' %}
29
+ {% endif %}
30
+
31
+ {% if include.figure-title != null %}
32
+ {% assign figure-title = include.figure-title %}
33
+ {% else %}
34
+ {% assign figure-title = 'AppKit Theme' %}
35
+ {% endif %}
36
+
37
+ {% if include.content != null %}
38
+ {% assign content = include.content %}
39
+ {% else %}
40
+ {% assign content = '<p>Check out AppKit - an Angular admin theme I created with my developer friend <a href="https://twitter.com/tnajdek">Tom Najdek</a> for developers. AppKit uses modern front-end technologies and is packed with useful components and widgets to speed up your app development.</p>
41
+ <p><strong class="highlight">[Tip for developers]:</strong> If your project is Open Source, you can use this area to promote your other projects or hold third party adverts like Bootstrap and FontAwesome do!</p>' %}
42
+ {% endif %}
43
+
44
+ {% if include.content-title != null %}
45
+ {% assign content-title = include.content-title %}
46
+ {% else %}
47
+ {% assign content-title = 'Love this free documentation theme?' %}
48
+ {% endif %}
49
+
50
+ {% if include.author != null %}
51
+ {% assign author = include.author %}
52
+ {% else %}
53
+ {% assign author = 'Xiaoying Riley' %}
54
+ {% endif %}
55
+
56
+ {% if include.author-link != null %}
57
+ {% assign author-link = include.author-link %}
58
+ {% else %}
59
+ {% assign author-link = 'http://themes.3rdwavemedia.com' %}
60
+ {% endif %}
61
+
62
+
1
63
  <div id="promo-block" class="promo-block">
2
64
  <div class="container">
3
65
  <div class="promo-block-inner">
4
- <h3 class="promo-title text-center"><i class="fa fa-heart"></i> <a href="https://wrapbootstrap.com/theme/appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank">AppKit - Bootstrap Angular Admin Theme for Developers</a></h3>
66
+ <h3 class="promo-title text-center"><i class="{{ icon }}"></i> <a href="{{ title-link }}" target="_blank">{{ title }} </a></h3>
5
67
  <div class="row">
6
68
  <div class="figure-holder col-md-5 col-sm-6 col-xs-12">
7
69
  <div class="figure-holder-inner">
8
- <a href="https://wrapbootstrap.com/theme/appkit-admin-theme-angularjs-WB051SCJ1?ref=3wm" target="_blank"><img class="img-responsive" src="assets/images/demo/appkit-widgets-thumb.jpg" alt="AppKit Theme" /></a>
9
- <a class="mask" href="#hook"><i class="icon fa fa-heart pink"></i></a>
10
-
70
+ <a href="{{ link-figure }}"><img class="img-responsive" src="{{ figure }}" alt="{{ figure-title }}" /></a>
71
+ <a class="mask" href="{{ figure-link }}" target="_blank"><i class="icon fa fa-heart pink"></i></a>
72
+
11
73
  </div>
12
74
  </div><!--//figure-holder-->
13
75
  <div class="content-holder col-md-7 col-sm-6 col-xs-12">
14
76
  <div class="content-holder-inner">
15
77
  <div class="desc">
16
- <h4 class="content-title"><strong>Love this free documentation theme?</strong></h4>
17
- <p>Check out AppKit - an Angular admin theme I created with my developer friend <a href="https://twitter.com/tnajdek">Tom Najdek</a> for developers. AppKit uses modern front-end technologies and is packed with useful components and widgets to speed up your app development.</p>
18
- <p><strong class="highlight">[Tip for developers]:</strong> If your project is Open Source, you can use this area to promote your other projects or hold third party adverts like Bootstrap and FontAwesome do!</p>
78
+ <h4 class="content-title"><strong>{{ content-title }}</strong></h4>
79
+ {{ content }}
19
80
  </div><!--//desc-->
20
- <div class="author"><a href="http://themes.3rdwavemedia.com">Xiaoying Riley</a></div>
81
+ <div class="author"><a href="{{ author-link }}" target="_blank">{{ author }}</a></div>
21
82
  </div><!--//content-holder-inner-->
22
83
  </div><!--//content-holder-->
23
84
  </div><!--//row-->
24
- </div><!--//promo-block-inner-->
85
+ </div><!--//promo-block-inner-->
25
86
  </div><!--//container-->
26
87
  </div><!--//promo-block-->
@@ -13,7 +13,7 @@
13
13
  <link rel="shortcut icon" href="favicon.ico">
14
14
  <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
15
15
  <!-- Global CSS -->
16
- <link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
16
+ <link rel="stylesheet" href="{{ "/assets/plugins/bootstrap/css/bootstrap.min.css" | prepend: site.baseurl }}">
17
17
  <!-- Plugins CSS -->
18
18
  <link rel="stylesheet" href="{{ "/assets/plugins/font-awesome/css/font-awesome.css" | prepend: site.baseurl }}">
19
19
  <link rel="stylesheet" href="{{ "/assets/plugins/prism/prism.css" | prepend: site.baseurl }}">
@@ -17,6 +17,7 @@
17
17
  <!-- Plugins CSS -->
18
18
  <link rel="stylesheet" href="{{ "/assets/plugins/font-awesome/css/font-awesome.css" | prepend: site.baseurl }}">
19
19
  <link rel="stylesheet" href="{{ "/assets/plugins/prism/prism.css" | prepend: site.baseurl }}">
20
+ <link rel="stylesheet" href="{{ "/assets/plugins/lightbox/dist/ekko-lightbox.min.css" | prepend: site.baseurl }}">
20
21
  <link rel="stylesheet" href="{{ "/assets/plugins/elegant_font/css/style.css" | prepend: site.baseurl }}">
21
22
 
22
23
  <!-- Theme CSS -->
@@ -43,6 +44,7 @@
43
44
  <script type="text/javascript" src="{{ "/assets/plugins/bootstrap/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
44
45
  <script type="text/javascript" src="{{ "/assets/plugins/prism/prism.js" | prepend: site.baseurl }}"></script>
45
46
  <script type="text/javascript" src="{{ "/assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js" | prepend: site.baseurl }}"></script>
47
+ <script type="text/javascript" src="{{ "/assets/plugins/lightbox/dist/ekko-lightbox.min.js" | prepend: site.baseurl }}"></script>
46
48
  <script type="text/javascript" src="{{ "/assets/plugins/jquery-match-height/jquery.matchHeight-min.js" | prepend: site.baseurl }}"></script>
47
49
  <script type="text/javascript" src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script>
48
50
 
@@ -1,53 +1,53 @@
1
1
  <!DOCTYPE html>
2
- <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
3
- <!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
4
- <!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
2
+ <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
3
+ <!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
4
+ <!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
5
5
  <head>
6
- <title>Responsive website template for documentations</title>
6
+ <title>{{ site.title | prepend: " - " | prepend: page.title }}</title>
7
7
  <!-- Meta -->
8
8
  <meta charset="utf-8">
9
9
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
10
10
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
11
  <meta name="description" content="">
12
- <meta name="author" content="">
13
- <link rel="shortcut icon" href="favicon.ico">
12
+ <meta name="author" content="">
13
+ <link rel="shortcut icon" href="favicon.ico">
14
14
  <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
15
15
  <!-- Global CSS -->
16
- <link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
17
- <!-- Plugins CSS -->
18
- <link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.css">
19
- <link rel="stylesheet" href="assets/plugins/prism/prism.css">
20
- <link rel="stylesheet" href="assets/plugins/lightbox/dist/ekko-lightbox.min.css">
21
- <link rel="stylesheet" href="assets/plugins/elegant_font/css/style.css">
16
+ <link rel="stylesheet" href="{{ "/assets/plugins/bootstrap/css/bootstrap.min.css" | prepend: site.baseurl }}">
17
+ <!-- Plugins CSS -->
18
+ <link rel="stylesheet" href="{{ "/assets/plugins/font-awesome/css/font-awesome.css" | prepend: site.baseurl }}">
19
+ <link rel="stylesheet" href="{{ "/assets/plugins/prism/prism.css" | prepend: site.baseurl }}">
20
+ <link rel="stylesheet" href="{{ "/assets/plugins/lightbox/dist/ekko-lightbox.min.css" | prepend: site.baseurl }}">
21
+ <link rel="stylesheet" href="{{ "/assets/plugins/elegant_font/css/style.css" | prepend: site.baseurl }}">
22
22
 
23
23
  <!-- Theme CSS -->
24
- <link id="theme-style" rel="stylesheet" href="assets/css/styles.css">
24
+ <link id="theme-style" rel="stylesheet" href="{{ "/assets/css/styles.css" | prepend: site.baseurl }}">
25
25
  <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
26
26
  <!--[if lt IE 9]>
27
27
  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
28
28
  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
29
29
  <![endif]-->
30
-
31
- </head>
30
+
31
+ </head>
32
32
 
33
33
  <body class="body-pink">
34
34
  <div class="page-wrapper">
35
-
35
+
36
36
  {{ content }}
37
-
37
+
38
38
  </div><!--//page-wrapper-->
39
-
39
+
40
40
  {% include footer.html %}
41
-
41
+
42
42
  <!-- Main Javascript -->
43
- <script type="text/javascript" src="assets/plugins/jquery-1.12.3.min.js"></script>
44
- <script type="text/javascript" src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
45
- <script type="text/javascript" src="assets/plugins/prism/prism.js"></script>
46
- <script type="text/javascript" src="assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js"></script>
47
- <script type="text/javascript" src="assets/plugins/lightbox/dist/ekko-lightbox.min.js"></script>
48
- <script type="text/javascript" src="assets/plugins/jquery-match-height/jquery.matchHeight-min.js"></script>
49
- <script type="text/javascript" src="assets/js/main.js"></script>
50
-
43
+ <script type="text/javascript" src="{{ "/assets/plugins/jquery-1.12.3.min.js" | prepend: site.baseurl }}"></script>
44
+ <script type="text/javascript" src="{{ "/assets/plugins/bootstrap/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
45
+ <script type="text/javascript" src="{{ "/assets/plugins/prism/prism.js" | prepend: site.baseurl }}"></script>
46
+ <script type="text/javascript" src="{{ "/assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js" | prepend: site.baseurl }}"></script>
47
+ <script type="text/javascript" src="{{ "/assets/plugins/lightbox/dist/ekko-lightbox.min.js" | prepend: site.baseurl }}"></script>
48
+ <script type="text/javascript" src="{{ "/assets/plugins/jquery-match-height/jquery.matchHeight-min.js" | prepend: site.baseurl }}"></script>
49
+ <script type="text/javascript" src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script>
50
+
51
51
  </body>
52
- </html>
52
+ </html>
53
53
 
@@ -21,7 +21,7 @@
21
21
  <link rel="stylesheet" href="{{ "/assets/plugins/elegant_font/css/style.css" | prepend: site.baseurl }}">
22
22
 
23
23
  <!-- Theme CSS -->
24
- <link id="theme-style" rel="stylesheet" href="assets/css/styles.css">
24
+ <link id="theme-style" rel="stylesheet" href="{{ "/assets/css/styles.css" | prepend: site.baseurl }}">
25
25
  <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
26
26
  <!--[if lt IE 9]>
27
27
  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-prettydocs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maicon Pinto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-20 00:00:00.000000000 Z
11
+ date: 2017-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -77,6 +77,7 @@ files:
77
77
  - _includes/green-header.html
78
78
  - _includes/header-home.html
79
79
  - _includes/header.html
80
+ - _includes/icon-github.html
80
81
  - _includes/landing-header.html
81
82
  - _includes/orange-doc-wrapper.html
82
83
  - _includes/orange-header.html
@@ -95,6 +96,7 @@ files:
95
96
  - _layouts/post.html
96
97
  - _layouts/purple.html
97
98
  - assets/css/styles.css
99
+ - assets/images/demo/a-complete-example-of-page.png
98
100
  - assets/images/demo/appkit-account-billing-thumb.jpg
99
101
  - assets/images/demo/appkit-account-billing.jpg
100
102
  - assets/images/demo/appkit-account-drive-thumb.jpg
@@ -1013,7 +1015,7 @@ files:
1013
1015
  - assets/plugins/prism/min/prism-min.js
1014
1016
  - assets/plugins/prism/prism.css
1015
1017
  - assets/plugins/prism/prism.js
1016
- homepage: http://maiconpinto.com.br
1018
+ homepage: http://github.com/maiconpinto/jekyll-theme-prettydocs
1017
1019
  licenses:
1018
1020
  - MIT
1019
1021
  metadata: {}