Skip to content

Commit 96a4d51

Browse files
committed
Initial commit
0 parents  commit 96a4d51

60 files changed

Lines changed: 7917 additions & 0 deletions

Some content is hidden

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

.gitignore

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

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Freelancer Jekyll theme
2+
=========================
3+
4+
Jekyll theme based on [Grayscale bootstrap theme ](http://ironsummitmedia.github.io/startbootstrap-grayscale/)
5+
6+
## Demo
7+
View this jekyll theme in action [here](https://jeromelachaud.github.io/grayscale-theme)
8+
9+
## Screenshot
10+
![screenshot](https://raw.githubusercontent.com/jeromelachaud/grayscale-theme/master/screenshot.png)
11+
12+
=========
13+
For more details, read [documentation](http://jekyllrb.com/)

_config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Site settings
2+
title: Grayscale
3+
email: your-email@domain.com
4+
url: https://example.github.io
5+
description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
6+
7+
# Color settings (hex-codes without the leading hash-tag)
8+
color:
9+
primary-dark: '#000000'
10+
links: '#219ab3'
11+
12+
# Footer settings
13+
footer: Your Website
14+
15+
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
16+
social:
17+
- title: twitter
18+
url: https://twitter.com/SBootstrap
19+
- title: facebook
20+
url:
21+
- title: stack-overflow
22+
url: http://stackoverflow.com/questions/tagged/jekyll
23+
- title: bitbucket
24+
url: http://bitbucket.org/jekyll
25+
- title: github
26+
url: https://github.com/IronSummitMedia/startbootstrap
27+
28+
# Build settings
29+
markdown: kramdown
30+
permalink: pretty

_includes/about.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
<h2>About Grayscale</h2>
6+
<p>Grayscale 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/grayscale/">the preview page</a>. The theme is open source, and you can use it for any purpose, personal or commercial.</p>
7+
<p>The Jekyll version is brought to you by <a href="https://github.com/jeromelachaud">Jerome Lachaud</a></p>
8+
<p>This theme features stock photos by <a href="http://gratisography.com/">Gratisography</a> along with a custom Google Maps skin courtesy of <a href="http://snazzymaps.com/">Snazzy Maps</a>.</p>
9+
<p>Grayscale includes full HTML, CSS, and custom JavaScript files along with LESS files for easy customization.</p>
10+
</div>
11+
</div>
12+
</section>

_includes/contact.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- Contact Section -->
2+
<section id="contact" class="container content-section text-center">
3+
<div class="row">
4+
<div class="col-lg-8 col-lg-offset-2">
5+
<h2>Contact</h2>
6+
<p>Dolor reprehenderit repellendus, optio labore odio at tempore debitis nisi. Quasi debitis tenetur eaque molestias non porro odio sapiente.</p>
7+
<p><a href="mailto:{{ site.email }}">{{ site.email }}</a>
8+
</p>
9+
<ul class="list-inline banner-social-buttons">
10+
{% for network in site.social %}
11+
<li>
12+
<a href="{{ network.url }}" class="btn btn-default btn-lg"><i class="fa fa-{{ network.title }} fa-fw"></i> <span class="network-name">{{ network.title }}</span></a>
13+
</li>
14+
{% endfor %}
15+
</ul>
16+
</div>
17+
</div>
18+
</section>

_includes/css/bootstrap.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)