jekyll-introspect 0.1.0 → 0.1.1
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 +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +86 -0
- data/_includes/banner.html +10 -0
- data/_includes/blog.html +21 -0
- data/_includes/footer.html +28 -0
- data/_includes/head.html +5 -0
- data/_includes/header.html +12 -0
- data/_includes/main-container.html +16 -0
- data/_includes/scripts.html +5 -0
- data/_includes/services.html +19 -0
- data/_layouts/404.html +3 -0
- data/_layouts/default.html +17 -0
- data/_layouts/page.html +18 -0
- data/_layouts/post.html +5 -0
- data/_layouts/services.html +5 -0
- data/_services/aliquam-nulla.md +10 -0
- data/_services/sed-magna.md +10 -0
- data/_services/tempus-feugiat.md +10 -0
- data/elements.html +356 -0
- metadata +28 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9fe4c9d2425a431ed486616d3fa0a299f5c873f
|
4
|
+
data.tar.gz: b92ede3e2733ac8fbfb2f819b359fa82fb938ea3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 295cf9f62aa864a78ca4a199a85745da6cabf3448fe6ae648044b4f79179b140df724efaee102fefdd52522aa046f8c0cf6b39511362a7e09cf5c7beff6369cb
|
7
|
+
data.tar.gz: 5c787fe4931aef8684778eb15fc6c4caa237f5dd9ee4aac1f88eed54ae5b17bab2563f1f6147cb0c2f9282d07e6714dcbaeec99f7d512781b860eb322f6191cd
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Chaitali Patil
|
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,86 @@
|
|
1
|
+
# Jekyll-Introspect
|
2
|
+
|
3
|
+
An ultra-minimal landing page template with a big cover photo.
|
4
|
+
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your Jekyll site's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "jekyll-introspect"
|
12
|
+
```
|
13
|
+
|
14
|
+
And add this line to your Jekyll site:
|
15
|
+
|
16
|
+
```yaml
|
17
|
+
theme: jekyll-introspect
|
18
|
+
gems:
|
19
|
+
- jekyll-bower
|
20
|
+
- liquid-google-analytics
|
21
|
+
bower:
|
22
|
+
introspect: "https://templated.co/introspect/download"
|
23
|
+
|
24
|
+
```
|
25
|
+
|
26
|
+
And then execute:
|
27
|
+
|
28
|
+
$ bundle install
|
29
|
+
|
30
|
+
Or install it yourself as:
|
31
|
+
|
32
|
+
$ gem install jekyll-introspect
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
A simple website template having beautiful landing page, blog posts and services/products listing.
|
37
|
+
|
38
|
+
To add blog to your website, create `_posts` folder under root directory. Write front matter inside post as follows:
|
39
|
+
```yaml
|
40
|
+
---
|
41
|
+
title: Morbi interdum mol
|
42
|
+
image_path: images/pic02.jpg
|
43
|
+
layout: page
|
44
|
+
---
|
45
|
+
```
|
46
|
+
|
47
|
+
To display services, create `_services` folder inside root directory.
|
48
|
+
Create service as `service-name.md` in `_services` folder.
|
49
|
+
Add front matter in each service as:
|
50
|
+
```yaml
|
51
|
+
---
|
52
|
+
title: Aliquam Nulla
|
53
|
+
icon: fa-laptop
|
54
|
+
short_description: Ut convallis, sem sit amet interdum consectetuer, odio augue aliquam leo, nec dapibus tortor nibh sed.
|
55
|
+
categories: services
|
56
|
+
layout: page
|
57
|
+
---
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
Create collection in `_config.yml` file as
|
62
|
+
```ruby
|
63
|
+
collections:
|
64
|
+
services:
|
65
|
+
output: true
|
66
|
+
```
|
67
|
+
|
68
|
+
Update `social_links` in `_config.yml` file according to your social account url.
|
69
|
+
|
70
|
+
|
71
|
+
## Contributing
|
72
|
+
|
73
|
+
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.
|
74
|
+
|
75
|
+
## Development
|
76
|
+
|
77
|
+
To set up your environment to develop this theme, run `bundle install`.
|
78
|
+
|
79
|
+
You theme is setup just like a normal Jelyll 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.
|
80
|
+
|
81
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
82
|
+
|
83
|
+
## License
|
84
|
+
|
85
|
+
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
86
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<!-- Banner -->
|
2
|
+
<section id="banner">
|
3
|
+
<div class="inner">
|
4
|
+
<h1>Introspect: <span>A free + fully responsive<br />
|
5
|
+
site template by TEMPLATED</span></h1>
|
6
|
+
<ul class="actions">
|
7
|
+
<li><a href="#" class="button alt">Get Started</a></li>
|
8
|
+
</ul>
|
9
|
+
</div>
|
10
|
+
</section>
|
data/_includes/blog.html
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
<!-- Two -->
|
2
|
+
<section id="two">
|
3
|
+
<div class="inner">
|
4
|
+
{% for post in site.posts %}
|
5
|
+
{% capture modulo %}{{ forloop.index0 | modulo:2 }}{% endcapture %}
|
6
|
+
<article {% if modulo == '0' %}
|
7
|
+
class="alt"
|
8
|
+
{% endif %}
|
9
|
+
><div class="content">
|
10
|
+
<header>
|
11
|
+
<a href="{{ site.baseurl }}{{ post.url }}"><h3>{{ post.title }}</h3></a>
|
12
|
+
</header>
|
13
|
+
<div class="image fit">
|
14
|
+
<img src="{{ site.baseurl }}/{{ post.image_path }}" alt="" />
|
15
|
+
</div>
|
16
|
+
<p>{{ post.content }}</p>
|
17
|
+
</div>
|
18
|
+
</article>
|
19
|
+
{% endfor %}
|
20
|
+
</div>
|
21
|
+
</section>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<!-- Footer -->
|
2
|
+
<section id="footer">
|
3
|
+
<div class="inner">
|
4
|
+
<header>
|
5
|
+
<h2>Get in Touch</h2>
|
6
|
+
</header>
|
7
|
+
<form method="post" action="#">
|
8
|
+
<div class="field half first">
|
9
|
+
<label for="name">Name</label>
|
10
|
+
<input type="text" name="name" id="name" />
|
11
|
+
</div>
|
12
|
+
<div class="field half">
|
13
|
+
<label for="email">Email</label>
|
14
|
+
<input type="text" name="email" id="email" />
|
15
|
+
</div>
|
16
|
+
<div class="field">
|
17
|
+
<label for="message">Message</label>
|
18
|
+
<textarea name="message" id="message" rows="6"></textarea>
|
19
|
+
</div>
|
20
|
+
<ul class="actions">
|
21
|
+
<li><input type="submit" value="Send Message" class="alt" /></li>
|
22
|
+
</ul>
|
23
|
+
</form>
|
24
|
+
<div class="copyright">
|
25
|
+
© Untitled Design: <a href="https://templated.co/">TEMPLATED</a>. Images <a href="https://unsplash.com/">Unsplash</a> Jekyll Template: <a href="http://saiashirwad.com">Sai Ashirwad Informatia</a>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</section>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
<title>{{ page.title }} - {{ site.title }}</title>
|
2
|
+
<meta charset="utf-8" />
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
4
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/bower_components/introspect/assets/css/font-awesome.min.css" />
|
5
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/bower_components/introspect/assets/css/main.css" />
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<!-- Header -->
|
2
|
+
<header id="header">
|
3
|
+
<div class="inner">
|
4
|
+
<a href="{{ site.baseurl }}/" class="logo">introspect</a>
|
5
|
+
<nav id="nav">
|
6
|
+
<a href="{{ site.baseurl }}/">Home</a>
|
7
|
+
<a href="{{ site.baseurl }}/generic/">Generic</a>
|
8
|
+
<a href="{{ site.baseurl }}/elements/">Elements</a>
|
9
|
+
</nav>
|
10
|
+
</div>
|
11
|
+
</header>
|
12
|
+
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!-- One -->
|
2
|
+
|
3
|
+
{% include banner.html %}
|
4
|
+
<section id="one">
|
5
|
+
<div class="inner">
|
6
|
+
<header>
|
7
|
+
<h2>Magna Etiam Lorem</h2>
|
8
|
+
</header>
|
9
|
+
<p>Suspendisse mauris. Fusce accumsan mollis eros. Pellentesque a diam sit amet mi ullamcorper vehicula. Integer adipiscin sem. Nullam quis massa sit amet nibh viverra malesuada. Nunc sem lacus, accumsan quis, faucibus non, congue vel, arcu, erisque hendrerit tellus. Integer sagittis. Vivamus a mauris eget arcu gravida tristique. Nunc iaculis mi in ante.</p>
|
10
|
+
<ul class="actions">
|
11
|
+
<li><a href="#" class="button alt">Learn More</a></li>
|
12
|
+
</ul>
|
13
|
+
</div>
|
14
|
+
</section>
|
15
|
+
{% include blog.html %}
|
16
|
+
{% include services.html %}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<!-- Scripts -->
|
2
|
+
<script src="{{ site.baseurl }}/bower_components/introspect/assets/js/jquery.min.js"></script>
|
3
|
+
<script src="{{ site.baseurl }}/bower_components/introspect/assets/js/skel.min.js"></script>
|
4
|
+
<script src="{{ site.baseurl }}/bower_components/introspect/assets/js/util.js"></script>
|
5
|
+
<script src="{{ site.baseurl }}/bower_components/introspect/assets/js/main.js"></script>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<!-- Three -->
|
2
|
+
<section id="three">
|
3
|
+
<div class="inner">
|
4
|
+
{% for service in site.services %}
|
5
|
+
<article>
|
6
|
+
<div class="content">
|
7
|
+
<span class="icon {{ service.icon }}"></span>
|
8
|
+
<header>
|
9
|
+
<h3><a href="{{ site.baseurl }}{{ service.url }}">{{ service.title }}</a></h3>
|
10
|
+
</header>
|
11
|
+
<p>{{ service.short_description }}</p>
|
12
|
+
<ul class="actions">
|
13
|
+
<li><a href="{{ site.baseurl }}{{ service.url }}" class="button alt">Learn More</a></li>
|
14
|
+
</ul>
|
15
|
+
</div>
|
16
|
+
</article>
|
17
|
+
{% endfor %}
|
18
|
+
</div>
|
19
|
+
</section>
|
data/_layouts/404.html
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<!--
|
3
|
+
Introspect by TEMPLATED
|
4
|
+
templated.co @templatedco
|
5
|
+
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
|
6
|
+
-->
|
7
|
+
<html>
|
8
|
+
<head>
|
9
|
+
{% include head.html %}
|
10
|
+
</head>
|
11
|
+
<body>
|
12
|
+
{% include header.html %}
|
13
|
+
{{ content }}
|
14
|
+
{% include footer.html %}
|
15
|
+
{% include scripts.html %}
|
16
|
+
</body>
|
17
|
+
</html>
|
data/_layouts/page.html
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<!-- Main -->
|
5
|
+
<section id="main" >
|
6
|
+
<div class="inner">
|
7
|
+
<header class="major special">
|
8
|
+
<h1>{{ page.title }}</h1>
|
9
|
+
{% if page.short_description %}
|
10
|
+
<p>{{ page.short_description }}</p>
|
11
|
+
{% endif %}
|
12
|
+
</header>
|
13
|
+
{% if page.image_path %}
|
14
|
+
<a href="#" class="image fit"><img src="{{ site.baseurl }}/{{ page.image_path }}" alt="" /></a>
|
15
|
+
{% endif %}
|
16
|
+
{{ content }}
|
17
|
+
</div>
|
18
|
+
</section>
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
title: Aliquam Nulla
|
3
|
+
icon: fa-laptop
|
4
|
+
short_description: Ut convallis, sem sit amet interdum consectetuer, odio augue aliquam leo, nec dapibus tortor nibh sed.
|
5
|
+
categories: services
|
6
|
+
layout: page
|
7
|
+
---
|
8
|
+
|
9
|
+
|
10
|
+
Contrary to popular belief, **Lorem Ipsum** is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
title: Sed Magna
|
3
|
+
icon: fa-diamond
|
4
|
+
short_description: Suspendisse mauris. Fusce accumsan mollis eros. Pellentesque a diam sit amet mi ullamcorper vehicula.
|
5
|
+
categories: services
|
6
|
+
layout: page
|
7
|
+
---
|
8
|
+
|
9
|
+
|
10
|
+
Contrary to popular belief, **Lorem Ipsum** is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
---
|
2
|
+
title: Tempus Feugiat
|
3
|
+
icon: fa-laptop
|
4
|
+
short_description: Morbi interdum mollis sapien. Sed ac risus. Phasellus lacinia, magna lorem ullamcorper laoreet, lectus arcu.
|
5
|
+
categories: services
|
6
|
+
layout: page
|
7
|
+
---
|
8
|
+
|
9
|
+
|
10
|
+
Contrary to popular belief, **Lorem Ipsum** is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.
|
data/elements.html
ADDED
@@ -0,0 +1,356 @@
|
|
1
|
+
---
|
2
|
+
title: Elements
|
3
|
+
layout: page
|
4
|
+
short_description: Lorem ipsum dolor sit amet nullam id egestas urna aliquam
|
5
|
+
permalink: /elements/
|
6
|
+
---
|
7
|
+
|
8
|
+
<!-- Text -->
|
9
|
+
<section>
|
10
|
+
<h3>Text</h3>
|
11
|
+
<p>This is <b>bold</b> and this is <strong>strong</strong>. This is <i>italic</i> and this is <em>emphasized</em>.
|
12
|
+
This is <sup>superscript</sup> text and this is <sub>subscript</sub> text.
|
13
|
+
This is <u>underlined</u> and this is code: <code>for (;;) { ... }</code>. Finally, <a href="#">this is a link</a>.</p>
|
14
|
+
|
15
|
+
<hr />
|
16
|
+
|
17
|
+
<header>
|
18
|
+
<h3>Heading with a Subtitle</h3>
|
19
|
+
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
20
|
+
</header>
|
21
|
+
<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>
|
22
|
+
<header>
|
23
|
+
<h4>Heading with a Subtitle</h4>
|
24
|
+
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
|
25
|
+
</header>
|
26
|
+
<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>
|
27
|
+
|
28
|
+
<hr />
|
29
|
+
|
30
|
+
<h2>Heading Level 2</h2>
|
31
|
+
<h3>Heading Level 3</h3>
|
32
|
+
<h4>Heading Level 4</h4>
|
33
|
+
<h5>Heading Level 5</h5>
|
34
|
+
<h6>Heading Level 6</h6>
|
35
|
+
|
36
|
+
<hr />
|
37
|
+
|
38
|
+
<h4>Blockquote</h4>
|
39
|
+
<blockquote>Fringilla nisl. Donec 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 faucibus. Vestibulum ante ipsum primis in faucibus lorem ipsum dolor sit amet nullam adipiscing eu felis.</blockquote>
|
40
|
+
|
41
|
+
<h4>Preformatted</h4>
|
42
|
+
<pre><code>i = 0;
|
43
|
+
|
44
|
+
while (!deck.isInOrder()) {
|
45
|
+
print 'Iteration ' + i;
|
46
|
+
deck.shuffle();
|
47
|
+
i++;
|
48
|
+
}
|
49
|
+
|
50
|
+
print 'It took ' + i + ' iterations to sort the deck.';</code></pre>
|
51
|
+
</section>
|
52
|
+
|
53
|
+
<!-- Lists -->
|
54
|
+
<section>
|
55
|
+
<h3>Lists</h3>
|
56
|
+
<div class="row">
|
57
|
+
<div class="6u 12u$(xsmall)">
|
58
|
+
|
59
|
+
<h4>Unordered</h4>
|
60
|
+
<ul>
|
61
|
+
<li>Dolor pulvinar etiam magna etiam.</li>
|
62
|
+
<li>Sagittis adipiscing lorem eleifend.</li>
|
63
|
+
<li>Felis enim feugiat dolore viverra.</li>
|
64
|
+
</ul>
|
65
|
+
|
66
|
+
<h4>Alternate</h4>
|
67
|
+
<ul class="alt">
|
68
|
+
<li>Dolor pulvinar etiam magna etiam.</li>
|
69
|
+
<li>Sagittis adipiscing lorem eleifend.</li>
|
70
|
+
<li>Felis enim feugiat dolore viverra.</li>
|
71
|
+
</ul>
|
72
|
+
|
73
|
+
</div>
|
74
|
+
<div class="6u$ 12u$(xsmall)">
|
75
|
+
|
76
|
+
<h4>Ordered</h4>
|
77
|
+
<ol>
|
78
|
+
<li>Dolor pulvinar etiam magna etiam.</li>
|
79
|
+
<li>Etiam vel felis at lorem sed viverra.</li>
|
80
|
+
<li>Felis enim feugiat dolore viverra.</li>
|
81
|
+
<li>Dolor pulvinar etiam magna etiam.</li>
|
82
|
+
<li>Etiam vel felis at lorem sed viverra.</li>
|
83
|
+
<li>Felis enim feugiat dolore viverra.</li>
|
84
|
+
</ol>
|
85
|
+
|
86
|
+
<h4>Icons</h4>
|
87
|
+
<ul class="icons">
|
88
|
+
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
|
89
|
+
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
|
90
|
+
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
|
91
|
+
<li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li>
|
92
|
+
<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li>
|
93
|
+
<li><a href="#" class="icon fa-tumblr"><span class="label">Tumblr</span></a></li>
|
94
|
+
</ul>
|
95
|
+
|
96
|
+
</div>
|
97
|
+
</div>
|
98
|
+
|
99
|
+
<h4>Actions</h4>
|
100
|
+
<ul class="actions">
|
101
|
+
<li><a href="#" class="button special">Special</a></li>
|
102
|
+
<li><a href="#" class="button">Default</a></li>
|
103
|
+
<li><a href="#" class="button alt">Alternate</a></li>
|
104
|
+
</ul>
|
105
|
+
<ul class="actions small">
|
106
|
+
<li><a href="#" class="button special small">Small</a></li>
|
107
|
+
<li><a href="#" class="button small">Small</a></li>
|
108
|
+
<li><a href="#" class="button alt small">Small</a></li>
|
109
|
+
</ul>
|
110
|
+
<div class="row">
|
111
|
+
<div class="3u 6u(small) 12u$(xsmall)">
|
112
|
+
<ul class="actions vertical">
|
113
|
+
<li><a href="#" class="button special">Vertical</a></li>
|
114
|
+
<li><a href="#" class="button">Vertical</a></li>
|
115
|
+
<li><a href="#" class="button alt">Vertical</a></li>
|
116
|
+
</ul>
|
117
|
+
</div>
|
118
|
+
<div class="3u 6u$(small) 12u$(xsmall)">
|
119
|
+
<ul class="actions vertical small">
|
120
|
+
<li><a href="#" class="button special small">Small</a></li>
|
121
|
+
<li><a href="#" class="button small">Small</a></li>
|
122
|
+
<li><a href="#" class="button alt small">Small</a></li>
|
123
|
+
</ul>
|
124
|
+
</div>
|
125
|
+
<div class="3u 6u(small) 12u$(xsmall)">
|
126
|
+
<ul class="actions vertical">
|
127
|
+
<li><a href="#" class="button special fit">Fit</a></li>
|
128
|
+
<li><a href="#" class="button fit">Fit</a></li>
|
129
|
+
<li><a href="#" class="button alt fit">Fit</a></li>
|
130
|
+
</ul>
|
131
|
+
</div>
|
132
|
+
<div class="3u$ 6u$(small) 12u$(xsmall)">
|
133
|
+
<ul class="actions vertical small">
|
134
|
+
<li><a href="#" class="button special small fit">Small</a></li>
|
135
|
+
<li><a href="#" class="button small fit">Small</a></li>
|
136
|
+
<li><a href="#" class="button alt small fit">Small</a></li>
|
137
|
+
</ul>
|
138
|
+
</div>
|
139
|
+
</div>
|
140
|
+
</section>
|
141
|
+
|
142
|
+
<!-- Table -->
|
143
|
+
<section>
|
144
|
+
<h3>Table</h3>
|
145
|
+
<h4>Default</h4>
|
146
|
+
<div class="table-wrapper">
|
147
|
+
<table>
|
148
|
+
<thead>
|
149
|
+
<tr>
|
150
|
+
<th>Name</th>
|
151
|
+
<th>Description</th>
|
152
|
+
<th>Price</th>
|
153
|
+
</tr>
|
154
|
+
</thead>
|
155
|
+
<tbody>
|
156
|
+
<tr>
|
157
|
+
<td>Item 1</td>
|
158
|
+
<td>Ante turpis integer aliquet porttitor.</td>
|
159
|
+
<td>29.99</td>
|
160
|
+
</tr>
|
161
|
+
<tr>
|
162
|
+
<td>Item 2</td>
|
163
|
+
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
164
|
+
<td>19.99</td>
|
165
|
+
</tr>
|
166
|
+
<tr>
|
167
|
+
<td>Item 3</td>
|
168
|
+
<td> Morbi faucibus arcu accumsan lorem.</td>
|
169
|
+
<td>29.99</td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td>Item 4</td>
|
173
|
+
<td>Vitae integer tempus condimentum.</td>
|
174
|
+
<td>19.99</td>
|
175
|
+
</tr>
|
176
|
+
<tr>
|
177
|
+
<td>Item 5</td>
|
178
|
+
<td>Ante turpis integer aliquet porttitor.</td>
|
179
|
+
<td>29.99</td>
|
180
|
+
</tr>
|
181
|
+
</tbody>
|
182
|
+
<tfoot>
|
183
|
+
<tr>
|
184
|
+
<td colspan="2"></td>
|
185
|
+
<td>100.00</td>
|
186
|
+
</tr>
|
187
|
+
</tfoot>
|
188
|
+
</table>
|
189
|
+
</div>
|
190
|
+
<h4>Alternate</h4>
|
191
|
+
<div class="table-wrapper">
|
192
|
+
<table class="alt">
|
193
|
+
<thead>
|
194
|
+
<tr>
|
195
|
+
<th>Name</th>
|
196
|
+
<th>Description</th>
|
197
|
+
<th>Price</th>
|
198
|
+
</tr>
|
199
|
+
</thead>
|
200
|
+
<tbody>
|
201
|
+
<tr>
|
202
|
+
<td>Item 1</td>
|
203
|
+
<td>Ante turpis integer aliquet porttitor.</td>
|
204
|
+
<td>29.99</td>
|
205
|
+
</tr>
|
206
|
+
<tr>
|
207
|
+
<td>Item 2</td>
|
208
|
+
<td>Vis ac commodo adipiscing arcu aliquet.</td>
|
209
|
+
<td>19.99</td>
|
210
|
+
</tr>
|
211
|
+
<tr>
|
212
|
+
<td>Item 3</td>
|
213
|
+
<td> Morbi faucibus arcu accumsan lorem.</td>
|
214
|
+
<td>29.99</td>
|
215
|
+
</tr>
|
216
|
+
<tr>
|
217
|
+
<td>Item 4</td>
|
218
|
+
<td>Vitae integer tempus condimentum.</td>
|
219
|
+
<td>19.99</td>
|
220
|
+
</tr>
|
221
|
+
<tr>
|
222
|
+
<td>Item 5</td>
|
223
|
+
<td>Ante turpis integer aliquet porttitor.</td>
|
224
|
+
<td>29.99</td>
|
225
|
+
</tr>
|
226
|
+
</tbody>
|
227
|
+
<tfoot>
|
228
|
+
<tr>
|
229
|
+
<td colspan="2"></td>
|
230
|
+
<td>100.00</td>
|
231
|
+
</tr>
|
232
|
+
</tfoot>
|
233
|
+
</table>
|
234
|
+
</div>
|
235
|
+
</section>
|
236
|
+
|
237
|
+
<!-- Buttons -->
|
238
|
+
<section>
|
239
|
+
<h3>Buttons</h3>
|
240
|
+
<ul class="actions">
|
241
|
+
<li><a href="#" class="button special">Special</a></li>
|
242
|
+
<li><a href="#" class="button">Default</a></li>
|
243
|
+
<li><a href="#" class="button alt">Alternate</a></li>
|
244
|
+
</ul>
|
245
|
+
<ul class="actions">
|
246
|
+
<li><a href="#" class="button special big">Big</a></li>
|
247
|
+
<li><a href="#" class="button">Default</a></li>
|
248
|
+
<li><a href="#" class="button alt small">Small</a></li>
|
249
|
+
</ul>
|
250
|
+
<div class="row">
|
251
|
+
<div class="6u 12u$(xsmall)">
|
252
|
+
<ul class="actions fit">
|
253
|
+
<li><a href="#" class="button fit">Fit</a></li>
|
254
|
+
<li><a href="#" class="button alt fit">Fit</a></li>
|
255
|
+
</ul>
|
256
|
+
</div>
|
257
|
+
<div class="6u$ 12u$(xsmall)">
|
258
|
+
<ul class="actions fit small">
|
259
|
+
<li><a href="#" class="button fit small">Fit + Small</a></li>
|
260
|
+
<li><a href="#" class="button alt fit small">Fit + Small</a></li>
|
261
|
+
</ul>
|
262
|
+
</div>
|
263
|
+
</div>
|
264
|
+
<ul class="actions">
|
265
|
+
<li><a href="#" class="button special icon fa-download">Icon</a></li>
|
266
|
+
<li><a href="#" class="button icon fa-download">Icon</a></li>
|
267
|
+
<li><a href="#" class="button alt icon fa-download">Icon</a></li>
|
268
|
+
</ul>
|
269
|
+
<ul class="actions">
|
270
|
+
<li><span class="button special disabled">Special</span></li>
|
271
|
+
<li><span class="button disabled">Default</span></li>
|
272
|
+
<li><span class="button alt disabled">Alternate</span></li>
|
273
|
+
</ul>
|
274
|
+
</section>
|
275
|
+
|
276
|
+
<!-- Form -->
|
277
|
+
<section>
|
278
|
+
<h3>Form</h3>
|
279
|
+
<form method="post" action="#">
|
280
|
+
<div class="row uniform 50%">
|
281
|
+
<div class="6u 12u$(xsmall)">
|
282
|
+
<input type="text" name="demo-name" id="demo-name" value="" placeholder="Name" />
|
283
|
+
</div>
|
284
|
+
<div class="6u$ 12u$(xsmall)">
|
285
|
+
<input type="email" name="demo-email" id="demo-email" value="" placeholder="Email" />
|
286
|
+
</div>
|
287
|
+
<div class="12u$">
|
288
|
+
<div class="select-wrapper">
|
289
|
+
<select name="demo-category" id="demo-category">
|
290
|
+
<option value="">- Category -</option>
|
291
|
+
<option value="1">Manufacturing</option>
|
292
|
+
<option value="1">Shipping</option>
|
293
|
+
<option value="1">Administration</option>
|
294
|
+
<option value="1">Human Resources</option>
|
295
|
+
</select>
|
296
|
+
</div>
|
297
|
+
</div>
|
298
|
+
<div class="4u 12u$(xsmall)">
|
299
|
+
<input type="radio" id="priority-low" name="priority" checked>
|
300
|
+
<label for="priority-low">Low Priority</label>
|
301
|
+
</div>
|
302
|
+
<div class="4u 12u$(xsmall)">
|
303
|
+
<input type="radio" id="priority-normal" name="priority">
|
304
|
+
<label for="priority-normal">Normal Priority</label>
|
305
|
+
</div>
|
306
|
+
<div class="4u$ 12u$(xsmall)">
|
307
|
+
<input type="radio" id="priority-high" name="priority">
|
308
|
+
<label for="priority-high">High Priority</label>
|
309
|
+
</div>
|
310
|
+
<div class="6u 12u$(small)">
|
311
|
+
<input type="checkbox" id="copy" name="copy">
|
312
|
+
<label for="copy">Email me a copy of this message</label>
|
313
|
+
</div>
|
314
|
+
<div class="6u$ 12u$(small)">
|
315
|
+
<input type="checkbox" id="human" name="human" checked>
|
316
|
+
<label for="human">I am a human and not a robot</label>
|
317
|
+
</div>
|
318
|
+
<div class="12u$">
|
319
|
+
<textarea name="demo-message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
|
320
|
+
</div>
|
321
|
+
<div class="12u$">
|
322
|
+
<ul class="actions">
|
323
|
+
<li><input type="submit" value="Send Message" class="special" /></li>
|
324
|
+
<li><input type="reset" value="Reset" /></li>
|
325
|
+
</ul>
|
326
|
+
</div>
|
327
|
+
</div>
|
328
|
+
</form>
|
329
|
+
</section>
|
330
|
+
|
331
|
+
<!-- Image -->
|
332
|
+
<section>
|
333
|
+
<h3>Image</h3>
|
334
|
+
<h4>Fit</h4>
|
335
|
+
<div class="box alt">
|
336
|
+
<div class="row 50% uniform">
|
337
|
+
<div class="12u$"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic11.jpg" alt="" /></span></div>
|
338
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic03.jpg" alt="" /></span></div>
|
339
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic04.jpg" alt="" /></span></div>
|
340
|
+
<div class="4u$"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic05.jpg" alt="" /></span></div>
|
341
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic05.jpg" alt="" /></span></div>
|
342
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic03.jpg" alt="" /></span></div>
|
343
|
+
<div class="4u$"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic04.jpg" alt="" /></span></div>
|
344
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic04.jpg" alt="" /></span></div>
|
345
|
+
<div class="4u"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic05.jpg" alt="" /></span></div>
|
346
|
+
<div class="4u$"><span class="image fit"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic03.jpg" alt="" /></span></div>
|
347
|
+
</div>
|
348
|
+
</div>
|
349
|
+
|
350
|
+
<h4>Left & Right</h4>
|
351
|
+
<p><span class="image left"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic06.jpg" alt="" /></span>Fringilla nisl. Donec 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 in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec 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 in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
352
|
+
<p><span class="image right"><img src="{{ site.baseurl }}/bower_components/introspect/images/pic06.jpg" alt="" /></span>Fringilla nisl. Donec 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 in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent. Donec 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 in faucibus vestibulum. Blandit adipiscing eu felis iaculis volutpat ac adipiscing accumsan eu faucibus. Integer ac pellentesque praesent.</p>
|
353
|
+
</section>
|
354
|
+
|
355
|
+
</div>
|
356
|
+
</section>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-introspect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chaitali Patil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.3.0
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.3.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,12 +58,32 @@ email:
|
|
58
58
|
executables: []
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
|
-
files:
|
62
|
-
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/banner.html
|
65
|
+
- _includes/blog.html
|
66
|
+
- _includes/footer.html
|
67
|
+
- _includes/head.html
|
68
|
+
- _includes/header.html
|
69
|
+
- _includes/main-container.html
|
70
|
+
- _includes/scripts.html
|
71
|
+
- _includes/services.html
|
72
|
+
- _layouts/404.html
|
73
|
+
- _layouts/default.html
|
74
|
+
- _layouts/page.html
|
75
|
+
- _layouts/post.html
|
76
|
+
- _layouts/services.html
|
77
|
+
- _services/aliquam-nulla.md
|
78
|
+
- _services/sed-magna.md
|
79
|
+
- _services/tempus-feugiat.md
|
80
|
+
- elements.html
|
81
|
+
homepage: https://cpatil.gitlab.io/Jekyll-Introspect
|
63
82
|
licenses:
|
64
83
|
- MIT
|
65
84
|
metadata: {}
|
66
|
-
post_install_message:
|
85
|
+
post_install_message: Thanks for Installing jekyll-introspect by Sai Ashirwad Informatia
|
86
|
+
& Design by Templated.co!!
|
67
87
|
rdoc_options: []
|
68
88
|
require_paths:
|
69
89
|
- lib
|
@@ -79,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
79
99
|
version: '0'
|
80
100
|
requirements: []
|
81
101
|
rubyforge_project:
|
82
|
-
rubygems_version: 2.6.
|
102
|
+
rubygems_version: 2.6.12
|
83
103
|
signing_key:
|
84
104
|
specification_version: 4
|
85
105
|
summary: An ultra-minimal landing page template with a big cover photo.
|