Skip to content

Commit f1cef50

Browse files
committed
pages
1 parent 98d4141 commit f1cef50

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+13575
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

README.md

888 Bytes

aierlab.github.io

Landing Page Jekyll theme

Jekyll theme based on landing-page bootstrap theme

How to use

  • Place a image in /img/services/
  • Create posts to display your services. Use the follow as an example:
---
layout: default
img: ipad.png
category: Services
title: The service title
---
The description of this service

Demo

View this jekyll theme in action here

Screenshot

screenshot

===

For more Jekyll details, read documentation. This Jekyll theme used Freelancer Jekyll theme as reference.

License

The contents of this repository are licensed under the Apache 2.0.

Version

1.0.1

_config.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# ----------------------- #
2+
# Main Configs #
3+
# ----------------------- #
4+
5+
url: http://yoursite.com
6+
title: Your Awesome Site
7+
8+
author: Your Name
9+
description: > # "Write an awesome description for your new site here.
10+
You can edit this line in _config.yml. It will appear in your document
11+
head meta (for Google search results) and in your feed.xml site
12+
description.
13+
copyright: 'Copyright © 2015 Your Name. All Rights Reserved.'
14+
credits: 'Credits: Landing Page is a free to use, open source Bootstrap theme created by <a href="http://startbootstrap.com/">Start Bootstrap</a>.'
15+
16+
# ----------------------- #
17+
# Jekyll & Plugins #
18+
# ----------------------- #
19+
20+
# Build settings
21+
markdown: kramdown
22+
permalink: pretty
23+
24+
# ----------------------- #
25+
# 3rd Party Settings #
26+
# ----------------------- #
27+
28+
social:
29+
- title: twitter
30+
url: https://twitter.com/SBootstrap
31+
- title: github
32+
url: https://github.com/IronSummitMedia/startbootstrap
33+
- title: linkedin
34+
url:

_includes/about.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- About Section -->
2+
<section id="about" class="container content-section text-center">
3+
<div class="row">
4+
<div class="col-lg-8 col-lg-offset-2">
5+
<br/><br/>
6+
<h2>About Landing-Page</h2>
7+
<br/>
8+
<p>Landing-Page is a free Bootstrap 3 theme created by Start Bootstrap. It can be yours right now, simply download the template on <a href="http://startbootstrap.com/template-overviews/landing-page/">the preview page</a>. The theme is open source, and you can use it for any purpose, personal or commercial.</p>
9+
<p>The Jekyll version is brought to you by <a href="https://github.com/swcool">Shane Weng</a></p>
10+
<p>This theme features stock photos by <a href="http://join.deathtothestockphoto.com//">Death to the Stock Photo</a>.</p>
11+
<p>Landing-Page includes full HTML, CSS, and custom JavaScript files along with LESS files for easy customization.</p>
12+
<br/>
13+
</div>
14+
</div>
15+
</section>

_includes/contact.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<section id="contact">
2+
<div class="banner">
3+
<div class="container">
4+
5+
<div class="row">
6+
<div class="col-lg-6">
7+
<h2>Keep in Touch:</h2>
8+
</div>
9+
<div class="col-lg-6">
10+
<ul class="list-inline banner-social-buttons">
11+
{% for social in site.social %}
12+
<li>
13+
<a href="{{ social.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ social.title }} fa-fw"></i> <span class="network-name">{{ social.title }}</span></a>
14+
</li>
15+
{% endfor %}
16+
</ul>
17+
</div>
18+
</div>
19+
20+
</div>
21+
<!-- /.container -->
22+
23+
</div>
24+
</section>
25+
<!-- /.banner -->

_includes/footer.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!-- Footer -->
2+
<footer>
3+
<div class="container">
4+
<div class="row">
5+
<div class="col-md-8">
6+
<ul class="list-inline">
7+
<li>
8+
<a href="#home">Home</a>
9+
</li>
10+
<li class="footer-menu-divider">&sdot;</li>
11+
<li>
12+
<a href="#about">About</a>
13+
</li>
14+
<li class="footer-menu-divider">&sdot;</li>
15+
<li>
16+
<a href="#services">Services</a>
17+
</li>
18+
<li class="footer-menu-divider">&sdot;</li>
19+
<li>
20+
<a href="#contact">Contact</a>
21+
</li>
22+
</ul>
23+
<p class="copyright text-muted small">{{ site.copyright }}</p>
24+
</div>
25+
<div class="col-md-4">
26+
{{ site.credits }}
27+
</div>
28+
</div>
29+
</div>
30+
</footer>

_includes/head.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<head>
2+
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="{{ site.description }}">
7+
<meta name="author" content="{{ site.author }}">
8+
9+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
10+
11+
<!-- Bootstrap Core CSS -->
12+
<link href="css/bootstrap.min.css" rel="stylesheet">
13+
14+
<!-- Custom CSS -->
15+
<link href="css/landing-page.css" rel="stylesheet">
16+
17+
<!-- Custom Fonts -->
18+
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
19+
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
20+
21+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
22+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
23+
<!--[if lt IE 9]>
24+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
25+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
26+
<![endif]-->
27+
28+
</head>

_includes/header.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!-- Navigation -->
2+
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
3+
<div class="container">
4+
<!-- Brand and toggle get grouped for better mobile display -->
5+
<div class="navbar-header page-scroll">
6+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
7+
<span class="sr-only">Toggle navigation</span>
8+
<span class="icon-bar"></span>
9+
<span class="icon-bar"></span>
10+
<span class="icon-bar"></span>
11+
</button>
12+
<a class="navbar-brand page-scroll" href="#home">{{ site.title }}</a>
13+
</div>
14+
<!-- Collect the nav links, forms, and other content for toggling -->
15+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
16+
<ul class="nav navbar-nav navbar-right">
17+
<li>
18+
<a class="page-scroll" href="#about">About</a>
19+
</li>
20+
<li>
21+
<a class="page-scroll" href="#services">Services</a>
22+
</li>
23+
<li>
24+
<a class="page-scroll" href="#contact">Contact</a>
25+
</li>
26+
</ul>
27+
</div>
28+
<!-- /.navbar-collapse -->
29+
</div>
30+
<!-- /.container -->
31+
</nav>
32+
33+
<section id="home">
34+
<!-- Header -->
35+
<div class="intro-header">
36+
37+
<div class="container">
38+
39+
<div class="row">
40+
<div class="col-lg-12">
41+
<div class="intro-message">
42+
<h1>{{ page.title }}</h1>
43+
<h3>{{ page.subTitle }}</h3>
44+
<hr class="intro-divider">
45+
<ul class="list-inline intro-social-buttons">
46+
{% for social in site.social %}
47+
<li>
48+
<a href="{{ social.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ social.title }} fa-fw"></i> <span class="network-name">{{ social.title }}</span></a>
49+
</li>
50+
{% endfor %}
51+
</ul>
52+
</div>
53+
</div>
54+
</div>
55+
56+
</div>
57+
<!-- /.container -->
58+
59+
</div>
60+
<!-- /.intro-header -->
61+
</section>

_includes/js.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- jQuery Version 1.11.0 -->
2+
<script src="js/jquery-1.11.0.js"></script>
3+
4+
<!-- Plugin JavaScript -->
5+
<script src="{{ "js/jquery.easing.min.js" | prepend: site.baseurl }}"></script>
6+
7+
<!-- Bootstrap Core JavaScript -->
8+
<script src="js/bootstrap.min.js"></script>
9+
10+
<!-- Custom Theme JavaScript -->
11+
<script src="js/landing-page.js"></script>

_includes/page_content.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<section id="services">
2+
<!-- Page Content -->
3+
{% for post in site.posts reversed %}
4+
{% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %}
5+
{% if thecycle == 'odd' %}
6+
<div class="content-section-a">
7+
8+
<div class="container">
9+
10+
<div class="row">
11+
<div class="col-lg-5 col-sm-6">
12+
<hr class="section-heading-spacer">
13+
<div class="clearfix"></div>
14+
<h2 class="section-heading">{{ post.title }}</h2>
15+
<div class="lead">{{ post.content }}</div>
16+
</div>
17+
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
18+
<img class="img-responsive" src="img/services/{{ post.img }}" alt="">
19+
</div>
20+
</div>
21+
22+
</div>
23+
<!-- /.container -->
24+
25+
</div>
26+
<!-- /.content-section-a -->
27+
{% else %}
28+
29+
<div class="content-section-b">
30+
31+
<div class="container">
32+
33+
<div class="row">
34+
<div class="col-lg-5 col-lg-offset-1 col-sm-push-6 col-sm-6">
35+
<hr class="section-heading-spacer">
36+
<div class="clearfix"></div>
37+
<h2 class="section-heading">{{ post.title }}</h2>
38+
<div class="lead">{{ post.content }}</div>
39+
</div>
40+
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
41+
<img class="img-responsive" src="img/services/{{ post.img }}" alt="">
42+
</div>
43+
</div>
44+
45+
</div>
46+
<!-- /.container -->
47+
48+
</div>
49+
<!-- /.content-section-b -->
50+
{% endif %}
51+
{% endfor %}
52+
</section>

0 commit comments

Comments
 (0)