Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging master into devel #19

Merged
merged 6 commits into from Mar 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/breadcrumbs.html
Expand Up @@ -16,7 +16,7 @@ <h1 class="logo">
</li>
{% if include.pre %}
<li class="breadcrumb-item">
<a href="/{{ include.pre }}">{{ include.pre | capitalize_all }}</a>
<a href="/{{ include.pre }}">{{ include.pre | capitalize }}</a>
</li>
{% endif %}
{% if include.api %}
Expand Down
3 changes: 3 additions & 0 deletions _includes/head.html
Expand Up @@ -45,4 +45,7 @@

<!-- Theme CSS -->
<link href="/assets/css/styles.css" id="theme-style" rel="stylesheet">

<!-- Google Site Verification -->
<meta name="google-site-verification" content="AuyzFGKfPrFC2mflJqpbWYJFvh164_KJTIXKdyZFGYQ" />
</head>
11 changes: 0 additions & 11 deletions _plugins/_capitalize_all.rb

This file was deleted.

4 changes: 2 additions & 2 deletions modules.html
Expand Up @@ -40,7 +40,7 @@ <h4 class="callout-title">Add your module:</h4>

{% for category in site.data.categories %}
<section id="{{ category.name }}" class="content-section">
<h2 class="section-title">{{ category.name | capitalize_all }}</h2>
<h2 class="section-title">{{ category.name | capitalize }}</h2>
{% assign filtered-modules = site.data.modules | where:'category', category.name %}
{% for module in filtered-modules %}
<div class="section-block">
Expand All @@ -60,7 +60,7 @@ <h3 class="question">
<div id="content-nav" class="content-nav">
<nav id="content-menu" class="nav content-menu flex-column sticky">
{% for category in site.data.categories %}
<a class="nav-link scrollto" href="#{{ category.name }}">{{ category.name | capitalize_all }}</a>
<a class="nav-link scrollto" href="#{{ category.name }}">{{ category.name | capitalize }}</a>
{% endfor %}
</nav>
</div>
Expand Down