Skip to content

Commit 21082cd

Browse files
committed
Merge branch 'hotfix/updates' into develop
2 parents 38dcf25 + ef43b21 commit 21082cd

File tree

10 files changed

+713
-4945
lines changed

10 files changed

+713
-4945
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Your Google Analytics ID goes here along with meta tags for [Google Webmaster To
6868

6969
#### Top Navigation Links
7070

71-
Edit page/post titles and URLs to include in the site's navigation. If you want to add links to other sites you can hardcode them into `navigation.html`.
71+
Edit page/post titles and URLs to include in the site's navigation. For external links add `external: true`.
7272

7373
``` yaml
7474
# sample top navigation links
@@ -79,6 +79,9 @@ links:
7979
url: /articles
8080
- title: Other Page
8181
url: /other-page
82+
- title: External Page
83+
url: http://mademistakes.com
84+
external: true
8285
```
8386
8487
#### Other Stuff

_config.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,44 @@
1-
title: Minimal Mistakes
2-
tagline: Jekyll Theme
3-
description: A responsive Jekyll theme large featured images and solid typography.
1+
title: Site Title
2+
tagline: A short tagline
3+
description: Describe your website.
44
#Comment out url when working locally to resolve base urls correctly
5-
url: http://mmistakes.github.io/minimal-mistakes
5+
url: http://your-site.com
66

77
# Owner/author information
88
owner:
9-
name: Michael Rose
9+
name: Your Name
1010
avatar: bio-photo.jpg
11-
bio: "Just another boring, time traveling, tattooed, designer from Buffalo New York."
12-
email: michael@mademistakes.com
11+
bio: "Describe your self."
12+
email: your@email.com
1313
# Social networking links are used in author-bio sidebar. Update and remove as you like.
14-
twitter: "mmistakes"
14+
twitter:
1515
facebook:
16-
github: "mmistakes"
16+
github:
1717
linkedin:
18-
instagram: "mmistakes"
18+
instagram:
1919
lastfm:
2020
tumblr:
2121
# For Google Authorship https://plus.google.com/authorship
22-
google_plus: "http://plus.google.com/118238196859537351707"
22+
google_plus:
2323

2424
# Analytics and webmaster tools stuff goes here
25-
google_analytics: UA-2011187-3
26-
google_verify: UQj93ERU9zgECodaaXgVpkjrFn9UrDMEzVamacSoQ8Y
25+
google_analytics:
26+
google_verify:
2727
# https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here
28-
bing_verify: D81F4C18A6CB3018F64D7C827D953DFD
28+
bing_verify:
2929

30-
# Internal pages/posts to include in top navigation
30+
# Links to include in top navigation
31+
# For external links add external: true
3132
links:
3233
- title: About
3334
url: /about
3435
- title: Articles
3536
url: /articles
3637
- title: Theme Setup
3738
url: /theme-setup
39+
- title: Made Mistakes
40+
url: http://mademistakes.com
41+
external: true
3842

3943
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
4044
timezone: America/New_York

_includes/navigation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<nav role="navigation" itemscope itemtype="http://schema.org/SiteNavigationElement">
77
<ul>
88
{% for link in site.links %}
9-
<li><a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a></li>
9+
<li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li>
1010
{% endfor %}
1111
<li><i class="icon-feed"></i> <a href="{{ site.url }}/feed.xml" title="Atom/RSS feed">Feed</a>
1212
</ul>

0 commit comments

Comments
 (0)