├── .gitignore
├── README.md
├── _config.yml
├── _includes
├── about.html
├── contact.html
├── footer.html
├── head.html
├── header.html
├── js.html
└── page_content.html
├── _layouts
└── default.html
├── _posts
├── 2014-09-21-services-1.markdown
├── 2014-09-22-services-2.markdown
└── 2014-09-23-services-3.markdown
├── css
├── bootstrap.css
├── bootstrap.min.css
└── landing-page.css
├── font-awesome-4.1.0
├── css
│ ├── font-awesome.css
│ └── font-awesome.min.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── less
│ ├── bordered-pulled.less
│ ├── core.less
│ ├── fixed-width.less
│ ├── font-awesome.less
│ ├── icons.less
│ ├── larger.less
│ ├── list.less
│ ├── mixins.less
│ ├── path.less
│ ├── rotated-flipped.less
│ ├── spinning.less
│ ├── stacked.less
│ └── variables.less
└── scss
│ ├── _bordered-pulled.scss
│ ├── _core.scss
│ ├── _fixed-width.scss
│ ├── _icons.scss
│ ├── _larger.scss
│ ├── _list.scss
│ ├── _mixins.scss
│ ├── _path.scss
│ ├── _rotated-flipped.scss
│ ├── _spinning.scss
│ ├── _stacked.scss
│ ├── _variables.scss
│ └── font-awesome.scss
├── fonts
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
└── glyphicons-halflings-regular.woff
├── img
├── banner-bg.jpg
├── intro-bg.jpg
├── screenshot.png
└── services
│ ├── dog.png
│ ├── ipad.png
│ └── phones.png
├── index.html
└── js
├── bootstrap.js
├── bootstrap.min.js
├── jquery-1.11.0.js
├── jquery.easing.min.js
└── landing-page.js
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Landing Page Jekyll theme
2 |
3 | Jekyll theme based on [landing-page bootstrap theme ](http://startbootstrap.com/templates/landing-page/)
4 |
5 | ## How to use
6 | - Place a image in `/img/services/`
7 | - Create posts to display your services. Use the follow as an example:
8 |
9 | ```txt
10 | ---
11 | layout: default
12 | img: ipad.png
13 | category: Services
14 | title: The service title
15 | ---
16 | The description of this service
17 | ```
18 |
19 | ## Demo
20 | View this jekyll theme in action [here](https://swcool.github.io/landing-page-theme)
21 |
22 | ## Screenshot
23 | 
24 |
25 | ===
26 |
27 | For more Jekyll details, read [documentation](http://jekyllrb.com/).
28 | This Jekyll theme used [Freelancer Jekyll theme](https://github.com/jeromelachaud/freelancer-theme/) as reference.
29 |
30 | ## License
31 | The contents of this repository are licensed under the [Apache
32 | 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
33 |
34 | ## Version
35 | 1.0.1
36 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | # ----------------------- #
2 | # Main Configs #
3 | # ----------------------- #
4 |
5 | url: http://yoursite.com
6 | title: Your Awesome Site
7 | email: your-email@domain.com
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 Start Bootstrap.'
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:
35 |
--------------------------------------------------------------------------------
/_includes/about.html:
--------------------------------------------------------------------------------
1 |
2 | Landing-Page is a free Bootstrap 3 theme created by Start Bootstrap. It can be yours right now, simply download the template on the preview page. The theme is open source, and you can use it for any purpose, personal or commercial. The Jekyll version is brought to you by Shane Weng This theme features stock photos by Death to the Stock Photo. Landing-Page includes full HTML, CSS, and custom JavaScript files along with LESS files for easy customization.
6 | About Landing-Page
7 |
8 |
13 |