agency-jekyll-theme 0.1.0.1 → 1.0.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: 014e004297666608e0ee5a479a6fb2b689ee2898
4
- data.tar.gz: dc05d11174fde6ee15240066f27771e0471cb6cd
3
+ metadata.gz: 593afb9c06a70835789edd3ab82da6f45034f1b7
4
+ data.tar.gz: 19787e05fa3f1b6662599bfb70d6e8e38875260d
5
5
  SHA512:
6
- metadata.gz: ce0d53fd6e0ed215a470c3214821dd80c68d46269ebc8f4c83bcf489afa86353efcdc02f84f9812f75d6676ceba37c61bd4eee62c24b234663c75755c874d8de
7
- data.tar.gz: 5c54d50f589130ecc69217ab1f82af580f6832443f44a080d23d3f3cb449a56df98bc9c6ee3bf9ec854b7d50a0ba874c7505444ad194772b80e453d5fca73632
6
+ metadata.gz: 91e081cc0765f4271c05b8bb8010f375817ef8f91c614122e025c857d8c0093b7331938c447e2db44744d407b565cd16d2229c5a93da8b0fa91382f59a3be18c
7
+ data.tar.gz: b50f8b375d7d196f7fe341791c81b3754a1bd0875842b4444d2866fc9cc2e851844c98d677dd141390d0c4cd9b3e9fa2ca33092c395173ac76b6315cb99624df
data/README.md CHANGED
@@ -1,12 +1,14 @@
1
1
  # Agency Jekyll Theme
2
2
 
3
- Welcome to Agency Jekyll Theme! To experiment with this code, add some sample content in the yaml files in `_data` and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
3
+ Welcome to Agency Jekyll Theme!
4
4
 
5
- [Agency Jekyll Theme](http://github.com/laklau/agency-jekyll-theme/tree/gh-pages) is a jekyll theme [gem](https://rubygems.org/gems/agency-jekyll-theme), the jekyllization by [Adab1ts] (http://github.com/adab1ts) of Agency theme.
5
+ [Agency](https://github.com/BlackrockDigital/startbootstrap-agency.git) is a one page agency portfolio theme for Bootstrap created by [Start Bootstrap](http://startbootstrap.com/). This theme features several content sections, a responsive portfolio grid with hover effects, full page portfolio item modals, a responsive timeline, and a contact form.
6
6
 
7
- [Agency](http://startbootstrap.com/template-overviews/agency/) is a one page agency portfolio theme for [Bootstrap](http://getbootstrap.com/) created by [Start Bootstrap](http://startbootstrap.com/).
7
+ [Agency Jekyll Theme](http://github.com/laklau/agency-jekyll-theme/tree/gh-pages) is a jekyll theme [gem](https://rubygems.org/gems/agency-jekyll-theme), La Klau's jekyllization of Agency theme.
8
8
 
9
- This theme features several content sections, a responsive portfolio grid with hover effects, full page portfolio item modals, a responsive timeline, and a contact form.
9
+ The [Github repository](http://github.com/laklau/agency-jekyll-theme/) is organized in two branches. The master branch contains the original theme and is updated with the latest version available. The gh-pages branch contains the jekyllizated theme.
10
+
11
+ ![Agency theme thumbnail](/screenshot.png "Agency theme screenshot")
10
12
 
11
13
  ## Installation
12
14
 
@@ -33,7 +35,10 @@ Or install it yourself as:
33
35
  ## Usage
34
36
 
35
37
  This theme is a single page with several includes (one for each section).
36
- The content is in '_data' folder, ready to be customizated with you information.
38
+
39
+ The content is in the yaml files in '_data' folder, ready to be customized with your information.
40
+
41
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
37
42
 
38
43
  ## Contributing
39
44
 
@@ -45,8 +50,6 @@ To set up your environment to develop this theme, run `bundle install`.
45
50
 
46
51
  You theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
47
52
 
48
- When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
49
-
50
53
  ## License
51
54
 
52
55
  The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -19,10 +19,8 @@
19
19
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
20
20
 
21
21
  <!-- Contact Form JavaScript -->
22
- <!--
23
- <script src="js/jqBootstrapValidation.js"></script>
24
- <script src="js/contact_me.js"></script>
25
- -->
22
+ <script src="/assets/js/jqBootstrapValidation.js"></script>
23
+ <script src="/assets/js/contact_me.js"></script>
26
24
 
27
25
  <!-- Theme JavaScript -->
28
26
  <script src="/assets/js/agency.js"></script>
@@ -20,7 +20,7 @@ $(function() {
20
20
  firstName = name.split(' ').slice(0, -1).join(' ');
21
21
  }
22
22
  $.ajax({
23
- url: "",
23
+ url: "/mail/contact_me.php",
24
24
  type: "POST",
25
25
  data: {
26
26
  name: name,
data/index.md CHANGED
@@ -2,5 +2,5 @@
2
2
  # You don't need to edit this file, it's empty on purpose.
3
3
  # Edit theme's home layout instead if you wanna make some changes
4
4
  # See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
5
- layout: singlepage
5
+ layout: single-page
6
6
  ---
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agency-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Klaudia Alvarez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-28 00:00:00.000000000 Z
11
+ date: 2016-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,7 +80,7 @@ files:
80
80
  - _includes/services.html
81
81
  - _includes/team.html
82
82
  - _layouts/default.html
83
- - _layouts/singlepage.html
83
+ - _layouts/single-page.html
84
84
  - _sass/_mixins.scss
85
85
  - _sass/_variables.scss
86
86
  - _sass/agency.scss