jekyll-theme-marketing 0.1.0 → 0.2.0

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: 8530a6251ced9db3203584f97221329b4339f045
4
- data.tar.gz: d65f3ecc51ea4b9df5488012693fa24e2495a882
3
+ metadata.gz: dd4a703abb1e3ed92142b04b6358d72cb0ab474b
4
+ data.tar.gz: f248f6115f648e59284fe6da8a6d2e8c906e0ee0
5
5
  SHA512:
6
- metadata.gz: 66837a33ef617201c8e8490ea843b883bd70f26a4b689ef829261e7ad69e64978ce6833b37ac998549e0155f2dbbf4256e75e9a1a97cec2b0bfe6c9e7ace4a48
7
- data.tar.gz: 7a7a69a9514cc629b9594f3b800afc5e6d9b488bb4162f7fd3a463de30a7a25caf6df862c9f75f5eccc6172e910306cf39f54915c0145aaaefb7f844f21fa855
6
+ metadata.gz: 123f666c313accb3a38cd09c50d6b9fd1f7aabf1c786c86afb6b19d4703b1fde84d44fd5b7249240c3e5f591fd0aba837b714637fa9f8ea76aadd01f019afbbb
7
+ data.tar.gz: 7c678ad10a8bab984ecf1535c04d07f8f9c43d98be9adf5b44330210dcbedca402fc5f7982e0c770edc744b2ea34882434ca1b1c83c4ced922fac2e3a0e4ca9c
data/README.md CHANGED
@@ -4,6 +4,29 @@ Right now just a test theme for Jekyll.
4
4
 
5
5
  ## Installation
6
6
 
7
+ ### Installation on Jekyll sites using GitHub Pages
8
+
9
+ 1. Add the following to your Gemfile
10
+
11
+ ```ruby
12
+ gem "jekyll-remote-theme"
13
+ ```
14
+ and run `bundle install` to install the plugin
15
+
16
+ 2. Add the following 3 lines to your site's `_config.yml` to activate the `jekyll-theme-marketing` theme and the `jekyll-remote-theme` plugin
17
+
18
+ ```yml
19
+ ...
20
+ remote_theme: cetinajero/jekyll-theme-marketing
21
+ ...
22
+ ...
23
+ plugins:
24
+ - jekyll-remote-theme
25
+ ...
26
+ ```
27
+
28
+ ### Installation on all Jekyll sites
29
+
7
30
  Add this line to your Jekyll site's `Gemfile`:
8
31
 
9
32
  ```ruby
@@ -18,11 +41,7 @@ theme: jekyll-theme-marketing
18
41
 
19
42
  And then execute:
20
43
 
21
- $ bundle
22
-
23
- Or install it yourself as:
24
-
25
- $ gem install jekyll-theme-marketing
44
+ $ bundle install
26
45
 
27
46
  ## Usage
28
47
 
@@ -30,7 +49,7 @@ TODO: Write usage instructions here. Describe your available layouts, includes,
30
49
 
31
50
  ## Contributing
32
51
 
33
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. 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.
52
+ Bug reports and pull requests are welcome on GitHub at https://github.com/cetinajero/jekyll-theme-marketing/issues. 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.
34
53
 
35
54
  ## Development
36
55
 
@@ -45,3 +64,9 @@ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-t
45
64
 
46
65
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
66
 
67
+ ## Credits
68
+
69
+ **Edgar Tinajero**
70
+
71
+ - <https://github.com/cetinajero>
72
+ - <https://about.me/cetinajero>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,8 @@
1
+ <meta charset="utf-8">
2
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="keywords" content="{{ site.keywords }}" />
5
+ <meta name="copyright" content="Copyright © {{ 'now' | date: "%Y" }} {{ site.author }}. All rights reserved." />
6
+ <meta name="generator" content="Jekyll" />
7
+ <link rel="icon" type="image/x-icon" href="{{ '/assets/img/common/favicon.ico' | relative_url }}" />
8
+ <link rel="search" href="{{ '/assets/xml/opensearch.xml' | relative_url }}" title="Search {{ site.title }}" type="application/opensearchdescription+xml" />
File without changes
File without changes
@@ -1,2 +1,31 @@
1
- <!-- Jekyll theme: https://github.com/cetinajero/jekyll-theme-marketing -->
2
- {{ content }}
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | slice: 0,2 | default: site.lang | slice: 0,2 | default: "en" }}" dir="ltr">
3
+ <!-- Jekyll theme: https://github.com/cetinajero/jekyll-theme-marketing -->
4
+
5
+ <head>
6
+
7
+ {% seo %}
8
+ {% include head/meta.html %}
9
+ {% include head/scripts.html %}
10
+ {% if site.original %} {% include head/firebase/sdk.html %} {% endif %}
11
+ {% include head/fonts.html %}
12
+ {% include head/style.html %}
13
+ {% include head/google-analytics.html %}
14
+
15
+ </head>
16
+
17
+ <body id="marketing-theme" class="fixed-header boxed">
18
+
19
+ <div class="page-box">
20
+ <div class="page-box-content">
21
+ {% include body/header.html %}
22
+ {{ content }}
23
+ </div>
24
+ </div>
25
+
26
+ {% include body/footer.html %}
27
+ {% include body/scripts.html %}
28
+
29
+ </body>
30
+
31
+ </html>
@@ -1,4 +1,6 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
- {{ content }}
4
+ <div class="home">
5
+ {{ content }}
6
+ </div>
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  {{ content }}
@@ -0,0 +1 @@
1
+ {{ content }}
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  {{ content }}
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: null
3
+ ---
4
+ <?xml version="1.0" encoding="UTF-8"?>
5
+ <OpenSearchDescription xmlns:moz="http://www.mozilla.org/2006/browser/search/"
6
+ xmlns="http://a9.com/-/spec/opensearch/1.1/">
7
+ <ShortName>{{ site.title }}</ShortName>
8
+ <Description>Search {{ site.title }}</Description>
9
+ <InputEncoding>UTF-8</InputEncoding>
10
+ <Image type="image/x-icon" width="16" height="16">{{ '/assets/img/common/favicon.ico' | relative_url }}</Image>
11
+ <Url method="get" type="text/html"
12
+ template="http://www.google.com/search?q={searchTerms}+site%3A{{ site.url | remove_first:'http://' | remove_first:'https://' | remove_first:'www.' }}&amp;hl=en"/>
13
+ </OpenSearchDescription>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-marketing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edgar Tinajero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-01 00:00:00.000000000 Z
11
+ date: 2018-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,10 +61,22 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _includes/body/footer.html
65
+ - _includes/body/header.html
66
+ - _includes/body/scripts.html
67
+ - _includes/head/firebase/sdk.html
68
+ - _includes/head/fonts.html
69
+ - _includes/head/google-analytics.html
70
+ - _includes/head/meta.html
71
+ - _includes/head/scripts.html
72
+ - _includes/head/style.html
64
73
  - _layouts/default.html
65
74
  - _layouts/home.html
66
75
  - _layouts/page.html
76
+ - _layouts/plaintext.html
67
77
  - _layouts/post.html
78
+ - assets/img/common/favicon.ico
79
+ - assets/xml/opensearch.xml
68
80
  homepage: https://github.com/cetinajero/jekyll-theme-marketing
69
81
  licenses:
70
82
  - MIT