mirror of
https://github.com/caressofsteel/hugo-story.git
synced 2025-09-06 03:52:57 +02:00
First Commit - Hugo Story
This commit is contained in:
35
layouts/index.html
Normal file
35
layouts/index.html
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Hugo Story by CaressOfSteel
|
||||
A (modular, highly tweakable) responsive one-page theme for Hugo.
|
||||
Ported from Story by HTML5UP.
|
||||
This Hugo theme is licensed under the Creative Commons Attribution 3.0 License.
|
||||
-->
|
||||
<html>
|
||||
|
||||
{{ partial "template/head" . }}
|
||||
|
||||
<body class="is-preload">
|
||||
|
||||
<!-- Wrapper -->
|
||||
<div id="wrapper" class="divided">
|
||||
|
||||
<!-- Main -->
|
||||
{{ partial "banner" . }}
|
||||
{{ partial "spotlight-01-left" . }}
|
||||
{{ partial "spotlight-02-right" . }}
|
||||
{{ partial "spotlight-03-left" . }}
|
||||
{{ partial "gallery" . }}
|
||||
{{ partial "items" . }}
|
||||
{{ partial "elements" . }}
|
||||
{{ partial "elements_reference" . }}
|
||||
{{ partial "template/footer" . }}
|
||||
|
||||
<!-- Wrapper -->
|
||||
</div>
|
||||
|
||||
{{ template "_internal/google_analytics.html" . }}
|
||||
{{ partial "template/scripts" . }}
|
||||
|
||||
</body>
|
||||
</html>
|
14
layouts/partials/banner.html
Normal file
14
layouts/partials/banner.html
Normal file
@ -0,0 +1,14 @@
|
||||
<!-- Banner -->
|
||||
<section class="banner style1 orient-left content-align-left image-position-right fullscreen onload-image-fade-in onload-content-fade-right">
|
||||
<div class="content">
|
||||
{{ with .Site.Title }}<h1>{{.}}</h1>{{end}}
|
||||
{{ with .Site.Params.subtitle }}<p class="major">{{.}} released for free under the <a target="_blank" href="https://creativecommons.org/licenses/by/3.0/">Creative Commons</a>.</p>{{end}}
|
||||
<p>This is a <strong>Banner</strong> element, and it's generally used as an introduction or opening statement. You can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-banner">details</a>).</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#first" class="button large wide smooth-scroll-middle">Get Started</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
{{ with .Site.Params.logo }}<img src="{{.}}" alt="Hugo Story" />{{end}}
|
||||
</div>
|
||||
</section>
|
472
layouts/partials/elements.html
Normal file
472
layouts/partials/elements.html
Normal file
@ -0,0 +1,472 @@
|
||||
<!-- Additional Elements -->
|
||||
<section class="wrapper style1 align-center">
|
||||
<div class="inner">
|
||||
<h2>Additional Elements</h2>
|
||||
<p>Finally, here are some additional elements you <em>might</em> find useful (and yup, they look fine with any <span class="demo-controls">appearance</span>).</p>
|
||||
<div class="index align-left">
|
||||
|
||||
<!-- Text -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Text</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
|
||||
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
|
||||
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>.
|
||||
Finally, this is a <a href="#">link</a>.</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Heading -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Headings</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h1>Heading Level 1</h1>
|
||||
<h2>Heading Level 2</h2>
|
||||
<h3>Heading Level 3</h3>
|
||||
<h4>Heading Level 4</h4>
|
||||
<h5>Heading Level 5</h5>
|
||||
<h6>Heading Level 6</h6>
|
||||
|
||||
<hr />
|
||||
|
||||
<header>
|
||||
<h1>Heading with a Subtitle</h1>
|
||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||
</header>
|
||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<header>
|
||||
<h2>Heading with a Subtitle</h2>
|
||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||
</header>
|
||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<header>
|
||||
<h3>Heading with a Subtitle</h3>
|
||||
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
||||
</header>
|
||||
<p>Nunc lacinia ante nunc ac lobortis. Interdum adipiscing gravida odio porttitor sem non mi integer non faucibus ornare mi ut ante amet placerat aliquet. Volutpat eu sed ante lacinia sapien lorem accumsan varius montes viverra nibh in adipiscing blandit tempus accumsan.</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Unordered List -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Unordered List</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h4>Default</h4>
|
||||
<ul>
|
||||
<li>Lorem ipsum dolor sit amet</li>
|
||||
<li>Interdum adipiscing gravida odio</li>
|
||||
<li>Porttitor sem non integer</li>
|
||||
<li>Non faucibus ornare mi ut ante</li>
|
||||
<li>Sagittis adipiscing eleifend</li>
|
||||
<li>Felis amet dolore viverra</li>
|
||||
</ul>
|
||||
|
||||
<h4>Alternate</h4>
|
||||
<ul class="alt">
|
||||
<li>Lorem ipsum dolor sit amet</li>
|
||||
<li>Interdum adipiscing gravida odio</li>
|
||||
<li>Porttitor sem non integer</li>
|
||||
<li>Non faucibus ornare mi ut ante</li>
|
||||
<li>Sagittis adipiscing eleifend</li>
|
||||
<li>Felis amet dolore viverra</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Ordered List -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Ordered List</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<ol>
|
||||
<li>Lorem ipsum dolor sit amet</li>
|
||||
<li>Interdum adipiscing gravida odio</li>
|
||||
<li>Porttitor sem non integer</li>
|
||||
<li>Non faucibus ornare mi ut ante</li>
|
||||
<li>Sagittis adipiscing eleifend</li>
|
||||
<li>Felis amet dolore viverra</li>
|
||||
</ol>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Definition List -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Definition List</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<dl>
|
||||
<dt>Interdum adipiscing odio</dt>
|
||||
<dd>
|
||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent fringilla quis tincidunt felis sagittis eget tempus euismod. Ante ipsum primis vestibulum.</p>
|
||||
</dd>
|
||||
<dt>Non faucibus ornare mi ut ante</dt>
|
||||
<dd>
|
||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent fringilla quis tincidunt felis sagittis eget tempus euismod. Ante ipsum primis vestibulum.</p>
|
||||
</dd>
|
||||
<dt>Felis amet dolore viverra</dt>
|
||||
<dd>
|
||||
<p>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent fringilla quis tincidunt felis sagittis eget tempus euismod. Ante ipsum primis vestibulum.</p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Blockquote -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Blockquote</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<blockquote>Lorem ipsum dolor vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent fringilla quis tincidunt felis sagittis eget tempus euismod. Ante ipsum primis vestibulum.</blockquote>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Code -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Code</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<pre><code>i = 0;
|
||||
|
||||
while (!deck.isInOrder()) {
|
||||
print 'Iteration ' + i;
|
||||
deck.shuffle();
|
||||
i++;
|
||||
}
|
||||
|
||||
print 'It took ' + i + ' iterations to sort the deck.';
|
||||
</code></pre>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Icons -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Icons</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h4>Style #1</h4>
|
||||
<ul class="icons">
|
||||
<li><a href="#" class="icon brands style1 fa-twitter"><span class="label">Twitter</span></a></li>
|
||||
<li><a href="#" class="icon brands style1 fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||
<li><a href="#" class="icon brands style1 fa-instagram"><span class="label">Instagram</span></a></li>
|
||||
<li><a href="#" class="icon brands style1 fa-github"><span class="label">Github</span></a></li>
|
||||
<li><a href="#" class="icon brands style1 fa-dribbble"><span class="label">Dribbble</span></a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Style #2</h4>
|
||||
<ul class="icons">
|
||||
<li><a href="#" class="icon brands style2 fa-twitter"><span class="label">Twitter</span></a></li>
|
||||
<li><a href="#" class="icon brands style2 fa-facebook-f"><span class="label">Facebook</span></a></li>
|
||||
<li><a href="#" class="icon brands style2 fa-instagram"><span class="label">Instagram</span></a></li>
|
||||
<li><a href="#" class="icon brands style2 fa-github"><span class="label">Github</span></a></li>
|
||||
<li><a href="#" class="icon brands style2 fa-dribbble"><span class="label">Dribbble</span></a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Buttons -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Buttons</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<ul class="actions">
|
||||
<li><a href="#" class="button primary">Primary</a></li>
|
||||
<li><a href="#" class="button">Default</a></li>
|
||||
</ul>
|
||||
<ul class="actions">
|
||||
<li><a href="#" class="button primary large">Large</a></li>
|
||||
<li><a href="#" class="button">Default</a></li>
|
||||
<li><a href="#" class="button small">Small</a></li>
|
||||
</ul>
|
||||
<ul class="actions fit">
|
||||
<li><a href="#" class="button primary fit">Fit</a></li>
|
||||
<li><a href="#" class="button fit">Fit</a></li>
|
||||
<li><a href="#" class="button primary fit">Fit</a></li>
|
||||
<li><a href="#" class="button fit">Fit</a></li>
|
||||
</ul>
|
||||
<ul class="actions fit small">
|
||||
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
|
||||
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
||||
<li><a href="#" class="button primary fit small">Fit + Small</a></li>
|
||||
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
||||
</ul>
|
||||
<ul class="actions">
|
||||
<li><a href="#" class="button primary icon solid fa-search">Icon</a></li>
|
||||
<li><a href="#" class="button icon solid fa-download">Icon</a></li>
|
||||
</ul>
|
||||
<ul class="actions">
|
||||
<li><span class="button primary disabled">Primary</span></li>
|
||||
<li><span class="button disabled">Default</span></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Actions -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Actions</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h4>Default</h4>
|
||||
<ul class="actions">
|
||||
<li><a href="#" class="button primary">Default</a></li>
|
||||
<li><a href="#" class="button">Default</a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Small</h4>
|
||||
<ul class="actions small">
|
||||
<li><a href="#" class="button primary small">Small</a></li>
|
||||
<li><a href="#" class="button small">Small</a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Stacked</h4>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#" class="button primary">Default</a></li>
|
||||
<li><a href="#" class="button">Default</a></li>
|
||||
</ul>
|
||||
|
||||
<h4>Stacked + Fit</h4>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#" class="button primary fit">Default</a></li>
|
||||
<li><a href="#" class="button fit">Default</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Form -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Form</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<form method="post" action="#">
|
||||
<div class="fields">
|
||||
<div class="field half">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" name="name" id="name" value="" />
|
||||
</div>
|
||||
<div class="field half">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" name="email" id="email" value="" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="department">Department</label>
|
||||
<select name="department" id="department">
|
||||
<option value="">- Category -</option>
|
||||
<option value="1">Manufacturing</option>
|
||||
<option value="2">Shipping</option>
|
||||
<option value="3">Administration</option>
|
||||
<option value="4">Human Resources</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="field third">
|
||||
<input type="radio" id="priority-low" name="priority" checked />
|
||||
<label for="priority-low">Low Priority</label>
|
||||
</div>
|
||||
<div class="field third">
|
||||
<input type="radio" id="priority-normal" name="priority" />
|
||||
<label for="priority-normal">Normal Priority</label>
|
||||
</div>
|
||||
<div class="field third">
|
||||
<input type="radio" id="priority-high" name="priority" />
|
||||
<label for="priority-high">High Priority</label>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="message">Message</label>
|
||||
<textarea name="message" id="message" rows="6"></textarea>
|
||||
</div>
|
||||
<div class="field half">
|
||||
<input type="checkbox" id="copy" name="copy" />
|
||||
<label for="copy">Email me a copy of this message</label>
|
||||
</div>
|
||||
<div class="field half">
|
||||
<input type="checkbox" id="human" name="human" checked />
|
||||
<label for="human">I am a human and not a robot</label>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="actions">
|
||||
<li><input type="submit" name="submit" id="submit" value="Send Message" /></li>
|
||||
</ul>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Table -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Table</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h4>Default</h4>
|
||||
<div class="table-wrapper">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Price</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Item 1</td>
|
||||
<td>Ante turpis integer aliquet porttitor.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 2</td>
|
||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
||||
<td>19.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 3</td>
|
||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 4</td>
|
||||
<td>Vitae integer tempus condimentum.</td>
|
||||
<td>19.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 5</td>
|
||||
<td>Ante turpis integer aliquet porttitor.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2"></td>
|
||||
<td>100.00</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h4>Alternate</h4>
|
||||
<div class="table-wrapper">
|
||||
<table class="alt">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Price</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Item 1</td>
|
||||
<td>Ante turpis integer aliquet porttitor.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 2</td>
|
||||
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
||||
<td>19.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 3</td>
|
||||
<td> Morbi faucibus arcu accumsan lorem.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 4</td>
|
||||
<td>Vitae integer tempus condimentum.</td>
|
||||
<td>19.99</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Item 5</td>
|
||||
<td>Ante turpis integer aliquet porttitor.</td>
|
||||
<td>29.99</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2"></td>
|
||||
<td>100.00</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Images -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Images</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<h4>Fit</h4>
|
||||
<span class="image fit"><img src="images/banner.jpg" alt="" /></span>
|
||||
|
||||
<h4>Left</h4>
|
||||
<p><span class="image left"><img src="images/pic01.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis volutpat lorem ipsum dolor sit amet dolor consequat.</p>
|
||||
|
||||
<h4>Right</h4>
|
||||
<p><span class="image right"><img src="images/pic02.jpg" alt="" /></span>Lorem ipsum dolor sit accumsan interdum nisi, quis tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Vestibulum ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Vestibulum ante ipsum primis in faucibus magna blandit adipiscing eu felis iaculis volutpat lorem ipsum dolor sit amet dolor consequat.</p>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Box -->
|
||||
<section>
|
||||
<header>
|
||||
<h3>Box</h3>
|
||||
</header>
|
||||
<div class="content">
|
||||
|
||||
<div class="box">
|
||||
<p>Felis sagittis eget tempus primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent tincidunt felis sagittis eget. tempus euismod. Magna sed etiam ante ipsum primis in faucibus vestibulum. Blandit adipiscing eu ipsum primis in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus lorem ipsum dolor sit amet nullam.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
2009
layouts/partials/elements_reference.html
Normal file
2009
layouts/partials/elements_reference.html
Normal file
File diff suppressed because it is too large
Load Diff
156
layouts/partials/gallery.html
Normal file
156
layouts/partials/gallery.html
Normal file
@ -0,0 +1,156 @@
|
||||
<!-- Gallery -->
|
||||
<section class="wrapper style1 align-center">
|
||||
<div class="inner">
|
||||
<h2>Gallery</h2>
|
||||
<p>This is a <strong>Gallery</strong> element. It can behave as a lightbox (when given the <code>lightbox</code> class), and you can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-gallery">details</a>).</p>
|
||||
</div>
|
||||
|
||||
<!-- Gallery -->
|
||||
<div class="gallery style2 medium lightbox onscroll-fade-in">
|
||||
<article>
|
||||
<a href="images/gallery/fulls/01.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/01.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/02.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/02.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/03.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/03.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/04.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/04.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/05.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/05.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/06.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/06.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/07.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/07.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/08.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/08.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/09.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/09.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/10.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/10.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/11.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/11.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
<article>
|
||||
<a href="images/gallery/fulls/12.jpg" class="image">
|
||||
<img src="images/gallery/thumbs/12.jpg" alt="" />
|
||||
</a>
|
||||
<div class="caption">
|
||||
<h3>Title</h3>
|
||||
<p>Lorem ipsum dolor amet, consectetur magna etiam elit. Etiam sed ultrices.</p>
|
||||
<ul class="actions fixed">
|
||||
<li><span class="button small">Details</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
</section>
|
69
layouts/partials/items.html
Normal file
69
layouts/partials/items.html
Normal file
@ -0,0 +1,69 @@
|
||||
<!-- Items -->
|
||||
<section class="wrapper style1 align-center">
|
||||
<div class="inner">
|
||||
<h2>Items</h2>
|
||||
<p>This is an <strong>Items</strong> element, and it's basically just a grid for organizing items of various types. You can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-items">details</a>).</p>
|
||||
<div class="items style1 medium onscroll-fade-in">
|
||||
<section>
|
||||
<span class="icon style2 major fa-gem"></span>
|
||||
<h3>One</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-save"></span>
|
||||
<h3>Two</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-chart-bar"></span>
|
||||
<h3>Three</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-wifi"></span>
|
||||
<h3>Four</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-cog"></span>
|
||||
<h3>Five</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon style2 major fa-paper-plane"></span>
|
||||
<h3>Six</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-desktop"></span>
|
||||
<h3>Seven</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-sync-alt"></span>
|
||||
<h3>Eight</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-hashtag"></span>
|
||||
<h3>Nine</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-bolt"></span>
|
||||
<h3>Ten</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon style2 major fa-envelope"></span>
|
||||
<h3>Eleven</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
<section>
|
||||
<span class="icon solid style2 major fa-leaf"></span>
|
||||
<h3>Twelve</h3>
|
||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi dui turpis, cursus eget orci amet aliquam congue semper. Etiam eget ultrices risus nec tempor elit.</p>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
1663
layouts/partials/modifiers.html
Normal file
1663
layouts/partials/modifiers.html
Normal file
File diff suppressed because it is too large
Load Diff
13
layouts/partials/spotlight-01-left.html
Normal file
13
layouts/partials/spotlight-01-left.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!-- Spotlight -->
|
||||
<section class="spotlight style1 orient-right content-align-left image-position-center onscroll-image-fade-in" id="first">
|
||||
<div class="content">
|
||||
<h2>Spotlight</h2>
|
||||
<p>This is a <strong>Spotlight</strong> element, and it's generally used – as its name implies – to spotlight a particular feature, subject, or pretty much whatever. You can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-spotlight">details</a>).</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#" class="button">Learn More</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="images/spotlight01.jpg" alt="" />
|
||||
</div>
|
||||
</section>
|
13
layouts/partials/spotlight-02-right.html
Normal file
13
layouts/partials/spotlight-02-right.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!-- Spotlight 02 Right -->
|
||||
<section class="spotlight style1 orient-left content-align-left image-position-center onscroll-image-fade-in">
|
||||
<div class="content">
|
||||
<h2>Spotlight</h2>
|
||||
<p>This is also a <strong>Spotlight</strong> element, and it's here because this demo would look a bit empty with just one spotlight. Like all spotlights, you can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-spotlight">details</a>).</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#" class="button">Learn More</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="images/spotlight02.jpg" alt="" />
|
||||
</div>
|
||||
</section>
|
13
layouts/partials/spotlight-03-left.html
Normal file
13
layouts/partials/spotlight-03-left.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!-- Spotlight 03 Left -->
|
||||
<section class="spotlight style1 orient-right content-align-left image-position-center onscroll-image-fade-in">
|
||||
<div class="content">
|
||||
<h2>Spotlight</h2>
|
||||
<p>And yes, this is another <strong>Spotlight</strong> element, and it's also here because I need to fill a bit of space. Naturally, like any other spotlight, you can customize its <span class="demo-controls">appearance with a number of modifiers</span>, as well as assign it an optional <code>onload</code> or <code>onscroll</code> transition modifier (<a href="#reference-spotlight">details</a>).</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#" class="button">Learn More</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="images/spotlight03.jpg" alt="" />
|
||||
</div>
|
||||
</section>
|
7
layouts/partials/template/favicon.html
Normal file
7
layouts/partials/template/favicon.html
Normal file
@ -0,0 +1,7 @@
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
15
layouts/partials/template/footer.html
Normal file
15
layouts/partials/template/footer.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!-- Footer -->
|
||||
<footer class="wrapper style1 align-center">
|
||||
<div class="inner">
|
||||
<ul class="icons">
|
||||
<li>{{ with .Site.Params.social.github }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-github"><span class="label">Github</span></a></li>{{end}}
|
||||
<li>{{ with .Site.Params.social.twitter }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-twitter"><span class="label">Twitter</span></a></li>{{end}}
|
||||
<li>{{ with .Site.Params.social.instagram }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-instagram"><span class="label">Instagram</span></a></li>{{end}}
|
||||
<li>{{ with .Site.Params.social.linkedin }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-linkedin"><span class="label">LinkedIn</span></a></li>{{end}}
|
||||
<li>{{ with .Site.Params.social.email }}<a target="_blank" href="mailto:{{.}}" class="fav icon style2 fa-envelope"><span class="label">Email</span></a></li>{{end}}
|
||||
</ul>
|
||||
<p>Hugo Story © 2020 <a target="_blank" href="https://github.com/caressofsteel/">CaressOfSteel</a><span class="footerspacer icon fad fa-diamond"></span>
|
||||
Ported from <a target="_blank" href="https://html5up.net/uploads/demos/story/">Story</a> by HTML5UP<span class="footerspacer icon fad fa-diamond"></span>
|
||||
Images courtesy of <a target="_blank" href="https://unsplash.com">Unsplash</a></p>
|
||||
</div>
|
||||
</footer>
|
25
layouts/partials/template/head.html
Normal file
25
layouts/partials/template/head.html
Normal file
@ -0,0 +1,25 @@
|
||||
<head>
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
{{ if .Site.Params.favicon }}
|
||||
{{ partial "template/favicon" }}
|
||||
{{ end }}
|
||||
<!-- CSS -->
|
||||
{{ if .Site.IsServer }}
|
||||
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "scss/main.scss" . | toCSS (dict "targetPath" "assets/css/main.css" "outputStyle" "compressed" "enableSourceMap" false) }}
|
||||
<link rel="stylesheet" href="{{ ($style).RelPermalink }}">
|
||||
{{ else }}
|
||||
{{ $style := resources.Get "sass/main.scss" | resources.ExecuteAsTemplate "scss/main.scss" . | toCSS (dict "targetPath" "assets/css/main.css" "enableSourceMap" false) }}
|
||||
<link rel="stylesheet" href="{{ ($style | minify).RelPermalink }}">
|
||||
{{ end }}
|
||||
{{ if .Site.IsServer }}
|
||||
{{ $noscript := resources.Get "sass/noscript.scss" | resources.ExecuteAsTemplate "noscript.scss" . | toCSS (dict "targetPath" "assets/css/noscript.css" "enableSourceMap" false) }}
|
||||
<noscript><link rel="stylesheet" href="{{ ($noscript).RelPermalink }}" /></noscript>
|
||||
{{ else }}
|
||||
{{ $noscript := resources.Get "sass/noscript.scss" | resources.ExecuteAsTemplate "noscript.scss" . | toCSS (dict "targetPath" "assets/css/noscript.css" "enableSourceMap" false) }}
|
||||
<noscript><link rel="stylesheet" href="{{ ($noscript | minify).RelPermalink }}" /></noscript>
|
||||
{{end}}
|
||||
</head>
|
14
layouts/partials/template/scripts.html
Normal file
14
layouts/partials/template/scripts.html
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
{{ $jQuery := resources.Get "js/jquery.min.js" }}
|
||||
{{ $scrollex := resources.Get "js/jquery.scrollex.min.js" }}
|
||||
{{ $scrolly := resources.Get "js/jquery.scrolly.min.js" }}
|
||||
{{ $browser := resources.Get "js/browser.min.js" }}
|
||||
{{ $breakpoints := resources.Get "js/breakpoints.min.js" }}
|
||||
{{ $util := resources.Get "js/util.js" }}
|
||||
{{ $main := resources.Get "js/main.js" }}
|
||||
{{ $demo := resources.Get "js/demo.js" }}
|
||||
|
||||
{{ $js := slice $jQuery $scrollex $scrolly $browser $breakpoints $util $main $demo | resources.Concat "assets/js/bundle.js" | minify }}
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src='{{ $js.RelPermalink }}'></script>
|
Reference in New Issue
Block a user