jekyll-agency 1.0.4
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 +7 -0
- data/404.html +14 -0
- data/LICENSE.txt +21 -0
- data/README.md +84 -0
- data/_data/navigation.yml +18 -0
- data/_data/sitetext.yml +137 -0
- data/_data/style.yml +8 -0
- data/_includes/about.html +17 -0
- data/_includes/clients.html +14 -0
- data/_includes/contact.html +46 -0
- data/_includes/footer.html +33 -0
- data/_includes/head.html +47 -0
- data/_includes/nav.html +33 -0
- data/_includes/navheader.html +45 -0
- data/_includes/portfolio_grid.html +60 -0
- data/_includes/services.html +29 -0
- data/_includes/team.html +37 -0
- data/_includes/timeline.html +47 -0
- data/_layouts/default.html +27 -0
- data/_layouts/home.html +11 -0
- data/_layouts/page.html +8 -0
- data/_sass/base/_mixins.scss +13 -0
- data/_sass/base/_page.scss +71 -0
- data/_sass/base/_variables.scss +12 -0
- data/_sass/components/_buttons.scss +26 -0
- data/_sass/components/_navbar.scss +73 -0
- data/_sass/layout/_contact.scss +47 -0
- data/_sass/layout/_footer.scss +43 -0
- data/_sass/layout/_masthead.scss +50 -0
- data/_sass/layout/_portfolio.scss +140 -0
- data/_sass/layout/_services.scss +5 -0
- data/_sass/layout/_team.scss +18 -0
- data/_sass/layout/_timeline.scss +178 -0
- data/assets/css/agency.scss +31 -0
- data/assets/css/all.min.css +5 -0
- data/assets/css/bootstrap.min.css +7 -0
- data/assets/css/bootstrap.min.css.map +1 -0
- data/assets/css/webfonts/fa-brands-400.eot +0 -0
- data/assets/css/webfonts/fa-brands-400.svg +3449 -0
- data/assets/css/webfonts/fa-brands-400.ttf +0 -0
- data/assets/css/webfonts/fa-brands-400.woff +0 -0
- data/assets/css/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/css/webfonts/fa-regular-400.eot +0 -0
- data/assets/css/webfonts/fa-regular-400.svg +803 -0
- data/assets/css/webfonts/fa-regular-400.ttf +0 -0
- data/assets/css/webfonts/fa-regular-400.woff +0 -0
- data/assets/css/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/css/webfonts/fa-solid-900.eot +0 -0
- data/assets/css/webfonts/fa-solid-900.svg +4649 -0
- data/assets/css/webfonts/fa-solid-900.ttf +0 -0
- data/assets/css/webfonts/fa-solid-900.woff +0 -0
- data/assets/css/webfonts/fa-solid-900.woff2 +0 -0
- data/assets/img/clients/creative-market.jpg +0 -0
- data/assets/img/clients/designmodo.jpg +0 -0
- data/assets/img/clients/envato.jpg +0 -0
- data/assets/img/clients/themeforest.jpg +0 -0
- data/assets/img/header-bg.jpg +0 -0
- data/assets/img/header.gif +0 -0
- data/assets/img/map-image.png +0 -0
- data/assets/img/portfolio/01-full.jpg +0 -0
- data/assets/img/portfolio/01-thumbnail.jpg +0 -0
- data/assets/img/portfolio/02-full.jpg +0 -0
- data/assets/img/portfolio/02-thumbnail.jpg +0 -0
- data/assets/img/portfolio/03-full.jpg +0 -0
- data/assets/img/portfolio/03-thumbnail.jpg +0 -0
- data/assets/img/portfolio/04-full.jpg +0 -0
- data/assets/img/portfolio/04-thumbnail.jpg +0 -0
- data/assets/img/portfolio/05-full.jpg +0 -0
- data/assets/img/portfolio/05-thumbnail.jpg +0 -0
- data/assets/img/portfolio/06-full.jpg +0 -0
- data/assets/img/portfolio/06-thumbnail.jpg +0 -0
- data/assets/img/team/1.jpg +0 -0
- data/assets/img/team/2.jpg +0 -0
- data/assets/img/team/3.jpg +0 -0
- data/assets/img/timeline/1.jpg +0 -0
- data/assets/img/timeline/2.jpg +0 -0
- data/assets/img/timeline/3.jpg +0 -0
- data/assets/img/timeline/4.jpg +0 -0
- data/assets/js/agency.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js +7 -0
- data/assets/js/bootstrap.bundle.min.js.map +1 -0
- data/assets/js/contact_me.js +75 -0
- data/assets/js/jqBootstrapValidation.js +937 -0
- data/assets/js/jquery.easing.min.js +1 -0
- data/assets/js/jquery.min.js +2 -0
- data/index.md +3 -0
- data/legal.md +37 -0
- metadata +172 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ae6ae2788b6c26b2ff6be76a2c5c42573e4ee4e13a7256f05e6b216770d8b385
|
4
|
+
data.tar.gz: 7403f73ed24ebde6e9e4e0e8163441cd2559c00d2a8dbd8827d7d137e365ce69
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d519b2b36c45daa805bd89a1df3865930ddc9c620ec8efe5faec9f7bb64c9fb1e6ae3de35eee4ae5a12cdeb1eba999278a6fc9abd224faa6b81ebd9e34b0b433
|
7
|
+
data.tar.gz: 2455f257325d41e9f3024aef9af37380cf57e4ace7e915dd0c8472f134d23c6215c10f3ff8524c95b82eecbf1919cfc9f34c49b9f9f0a3e7c187e26f946b041d
|
data/404.html
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: Page Not Found
|
4
|
+
---
|
5
|
+
<section class="page-section">
|
6
|
+
<div class="container">
|
7
|
+
<div class="row">
|
8
|
+
<div class="col-lg-12 text-center">
|
9
|
+
<h2 class="section-heading text-uppercase">404 - Page Not Found</h2>
|
10
|
+
<h3 class="section-subheading text-muted">The requested page could not be found.</h3>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</section>
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Ravi Riley
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
[Creating Gem Based Themes For Jekyll](https://www.chrisanthropic.com/blog/2016/creating-gem-based-themes-for-jekyll/)
|
2
|
+
|
3
|
+
# [Agency Jekyll Theme](https://raviriley.github.io/agency-jekyll-theme) - Work in Progress
|
4
|
+
|
5
|
+
[](https://github.com/raviriley/agency-jekyll-theme/blob/master/LICENSE.txt)
|
6
|
+
[](https://www.paypal.me/raviriley)
|
7
|
+
|
8
|
+
This is the [Agency Bootstrap theme](https://startbootstrap.com/themes/agency/) converted to a gem-based Jekyll theme. While this had been done before, ([here](https://github.com/y7kim/agency-jekyll-theme), [here](https://github.com/SotiriosVrachas/jekyll-theme-startbootstrap-agency), and [here](https://github.com/laklau/agency-jekyll-theme/)), these are outdated and have not been updated or maintained for years. I built this theme from the most recent Bootstrap source. I also added a lot of new features that go beyond the original theme's capabilities:
|
9
|
+
|
10
|
+
- custom pages
|
11
|
+
- 404 page
|
12
|
+
- legal/Privacy Policy page
|
13
|
+
- Google Analytics support
|
14
|
+
- Markdown support
|
15
|
+
- custom images
|
16
|
+
- logo support (instead of just text)
|
17
|
+
- automatically updating copyright years
|
18
|
+
- custom navigation bar, even without the header images
|
19
|
+
- about section (not the timeline)
|
20
|
+
- custom footer
|
21
|
+
- portfolio carousel (coming soon)
|
22
|
+
- custom colors with automatic gradient generation (coming soon)
|
23
|
+
- site title logo text font customization (coming soon)
|
24
|
+
|
25
|
+
The Jekyll structure of this theme includes:
|
26
|
+
|
27
|
+
- `_projects` files - what generate the portfolio grid, YAML front matter handles all the details
|
28
|
+
- the `page` layout allows custom pages, as seen in the legal and 404 pages
|
29
|
+
- `sitetext.yml` enables complete customization of all site text
|
30
|
+
- `nav.yml` enables fully customizable navigation
|
31
|
+
- `style.yml` enables fully customizable colors and background images
|
32
|
+
|
33
|
+
|
34
|
+
**If you enjoy this theme, please consider [supporting me](https://www.paypal.me/raviriley) to continue developing and maintaining it.**
|
35
|
+
|
36
|
+
[](https://www.paypal.me/raviriley)
|
37
|
+
|
38
|
+
## Installation
|
39
|
+
|
40
|
+
Add this line to your Jekyll site's `Gemfile`:
|
41
|
+
|
42
|
+
```ruby
|
43
|
+
gem "jekyll-agency"
|
44
|
+
```
|
45
|
+
|
46
|
+
And add this line to your Jekyll site's `_config.yml`:
|
47
|
+
|
48
|
+
```yaml
|
49
|
+
theme: jekyll-agency
|
50
|
+
```
|
51
|
+
|
52
|
+
And then execute:
|
53
|
+
|
54
|
+
$ bundle
|
55
|
+
|
56
|
+
Or install it yourself as:
|
57
|
+
|
58
|
+
$ gem install jekyll-agency
|
59
|
+
|
60
|
+
Then, replace the contents of your `_config.yml` file with [this](https://github.com/raviriley/agency-jekyll-theme/blob/master/_config.yml).
|
61
|
+
|
62
|
+
## Usage
|
63
|
+
|
64
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
65
|
+
|
66
|
+
navheader is used only for the home page. nav is used everywhere else.
|
67
|
+
|
68
|
+
## Contributing
|
69
|
+
|
70
|
+
This project is intended to be a welcoming space for collaboration. If you have an idea, suggestion, feature request, etc., feel free to open an issue or pull request.
|
71
|
+
For bug reports, follow the provided template.
|
72
|
+
|
73
|
+
#### Improvements - Up for Grabs
|
74
|
+
|
75
|
+
- multiple language support
|
76
|
+
- custom background images
|
77
|
+
|
78
|
+
## Development
|
79
|
+
|
80
|
+
To set up your environment to develop this theme, clone this repo, then run `bundle install`. To test the theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. Add pages, documents, data, etc. like normal to test the theme's contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
81
|
+
|
82
|
+
## License
|
83
|
+
|
84
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1,18 @@
|
|
1
|
+
nav:
|
2
|
+
- title: "Services"
|
3
|
+
section: services
|
4
|
+
|
5
|
+
- title: "Portfolio"
|
6
|
+
section: portfolio
|
7
|
+
|
8
|
+
- title: "About"
|
9
|
+
section: timeline
|
10
|
+
|
11
|
+
- title: "Team"
|
12
|
+
section: team
|
13
|
+
|
14
|
+
- title: "Contact"
|
15
|
+
section: contact
|
16
|
+
|
17
|
+
- title: "External"
|
18
|
+
url: https://raviriley.github.io
|
data/_data/sitetext.yml
ADDED
@@ -0,0 +1,137 @@
|
|
1
|
+
header:
|
2
|
+
title: Welcome to our Studio!
|
3
|
+
text: It's Nice To Meet You
|
4
|
+
button: Tell Me More
|
5
|
+
buttonlink: "#services"
|
6
|
+
|
7
|
+
services:
|
8
|
+
title: "Services"
|
9
|
+
text: "Lorem ipsum"
|
10
|
+
section: services
|
11
|
+
list:
|
12
|
+
- title: "E-Commerce"
|
13
|
+
desc: "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit."
|
14
|
+
icon: fas fa-shopping-cart #find more at https://fontawesome.com/icons
|
15
|
+
- title: "Responsive Design"
|
16
|
+
desc: "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit."
|
17
|
+
icon: fas fa-laptop
|
18
|
+
- title: "[Markdown](https://en.wikipedia.org/wiki/Markdown)"
|
19
|
+
desc: "Your description here, full **Markdown** support"
|
20
|
+
icon: fab fa-markdown
|
21
|
+
|
22
|
+
portfolio:
|
23
|
+
title: "Portfolio"
|
24
|
+
text: "Lorem ipsum dolor sit amet consectetur."
|
25
|
+
section: portfolio
|
26
|
+
|
27
|
+
|
28
|
+
timeline:
|
29
|
+
title: "About"
|
30
|
+
text: "Lorem ipsum timeline"
|
31
|
+
section: timeline
|
32
|
+
events:
|
33
|
+
- title: "Our Humble Beginnings"
|
34
|
+
year: "2009-2011"
|
35
|
+
desc: "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!"
|
36
|
+
image: assets/img/timeline/1.jpg
|
37
|
+
alt:
|
38
|
+
align: left
|
39
|
+
- title: "An Agency is Born"
|
40
|
+
year: "March 2011"
|
41
|
+
desc: "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!"
|
42
|
+
image: assets/img/timeline/2.jpg
|
43
|
+
alt:
|
44
|
+
align: right
|
45
|
+
- title: "Jekyll Theme is created"
|
46
|
+
year: "2019"
|
47
|
+
desc: "Ravi Riley converted Agency, a Bootstrap-based theme, into a Jekyll theme. The Jekyll theme can be installed as a Ruby gem, or remotely. For more information, visit the documentation."
|
48
|
+
image: assets/img/timeline/3.jpg
|
49
|
+
alt: image alt text
|
50
|
+
#align: #default is left
|
51
|
+
- title: "Title"
|
52
|
+
year: "2009-2011"
|
53
|
+
desc: "Your description here, **Markdown** is fully supported."
|
54
|
+
image: assets/img/timeline/4.jpg
|
55
|
+
alt:
|
56
|
+
align: right
|
57
|
+
end: "Be Part <br> of Our <br> Story!"
|
58
|
+
|
59
|
+
about:
|
60
|
+
title: "About Us"
|
61
|
+
text: "our story"
|
62
|
+
section: about
|
63
|
+
|
64
|
+
clients:
|
65
|
+
section: clients
|
66
|
+
list:
|
67
|
+
- title: "envato"
|
68
|
+
url: https://github.com/raviriley/agency-jekyll-theme
|
69
|
+
logo: assets/img/clients/envato.jpg
|
70
|
+
- title: "designmodo"
|
71
|
+
url: https://github.com/raviriley/agency-jekyll-theme
|
72
|
+
logo: assets/img/clients/designmodo.jpg
|
73
|
+
- title: "themeforest"
|
74
|
+
url: https://github.com/raviriley/agency-jekyll-theme
|
75
|
+
logo: assets/img/clients/themeforest.jpg
|
76
|
+
- title: "Creative Market"
|
77
|
+
url: https://github.com/raviriley/agency-jekyll-theme
|
78
|
+
logo: assets/img/clients/creative-market.jpg
|
79
|
+
|
80
|
+
team:
|
81
|
+
title: "OUR AMAZING TEAM"
|
82
|
+
text: "Lorem ipsum dolor sit amet consectetur."
|
83
|
+
subtext: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde. **Markdown** supported.
|
84
|
+
section: team
|
85
|
+
people:
|
86
|
+
- name: "Kay Garland"
|
87
|
+
role: "Lead Designer"
|
88
|
+
image: assets/img/team/1.jpg
|
89
|
+
social:
|
90
|
+
- url: https://twitter.com
|
91
|
+
icon: fab fa-twitter
|
92
|
+
- url: https://facebook.com
|
93
|
+
icon: fab fa-facebook-f
|
94
|
+
- url: https://linkedin.com
|
95
|
+
icon: fab fa-linkedin-in
|
96
|
+
- name: "Larry Parker"
|
97
|
+
role: "Lead Marketer"
|
98
|
+
image: assets/img/team/2.jpg
|
99
|
+
social:
|
100
|
+
- url: https://twitter.com
|
101
|
+
icon: fab fa-twitter
|
102
|
+
- url: https://facebook.com
|
103
|
+
icon: fab fa-facebook-f
|
104
|
+
- url: https://linkedin.com
|
105
|
+
icon: fab fa-linkedin-in
|
106
|
+
- name: "Diana Perterson"
|
107
|
+
role: "Lead Developer"
|
108
|
+
image: assets/img/team/3.jpg
|
109
|
+
social:
|
110
|
+
- url: https://twitter.com
|
111
|
+
icon: fab fa-twitter
|
112
|
+
- url: https://facebook.com
|
113
|
+
icon: fab fa-facebook-f
|
114
|
+
- url: https://linkedin.com
|
115
|
+
icon: fab fa-linkedin-in
|
116
|
+
|
117
|
+
contact:
|
118
|
+
title: "Contact Us"
|
119
|
+
text: "Lorem ipsum or call 123456789"
|
120
|
+
section: contact
|
121
|
+
|
122
|
+
footer:
|
123
|
+
legal: "Privacy Policy"
|
124
|
+
social:
|
125
|
+
- url: https://twitter.com
|
126
|
+
icon: "fab fa-twitter"
|
127
|
+
- url: https://facebook.com
|
128
|
+
icon: "fab fa-facebook-f"
|
129
|
+
- url: https://linkedin.com
|
130
|
+
icon: "fab fa-linkedin-in"
|
131
|
+
- url: https://github.com/raviriley
|
132
|
+
icon: "fab fa-github"
|
133
|
+
- url: https://instagram.com
|
134
|
+
icon: "fab fa-instagram"
|
135
|
+
|
136
|
+
|
137
|
+
# {{ site.data.sitetext.ex.ex | markdownify | default: example }}
|
data/_data/style.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
<!-- About -->
|
2
|
+
<section class="page-section" id="{{ site.data.sitetext.about.section | default: about }}">
|
3
|
+
<div class="container">
|
4
|
+
<div class="row">
|
5
|
+
<div class="col-lg-12 text-center">
|
6
|
+
<h2 class="section-heading text-uppercase">{{ site.data.sitetext.about.title | default: About Us }}</h2>
|
7
|
+
<h3 class="section-subheading text-muted">{{ site.data.sitetext.about.text | default: "" }}</h3>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
<div class="row">
|
11
|
+
<div class="col-lg-8 mx-auto text-center">
|
12
|
+
<div class="large text-muted">{{ site.data.sitetext.about.text | markdownify }}</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
</section>
|
17
|
+
<!-- End About -->
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!-- Clients -->
|
2
|
+
<section class="py-5" id=""{{ site.data.sitetext.clients.section | default: clients }}>
|
3
|
+
<div class="container">
|
4
|
+
<div class="row">
|
5
|
+
{% for client in site.data.sitetext.clients.list %}
|
6
|
+
<div class="col-md-3 col-sm-6">
|
7
|
+
<a href="{{ client.url }}">
|
8
|
+
<img class="img-fluid d-block mx-auto" src="{{ client.logo }}" alt="{{ client.title }}">
|
9
|
+
</a>
|
10
|
+
</div>
|
11
|
+
{% endfor %}
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</section>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<!-- Contact -->
|
2
|
+
<section class="page-section" id="{{ site.data.sitetext.contact.section | default: contact }}">
|
3
|
+
<div class="container">
|
4
|
+
<div class="row">
|
5
|
+
<div class="col-lg-12 text-center">
|
6
|
+
<h2 class="section-heading text-uppercase">{{ site.data.sitetext.contact.title | markdownify | default: Contact Us }}</h2>
|
7
|
+
<h3 class="section-subheading text-muted">{{ site.data.sitetext.contact.text | default: "" }}</h3>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
<div class="row">
|
11
|
+
<div class="col-lg-12">
|
12
|
+
<form id="contactForm" name="sentMessage" novalidate="novalidate" method="POST" action="https://formspree.io/{{ site.email }}">
|
13
|
+
<div class="row">
|
14
|
+
<div class="col-md-6">
|
15
|
+
<div class="form-group">
|
16
|
+
<input name="name" class="form-control" id="name" type="text" placeholder="Name*" required="required" data-validation-required-message="Please enter your name.">
|
17
|
+
<p class="help-block text-danger"></p>
|
18
|
+
</div>
|
19
|
+
<div class="form-group">
|
20
|
+
<input name="_replyto" class="form-control" id="email" type="email" placeholder="Email*" required="required" data-validation-required-message="Please enter your email address.">
|
21
|
+
<p class="help-block text-danger"></p>
|
22
|
+
</div>
|
23
|
+
<div class="form-group">
|
24
|
+
<input name="phone" class="form-control" id="phone" type="tel" placeholder="Phone Number*" required="required" data-validation-required-message="Please enter your phone number.">
|
25
|
+
<p class="help-block text-danger"></p>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
<div class="col-md-6">
|
29
|
+
<div class="form-group">
|
30
|
+
<textarea name="message" class="form-control" id="message" placeholder="Message*" required="required" data-validation-required-message="Please enter a message."></textarea>
|
31
|
+
<p class="help-block text-danger"></p>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission">
|
35
|
+
<div class="clearfix"></div>
|
36
|
+
<div class="col-lg-12 text-center">
|
37
|
+
<div id="success"></div>
|
38
|
+
<button id="sendMessageButton" class="btn btn-primary btn-xl text-uppercase" type="submit">Send Message</button>
|
39
|
+
</div>
|
40
|
+
</div>
|
41
|
+
</form>
|
42
|
+
</div>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</section>
|
46
|
+
<!-- End Contact -->
|
@@ -0,0 +1,33 @@
|
|
1
|
+
<!-- Footer -->
|
2
|
+
<footer class="footer" style="background-color:">
|
3
|
+
<div class="container">
|
4
|
+
<div class="row align-items-center">
|
5
|
+
<div class="col-md-4">
|
6
|
+
<span class="copyright">Copyright © {{ site.title }} {{ 'now' | date: "%Y" }}</span>
|
7
|
+
</div>
|
8
|
+
<!-- Social Media -->
|
9
|
+
<div class="col-md-4">
|
10
|
+
<ul class="list-inline social-buttons">
|
11
|
+
{% for link in site.data.sitetext.footer.social %}
|
12
|
+
<li class="list-inline-item">
|
13
|
+
{% if link.url %}
|
14
|
+
<a href="{{ link.url }}">
|
15
|
+
{% if link.icon %}<i class="{{ link.icon }}"></i>{% endif %}
|
16
|
+
</a>
|
17
|
+
{% endif %}
|
18
|
+
</li>
|
19
|
+
{% endfor %}
|
20
|
+
</ul>
|
21
|
+
</div>
|
22
|
+
<!-- Legal -->
|
23
|
+
<div class="col-md-4">
|
24
|
+
<ul class="list-inline quicklinks">
|
25
|
+
<li class="list-inline-item">
|
26
|
+
<a href="legal">{{ site.data.sitetext.footer.legal | default: Privacy Policy }}</a>
|
27
|
+
</li>
|
28
|
+
</ul>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</footer>
|
33
|
+
<!-- End Footer -->
|
data/_includes/head.html
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
<head>
|
2
|
+
{% if site.analytics.google %}
|
3
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
4
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics.google }}"></script>
|
5
|
+
<script>
|
6
|
+
window.dataLayer = window.dataLayer || [];
|
7
|
+
function gtag(){dataLayer.push(arguments);}
|
8
|
+
gtag('js', new Date());
|
9
|
+
|
10
|
+
gtag('config', '{{ site.analytics.google }}');
|
11
|
+
</script>
|
12
|
+
<!-- End Google Analytics -->
|
13
|
+
{% endif %}
|
14
|
+
|
15
|
+
<meta charset="utf-8">
|
16
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
17
|
+
<meta name="description" content="{{ site.description }}">
|
18
|
+
<meta name="author" content="{{ site.author }}">
|
19
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
20
|
+
|
21
|
+
<title>{% if page.title %}{{ page.title | append: " | " | append: site.title }}{% else %}{{ site.title }}{% endif %}</title>
|
22
|
+
|
23
|
+
<!-- Bootstrap core CSS -->
|
24
|
+
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
|
25
|
+
|
26
|
+
<!-- Custom fonts for this template -->
|
27
|
+
<link href="assets/css/all.min.css" rel="stylesheet" type="text/css">
|
28
|
+
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
29
|
+
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
|
30
|
+
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
|
31
|
+
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
|
32
|
+
|
33
|
+
<!-- Custom styles for this theme -->
|
34
|
+
<!--<link href="assets/css/agency.min.css" rel="stylesheet">-->
|
35
|
+
<link href="assets/css/agency.css" rel="stylesheet">
|
36
|
+
|
37
|
+
<!-- Page container change top padding when nav shrinks -->
|
38
|
+
{% if page.layout == "page" %}
|
39
|
+
<style>
|
40
|
+
#pagecontainer {padding-top: 150px;}
|
41
|
+
@media only screen and (max-width: 991px) {
|
42
|
+
#pagecontainer {padding-top: 100px;}
|
43
|
+
}
|
44
|
+
</style>
|
45
|
+
{% endif %}
|
46
|
+
|
47
|
+
</head>
|