Skip to content

Commit

Permalink
fixed refs to markdown files
Browse files Browse the repository at this point in the history
  • Loading branch information
mountainbug95 committed Jul 15, 2019
1 parent d318558 commit 2c436c9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/banner.html
Expand Up @@ -8,7 +8,7 @@ <h2>{{ page.params.banner.title }}</h2>
{% if page.params.banner.actions %}
<ul class="actions special">
{% for action in page.params.banner.actions %}
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | link | relative_url }}{% endif %}" {{ classNames("button", {"primary": action.is_primary}, {"scrolly": action.is_scrolly}) }}>{{ action.label }}</a></li>
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | relative_url }}{% endif %}" {{ classNames("button", {"primary": action.is_primary}, {"scrolly": action.is_scrolly}) }}>{{ action.label }}</a></li>
{% endfor %}
</ul>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion components/cta.html
Expand Up @@ -8,7 +8,7 @@ <h2>{{ include_dict.section.title | nl2br | safe }}</h2>
{% if include_dict.section.actions %}
<ul class="actions stacked">
{% for action in include_dict.section.actions %}
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | link | relative_url }}{% endif %}" {{ classNames("button", "fit", {"primary": action.is_primary}, {"scrolly": action.is_scrolly}) }}>{{ action.label }}</a></li>
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | relative_url }}{% endif %}" {{ classNames("button", "fit", {"primary": action.is_primary}, {"scrolly": action.is_scrolly}) }}>{{ action.label }}</a></li>
{% endfor %}
</ul>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion components/header.html
Expand Up @@ -11,7 +11,7 @@ <h1><a href="{{ '/' | relative_url }}">{{ site.title }}</a></h1>
<li><a href="{{ item.url | relative_url }}">{{ item.title }}</a></li>
{% endfor %}
{% for action in site.data.menu.actions %}
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | link | relative_url }}{% endif %}">{{ action.label }}</a></li>
<li><a href="{% if action.url | starts_with('#') %}{{ action.url }}{% else %}{{ action.url | relative_url }}{% endif %}">{{ action.label }}</a></li>
{% endfor %}
</ul>
</div>
Expand Down
6 changes: 3 additions & 3 deletions content/index.md
Expand Up @@ -8,7 +8,7 @@ banner:
blandit at Interdum.
actions:
- label: Activate
url: generic.md
url: "/generic"
is_scrolly: false
is_primary: true
bottom_link:
Expand Down Expand Up @@ -91,11 +91,11 @@ sections:
background_style: style4
actions:
- label: Activate
url: generic.md
url: "/generic"
is_primary: true
is_scrolly: false
- label: Learn More
url: generic.md
url: "/generic"
is_primary: false
is_scrolly: false
type: cta
Expand Down
4 changes: 2 additions & 2 deletions data/menu.yml
@@ -1,5 +1,5 @@
actions:
- label: Sign Up
url: generic.md
url: "/generic"
- label: Log In
url: generic.md
url: "/generic"

0 comments on commit 2c436c9

Please sign in to comment.