Skip to content

Commit f31d1a3

Browse files
committed
Finished commenting out all elements within the website, condensed all media queries, labeled each screen size associated with the type of screen it is meant for. Took out some more unneccesary classes
1 parent 5c1ce3f commit f31d1a3

File tree

3 files changed

+225
-258
lines changed

3 files changed

+225
-258
lines changed

_includes/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<footer>
2-
<div class="navbar-bottom" role="navigation" id="footer1">
2+
<div class="footer" role="navigation">
33
<div class="container">
44
<div class="navbar-text">
5-
<ul id="footer-text">
5+
<ul class="footer-text">
66
<li><a href="{{site.baseurl}}/index.html">Home</a></li>
77
{% for nav in site.data.nav.head %}
88
{% if nav.url %}

_includes/header.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
{% for nav in site.data.nav.head %}
2020
{% if nav.url %}
2121
<li>
22-
<a href="{{site.baseurl}}{{nav.url}}" class="tab" id="tab" target="_blank">{{nav.title | upcase}}</a>
22+
<a href="{{site.baseurl}}{{nav.url}}" class="tab" target="_blank">{{nav.title | upcase}}</a>
2323
</li>
2424
{% else %}
2525
{% for targetpage in site.pages %}
2626
{% if nav contains targetpage.title%}
2727
{% if page.title == targetpage.title %}
2828
<li>
29-
<a href class="tab navbar-active" id="tab">{{targetpage.title| upcase}}</a>
29+
<a href class="tab navbar-active">{{targetpage.title| upcase}}</a>
3030
</li>
3131
{% else %}
3232
<li>
33-
<a href="{{site.baseurl}}{{targetpage.url}}" class="tab" id="tab">{{targetpage.title| upcase}}</a>
33+
<a href="{{site.baseurl}}{{targetpage.url}}" class="tab">{{targetpage.title| upcase}}</a>
3434
</li>
3535
{% endif %}
3636
{% endif %}

0 commit comments

Comments
 (0)