Skip to content

Commit 2f42331

Browse files
author
unknown
committed
teste
1 parent abc8675 commit 2f42331

File tree

131 files changed

+11485
-90
lines changed

Some content is hidden

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

131 files changed

+11485
-90
lines changed

.gitignore

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

README.md

Lines changed: 78 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,79 @@
1-
ulmi.github.io
2-
==============
1+
Solid. A Bootstrap theme for Jekyll.
2+
============
3+
![Screenshot](https://st4ple.github.io/solid-jekyll/assets/img/browser.png)
34

4-
teste
5+
This is a [Jekyll](http://jekyllrb.com/) port of the [Solid theme](http://www.blacktie.co/2014/05/solid-multipurpose-theme/) by [blacktie.co](http://www.blacktie.co/). Visit the [live demo](https://st4ple.github.io/solid-jekyll/) for a preview.
6+
7+
##Usage
8+
This theme can be customized, built and published straight from GitHub, thanks to [GitHub Pages](https://pages.github.com/). A local installation of Jekyll isn't even necessary!
9+
10+
[Fork this repository](https://github.com/st4ple/solid-jekyll/fork) to get started.
11+
####Customize
12+
Most general settings and data like site name, colors, address, etc. can be configured and changed right in the main config file: `/_config.yml`
13+
The content of the Home page can be changed here: `/home.html`
14+
The content of the About page can be changed here: `/about.html`
15+
The content of the Portfolio page can be changed here:`/portfolio.html`
16+
The content of the Contact page can be changed here:`/contact.html`
17+
####Add content
18+
Delete the demo content and publish your own content.
19+
#####Blog post
20+
Create a Blog post by creating a file called `yyyy-mm-dd-name-of-post-like-this.markdown` in the `/_posts/blog/` directory with the following template:
21+
```markdown
22+
---
23+
layout: post #important: don't change this
24+
title: "Name of post like this"
25+
date: yyyy-mm-dd hh:mm:ss
26+
author: Name
27+
categories:
28+
- blog #important: leave this here
29+
- category1
30+
- category2
31+
- ...
32+
img: post01.jpg #place image (850x450) with this name in /assets/img/blog/
33+
thumb: thumb01.jpg #place thumbnail (70x70) with this name in /assets/img/blog/thumbs/
34+
---
35+
This text will appear in the excerpt "post preview" on the Blog page that lists all the posts.
36+
<!--more-->
37+
This text will not be shown in the excerpt because it is after the excerpt separator.
38+
```
39+
#####Project post
40+
Create a Project post to go in your Portfolio by creating a file called `yyyy-mm-dd-name-of-the-project.markdown` in the `/_posts/project/` directory with the following template:
41+
```markdown
42+
---
43+
layout: project #important: don't change this
44+
title: "Name of the project"
45+
date: yyyy-mm-dd hh:mm:ss
46+
author: Name
47+
categories:
48+
- project #important: leave this here
49+
img: portfolio_10.jpg #place image (600x450) with this name in /assets/img/project/
50+
thumb: thumb02.jpg
51+
carousel:
52+
- single01.jpg #place image (1280x600) with this name in /assets/img/project/carousel/
53+
- single02.jpg
54+
- ...
55+
client: Company XY
56+
website: http://www.internet.com
57+
---
58+
####This is a heading
59+
This is a regular paragraph. Write as much as you like.
60+
```
61+
#####Question entry
62+
Create a Question entry (that is listed in the Frequently Asked section on the Home page) in this directory by creating a file called `yyyy-mm-dd-do-i-have-a-question.markdown` in the `/_posts/project/` directory with the following template:
63+
```markdown
64+
---
65+
layout: question
66+
title: "Do I have a question?"
67+
date: yyyy-mm-dd hh:mm:ss
68+
author: First Last
69+
categories:
70+
- question #important: leave this here
71+
---
72+
####Can I use this theme for my website?
73+
Of course you can!
74+
```
75+
####Publish
76+
To publish with [GitHub Pages](https://pages.github.com/), simply create a branch called `gh-pages`in your repository. GitHub will build your site automatically and publish it at `http://yourusername.github.io/repositoryname/`.
77+
If there are problems with loading assets like CSS files and images, make sure that the `baseurl` in the `_config.yml`is set correctly (it should say `/repositoryname`).
78+
79+
If you want to host your website somewhere else than GitHub (or just would like to customize and build your site locally), please check out the [Jekyll documentation](http://jekyllrb.com/).

_config.yml

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
### GENERAL SETTINGS ###
2+
3+
# Site settings
4+
title: SOLID.
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+
baseurl: ""
7+
url: "http://yourdomain.com"
8+
9+
# Build settings
10+
markdown: kramdown
11+
permalink: /:categories/:title
12+
excerpt_separator: <!--more--> #use this in posts to define how long the excerpt of the post (that is shown on the Blog page) is
13+
14+
colors: #in hex code if not noted else
15+
primary: "#00b3fe"
16+
primary_rgb: "0,179,254" #rgb of the primary. Needed in some places for the transparency effect.
17+
secondary: "#384452"
18+
link: "#428bca"
19+
link_hover: "#01b2fe"
20+
footer_heading: "#ffffff"
21+
footer_content: "#bfc9d3"
22+
23+
24+
### CONTACT SETTINGS ###
25+
26+
# Social networks usernames. Many more available: google-plus, flickr, linkedin, etc). Shown in footer.
27+
social:
28+
- title: dribbble
29+
url:
30+
- title: facebook
31+
url:
32+
- title: twitter
33+
url:
34+
- title: instagram
35+
url:
36+
- title: tumblr
37+
url:
38+
39+
# Postal address (add as many lines as necessary). Shown in footer and on Contact page.
40+
address:
41+
- lines:
42+
- Some Ave, 987,
43+
- 23890, New York,
44+
- United States.
45+
46+
tel: +34 8493-4893
47+
48+
49+
### GENERAL DATA FOR VARIOUS LOCATIONS ###
50+
51+
# Members information. Shown on About page.
52+
members:
53+
- name: Mark Webber
54+
position: CEO
55+
text: Lorem Ipsum is simply dummy text of the printing and typesetting industry.
56+
img: team01.jpg
57+
social:
58+
- title: envelope #use for email address
59+
url: mailto:[email protected]
60+
- title: twitter
61+
url: http://twitter.com/handle
62+
- name: Paul Jameson
63+
position: Lead Designer
64+
text: Lorem Ipsum is simply dummy text of the printing and typesetting industry.
65+
img: team02.jpg
66+
social:
67+
- title: envelope #use for email address
68+
url: mailto:[email protected]
69+
- title: twitter
70+
url: http://twitter.com/handle
71+
- name: Laura Sommers
72+
position: Lead Developer
73+
text: Lorem Ipsum is simply dummy text of the printing and typesetting industry.
74+
img: team03.jpg
75+
social:
76+
- title: envelope #use for email address
77+
url: mailto:[email protected]
78+
- title: twitter
79+
url: http://twitter.com/handle
80+
- name: Martin Blunt
81+
position: Marketing
82+
text: Lorem Ipsum is simply dummy text of the printing and typesetting industry.
83+
img: team04.jpg
84+
social:
85+
- title: envelope #use for email address
86+
url: mailto:[email protected]
87+
- title: twitter
88+
url: http://twitter.com/handle
89+
90+
# Clients information. Shown on Home and About pages.
91+
clients:
92+
- name: dribbble
93+
img: client01.png
94+
- name: Code is Poetry
95+
img: client02.png
96+
- name: Vimeo
97+
img: client03.png
98+
- name: VimeoPro
99+
img: client04.png
100+
101+
# Short text about your company. Shown in footer on every page and also separately on Home and Contact page.
102+
about: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s."
103+
104+
# Testimonial content. Shown on Home and About page.
105+
testimonial:
106+
message: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged."
107+
author: Marcel Newman
108+
position: WEB DESIGNER - BLACKTIE.CO

_includes/carousel.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<div class="col-lg-10 col-lg-offset-1 centered">
2+
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
3+
<!-- Indicators -->
4+
<ol class="carousel-indicators">
5+
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
6+
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
7+
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
8+
</ol>
9+
10+
<!-- Wrapper for slides -->
11+
<div class="carousel-inner">
12+
{% for img in page.carousel.first %}
13+
<div class="item active">
14+
<img src="/assets/img/project/carousel/{{ | prepend: site.baseurl }}{{ img }}" alt="">
15+
</div>
16+
{% endfor %}
17+
{% for img in page.carousel offset:1 %}
18+
<div class="item">
19+
<img src="/assets/img/project/carousel/{{ | prepend: site.baseurl }}{{ img }}" alt="">
20+
</div>
21+
{% endfor %}
22+
</div>
23+
</div><! --/Carousel -->
24+
</div>

_includes/clients.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div id="cwrap">
2+
<div class="container">
3+
<div class="row centered">
4+
<h3>OUR CLIENTS</h3>
5+
{% for client in site.clients %}
6+
<div class="col-lg-3 col-md-3 col-sm-3">
7+
<img src="{{ "/assets/img/clients/" | prepend: site.baseurl }}{{ client.img }}" class="img-responsive">
8+
</div>
9+
{% endfor %}
10+
</div><! --/row -->
11+
</div><! --/container -->
12+
</div><! --/cwrap -->

0 commit comments

Comments
 (0)