mirror of
https://gitlab.com/greenleebt/business-website.git
synced 2026-08-17 16:26:16 +00:00
init
This commit is contained in:
commit
59d5238af5
89 changed files with 6040 additions and 0 deletions
98
_includes/footer.html
Normal file
98
_includes/footer.html
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
<!-- Contact -->
|
||||
<section id="contact">
|
||||
<div class="inner">
|
||||
<section>
|
||||
<form action="https://formspree.io/{{ site.email }}" method="POST">
|
||||
<div class="field half first">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" name="name" id="name" />
|
||||
</div>
|
||||
<div class="field half">
|
||||
<label for="email">Email</label>
|
||||
<input type="text" name="_replyto" id="email" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="message">Message</label>
|
||||
<textarea name="message" id="message" rows="6"></textarea>
|
||||
</div>
|
||||
<ul class="actions">
|
||||
<li><input type="submit" value="Send Message" class="special" /></li>
|
||||
<li><input type="reset" value="Clear" /></li>
|
||||
</ul>
|
||||
</form>
|
||||
</section>
|
||||
<section class="split">
|
||||
<section>
|
||||
<div class="contact-method">
|
||||
<span class="icon alt fa-envelope"></span>
|
||||
<h3>Email</h3>
|
||||
<a href="mailto:{{ site.email }}">{{ site.email }}</a>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<div class="contact-method">
|
||||
<span class="icon alt fa-phone"></span>
|
||||
<h3>Phone</h3>
|
||||
<a href="tel:{{ site.phone }}">{{ site.phone }}</a>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<div class="contact-method">
|
||||
<span class="icon alt fa-home"></span>
|
||||
<h3>Address</h3>
|
||||
<span>
|
||||
{% if site.street_address %}
|
||||
{{ site.street_address }}<br />
|
||||
{% endif %}
|
||||
{% if site.city %}
|
||||
{{ site.city }},
|
||||
{% endif %}
|
||||
{% if site.state %}
|
||||
{{ site.state }}
|
||||
{% endif %}
|
||||
{% if site.zip_code %}
|
||||
{{ site.zip_code }}<br />
|
||||
{% endif %}
|
||||
{% if site.country %}
|
||||
{{ site.country }}
|
||||
{% endif %}
|
||||
</span>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer id="footer">
|
||||
<div class="inner">
|
||||
<ul class="icons">
|
||||
{% for key_value in site.socials %}
|
||||
{% if key_value[1] %}
|
||||
<li>
|
||||
<a href="{{ key_value[1] }}" class="icon alt fa-{{ key_value[0] | downcase }}" target="_blank" rel="noopener noreferrer" aria-label="{{ key_value[0] }}">
|
||||
<span class="label">{{ key_value[0] }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<ul class="copyright">
|
||||
<li>© {{ site.title }} {{ site.subtitle }}</li>
|
||||
<li>Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a></li>
|
||||
<li>Jekyll integration: <a href="http://andrewbanchi.ch" target="_blank">Andrew Banchich</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="{{ "assets/js/jquery.min.js" | absolute_url }}"></script>
|
||||
<script src="{{ "assets/js/jquery.scrolly.min.js" | absolute_url }}"></script>
|
||||
<script src="{{ "assets/js/jquery.scrollex.min.js" | absolute_url }}"></script>
|
||||
<script src="{{ "assets/js/skel.min.js" | absolute_url }}"></script>
|
||||
<script src="{{ "assets/js/util.js" | absolute_url }}"></script>
|
||||
<!--[if lte IE 8]><script src="{{ "assets/js/ie/respond.min.js" | absolute_url }}"></script><![endif]-->
|
||||
<script src="{{ "assets/js/main.js" | absolute_url }}"></script>
|
||||
9
_includes/head.html
Normal file
9
_includes/head.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<head>
|
||||
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||
<!--[if lte IE 8]><script src="{{ "assets/js/ie/html5shiv.js" | relative_url }}"></script><![endif]-->
|
||||
<link rel="stylesheet" href="{{ "assets/css/main.css" | relative_url }}" />
|
||||
<!--[if lte IE 9]><link rel="stylesheet" href="{{ "assets/css/ie9.css" | relative_url }}" /><![endif]-->
|
||||
<!--[if lte IE 8]><link rel="stylesheet" href="{{ "assets/css/ie8.css" | relative_url }}" /><![endif]-->
|
||||
</head>
|
||||
30
_includes/header.html
Normal file
30
_includes/header.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<!-- Wrapper -->
|
||||
<div id="wrapper">
|
||||
|
||||
<!-- Header -->
|
||||
<header id="header"{% if page.layout == "landing" %} class="alt style2"{% endif %}{% if page.layout == "home" %} class="alt"{% endif %}>
|
||||
<a href="{{ "" | absolute_url }}/" class="logo"><strong>{{ site.title }}</strong> <span>{{ site.subtitle }}</span></a>
|
||||
<nav>
|
||||
<a href="#menu">Menu</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Menu -->
|
||||
<nav id="menu">
|
||||
<ul class="links">
|
||||
{% for page in site.pages %}
|
||||
{% if page.layout == "home" %}
|
||||
<li><a href="{{ "" | absolute_url }}/">{{ page.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% for page in site.html_pages %}
|
||||
{% if page.layout != "home" and page.nav-menu == true %}
|
||||
<li><a href="{{ page.url | absolute_url }}">{{ page.title }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<ul class="actions vertical">
|
||||
<li><a href="#" class="button special fit">Get Started</a></li>
|
||||
<li><a href="#" class="button fit">Log In</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
18
_includes/tiles.html
Normal file
18
_includes/tiles.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{% if 'posts' == site.tiles-source %}
|
||||
{% assign tiles = site.posts %}
|
||||
{% elsif 'pages' == site.tiles-source %}
|
||||
{% assign tiles = site.html_pages | where_exp: "item", "item.show_tile != false" %}
|
||||
{% endif %}
|
||||
<section id="one" class="tiles">
|
||||
{% for tile in tiles limit:site.tiles-count %}
|
||||
<article>
|
||||
<span class="image">
|
||||
<img src="{{ tile.image }}" alt="{{ tile.title }}" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="{{ tile.url | relative_url }}" class="link">{{ tile.title }}</a></h3>
|
||||
<p>{{ tile.description }}</p>
|
||||
</header>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue