Skip to content

Commit

Permalink
maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFiola committed Dec 16, 2023
1 parent 4afec42 commit 7eef12d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _layouts/default-cyber.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/so-simple-theme/blob/master/LICENSE
-->
<html lang="{{ page-cyber.lang | default: site.lang | default: 'en-US' }}" class="no-js">
<html lang="{{ page.lang | default: site.lang | default: 'en-US' }}" class="no-js">
{% include head-cyber.html %}

<body class="layout--{{ page-cyber.layout | default: layout.layout }}{% if page-cyber.classes or layout.classes %}{{ page-cyber.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %} {% if page-cyber.entries_layout == 'grid' %}page--wide{% endif %} {{ page-cyber.title | slugify }}">
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %} {% if page.entries_layout == 'grid' %}page--wide{% endif %} {{ page.title | slugify }}">
{% include skip-links.html %}
{% include navigation.html %}
{% include masthead.html %}
Expand Down
4 changes: 2 additions & 2 deletions _layouts/page-cyber.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
{% assign title = page.title %}
{% endif %}
{% if page.link %}
<h1-cyber id="page-title" class="page-title-cyber"><a href="{% t{{ page.link }} %}">{% t{{ title }} %} <span class="link-arrow">&rarr;</span></a></h1-cyber>
<h1 id="page-title" class="page-title"><a href="{% t{{ page.link }} %}">{% t{{ title }} %} <span class="link-arrow">&rarr;</span></a></h1>
{% else %}
<h1-cyber id="page-title" class="page-title-cyber">{% t{{ title }} %}</h1-cyber>
<h1 id="page-title" class="page-title">{% t{{ title }} %}</h1>
{% endif %}
</header>
<div class="page-content">
Expand Down
3 changes: 1 addition & 2 deletions _sass/so-simple/_page-cyber.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
max-width: $main-sidebar-max-width;
}

.page-title-cyber {
.page-title {
@include fluid-type($min-vw, $max-vw, 48px, 60px);
page-title-cyber {
margin-bottom: 0.5em;
font-family: "incosolata", monospace;
letter-spacing: 1.3rem;
Expand Down

0 comments on commit 7eef12d

Please sign in to comment.