Skip to content

Commit 2ba9df1

Browse files
authored
fix naming
1 parent 3527cbb commit 2ba9df1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Jekyll theme based on [landing-page bootstrap theme ](http://startbootstrap.com/templates/landing-page/)
44

55
## How to use
6-
- Place a image in `/img/services/`
7-
- Create posts to display your services. Use the follow as an example:
6+
- Place a image in `/img/projects/`
7+
- Create posts to display your Projects. Use the follow as an example:
88

99
```txt
1010
---
1111
layout: default
1212
img: ipad.png
13-
category: Services
13+
category: Projects
1414
title: The service title
1515
---
1616
The description of this service

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</li>
1414
<li class="footer-menu-divider">&sdot;</li>
1515
<li>
16-
<a href="#services">Services</a>
16+
<a href="#projects">Projects</a>
1717
</li>
1818
<li class="footer-menu-divider">&sdot;</li>
1919
<li>

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<a class="page-scroll" href="#about">About</a>
1919
</li>
2020
<li>
21-
<a class="page-scroll" href="#services">Services</a>
21+
<a class="page-scroll" href="#projects">Projects</a>
2222
</li>
2323
<li>
2424
<a class="page-scroll" href="#contact">Contact</a>

_includes/page_content.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<section id="services">
1+
<section id="projects">
22
<!-- Page Content -->
33
{% for post in site.posts reversed %}
44
{% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %}
@@ -15,7 +15,7 @@ <h2 class="section-heading">{{ post.title }}</h2>
1515
<div class="lead">{{ post.content }}</div>
1616
</div>
1717
<div class="col-lg-5 col-lg-offset-2 col-sm-6">
18-
<img class="img-responsive" src="img/services/{{ post.img }}" alt="">
18+
<img class="img-responsive" src="img/projects/{{ post.img }}" alt="">
1919
</div>
2020
</div>
2121

@@ -38,7 +38,7 @@ <h2 class="section-heading">{{ post.title }}</h2>
3838
<div class="lead">{{ post.content }}</div>
3939
</div>
4040
<div class="col-lg-5 col-sm-pull-6 col-sm-6">
41-
<img class="img-responsive" src="img/services/{{ post.img }}" alt="">
41+
<img class="img-responsive" src="img/projects/{{ post.img }}" alt="">
4242
</div>
4343
</div>
4444

0 commit comments

Comments
 (0)