jekyll-theme-prettydocs 0.0.2 → 0.0.3
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/README.md +3 -1
- data/_includes/header-home.html +21 -0
- data/_layouts/home.html +19 -16
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb4feba0f9bc3f3a05d178b6e8b5e37c727194c4
|
4
|
+
data.tar.gz: e7b3f395baa7c4e604be1343bf6712933c53d68c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5e9243d51c3494b6a55658d71cf46336e98daa6b9b299f3c9f6061bc5f6012cabbd5f4c747d53e179a8bbb36acbaf79e4339c316cca1ed3af27e3c2c67842e6
|
7
|
+
data.tar.gz: 3c35b3a896cd7517823396be1dbf6c14f7cfaf623048a1dad72a41c834ff2d57d7ef9998224e942e13fb3209700d9921ab5598c4555b248ee381a7b411a83c53
|
data/README.md
CHANGED
@@ -28,7 +28,9 @@ Or install it yourself as:
|
|
28
28
|
|
29
29
|
## Usage
|
30
30
|
|
31
|
-
|
31
|
+
How to use this theme? After you generate a new site running `jekyll new site-name`, you can to follow these steps:
|
32
|
+
|
33
|
+
Installing a new theme. If you need more help, click [here](http://jekyllrb.com/docs/themes/#installing-a-theme).
|
32
34
|
|
33
35
|
## Contributing
|
34
36
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<header class="header text-center">
|
2
|
+
<div class="container">
|
3
|
+
<div class="branding">
|
4
|
+
<h1 class="logo">
|
5
|
+
<span aria-hidden="true" class="icon_documents_alt icon"></span>
|
6
|
+
<span class="text-highlight">Pretty</span><span class="text-bold">Docs</span>
|
7
|
+
</h1>
|
8
|
+
</div><!--//branding-->
|
9
|
+
<div class="tagline">
|
10
|
+
<p>Free Bootstrap theme for your project documentation</p>
|
11
|
+
<p>Designed with <i class="fa fa-heart"></i> for developers</p>
|
12
|
+
</div><!--//tagline-->
|
13
|
+
<div class="social-container">
|
14
|
+
<div class="twitter-tweet">
|
15
|
+
<a href="https://twitter.com/share" class="twitter-share-button" data-text="PrettyDocs - A FREE #Bootstrap theme for project documentations #Responsive" data-via="3rdwave_themes">Tweet</a>
|
16
|
+
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
17
|
+
</div><!--//tweet-->
|
18
|
+
<div class="fb-like" data-href="http://themes.3rdwavemedia.com" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
|
19
|
+
</div><!--//social-container-->
|
20
|
+
</div><!--//container-->
|
21
|
+
</header><!--//header-->
|
data/_layouts/home.html
CHANGED
@@ -1,7 +1,7 @@
|
|
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
6
|
<title>{{ site.title | prepend: " - " | prepend: page.title }}</title>
|
7
7
|
<!-- Meta -->
|
@@ -9,15 +9,15 @@
|
|
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
16
|
<link rel="stylesheet" href="{{ "/assets/plugins/bootstrap/css/bootstrap.min.css" | prepend: site.baseurl }}">
|
17
|
-
<!-- Plugins CSS -->
|
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/elegant_font/css/style.css" | prepend: site.baseurl }}">
|
20
|
-
|
20
|
+
|
21
21
|
<!-- Theme CSS -->
|
22
22
|
<link id="theme-style" rel="stylesheet" href="{{ "/assets/css/styles.css" | prepend: site.baseurl }}">
|
23
23
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
@@ -25,26 +25,29 @@
|
|
25
25
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
26
26
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
27
27
|
<![endif]-->
|
28
|
-
</head>
|
28
|
+
</head>
|
29
29
|
|
30
30
|
<body class="landing-page">
|
31
|
-
|
31
|
+
|
32
32
|
{% include fb-root.html %}
|
33
|
-
|
33
|
+
|
34
34
|
<div class="page-wrapper">
|
35
|
-
|
35
|
+
{% include header-home.html %}
|
36
|
+
|
37
|
+
{% include cards-section.html %}
|
38
|
+
|
36
39
|
{{ content }}
|
37
|
-
|
40
|
+
|
38
41
|
</div><!--//page-wrapper-->
|
39
|
-
|
42
|
+
|
40
43
|
{% include footer.html %}
|
41
|
-
|
44
|
+
|
42
45
|
<!-- Main Javascript -->
|
43
46
|
<script type="text/javascript" src="{{ "/assets/plugins/jquery-1.12.3.min.js" | prepend: site.baseurl }}"></script>
|
44
47
|
<script type="text/javascript" src="{{ "/assets/plugins/bootstrap/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
|
45
48
|
<script type="text/javascript" src="{{ "/assets/plugins/jquery-match-height/jquery.matchHeight-min.js" | prepend: site.baseurl }}"></script>
|
46
49
|
<script type="text/javascript" src="{{ "/assets/js/main.js" | prepend: site.baseurl }}"></script>
|
47
|
-
|
50
|
+
|
48
51
|
</body>
|
49
|
-
</html>
|
52
|
+
</html>
|
50
53
|
|
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.
|
4
|
+
version: 0.0.3
|
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-04-
|
11
|
+
date: 2017-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -75,6 +75,7 @@ files:
|
|
75
75
|
- _includes/footer.html
|
76
76
|
- _includes/green-doc-wrapper.html
|
77
77
|
- _includes/green-header.html
|
78
|
+
- _includes/header-home.html
|
78
79
|
- _includes/header.html
|
79
80
|
- _includes/landing-header.html
|
80
81
|
- _includes/orange-doc-wrapper.html
|
@@ -1032,7 +1033,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1032
1033
|
version: '0'
|
1033
1034
|
requirements: []
|
1034
1035
|
rubyforge_project:
|
1035
|
-
rubygems_version: 2.
|
1036
|
+
rubygems_version: 2.2.2
|
1036
1037
|
signing_key:
|
1037
1038
|
specification_version: 4
|
1038
1039
|
summary: Jekyll Theme PrettyDocs
|