File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- < footer class ="footer ">
2- < div class ="container ">
3- < a href =" https://github.com/h2so5/mruby-logo " > mruby-logo </ a > provided by < a href =" https://github.com/h2so5 " > h2so5 </ a >
4- </ div >
5- < div >
6- < a href =" /feed.xml " >
7- < img src =" /assets/images/icons/atom-feed.png " alt =" Atom feed " title =" Atom feed " width =" 25 " height =" 25 " >
8- </ a >
9- < a href ="/rss.xml ">
10- < img src ="/assets/images/icons/rss- feed.png " alt =" RSS feed " title =" RSS feed " width =" 25 " height =" 25 " >
11- </ a >
12- </ div >
13- </ footer >
1+ < footer class ="site- footer" role =" contentinfo ">
2+ < div class ="site-footer__inner ">
3+ < p class =" site-footer__attribution " >
4+ < a href =" https://github.com/h2so5/mruby-logo " > mruby-logo </ a > provided by < a href =" https://github.com/h2so5 " > h2so5 </ a >
5+ ·
6+ © {{ 'now' | date: "%Y" }} mruby contributors
7+ </ p >
8+ < nav class =" site-footer__feeds " aria-label =" Feed links " >
9+ < a href ="/rss.xml "> RSS Feed </ a >
10+ < a href ="/feed.xml " > Atom Feed </ a >
11+ </ nav >
12+ </ div >
13+ </ footer >
Original file line number Diff line number Diff line change 1111< link href ="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@600;700&display=swap " rel ="stylesheet ">
1212
1313<!-- Stylesheet -->
14- < link rel ="stylesheet " href ="/assets/css/redesign .css ">
14+ < link rel ="stylesheet " href ="/assets/css/main .css ">
1515
1616<!-- Feed autodiscovery -->
1717< link rel ="alternate " type ="application/rss+xml " title ="{{ site.title }} RSS Feed " href ="/rss.xml ">
Load Diff This file was deleted.
File renamed without changes.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11<!DOCTYPE html>
22< html lang ="en ">
33 < head >
4- {% include header .html %}
4+ {% include head .html %}
55 </ head >
66 < body >
7-
8- {% include navigation.html %}
9-
10- < main id ="main-content " class ="container ">
11-
12- < div class ="row clearfix ">
13- < div class ="col-md-12 column ">
14-
15- {{ content }}
16-
17- </ div >
18- </ div >
7+ {% include nav.html %}
8+ < main id ="main-content ">
9+ {{ content }}
1910 </ main >
20-
2111 {% include footer.html %}
22-
12+ < script >
13+ ( function ( ) {
14+ var btn = document . querySelector ( '.site-nav__hamburger' ) ;
15+ var links = document . getElementById ( 'site-nav-links' ) ;
16+ if ( ! btn || ! links ) return ;
17+ btn . addEventListener ( 'click' , function ( ) {
18+ var expanded = btn . getAttribute ( 'aria-expanded' ) === 'true' ;
19+ btn . setAttribute ( 'aria-expanded' , String ( ! expanded ) ) ;
20+ links . classList . toggle ( 'is-open' , ! expanded ) ;
21+ } ) ;
22+ } ) ( ) ;
23+ </ script >
2324 </ body >
24- </ html >
25+ </ html >
Original file line number Diff line number Diff line change 11<!DOCTYPE html>
22< html lang ="en ">
33 < head >
4- {% include redesign_head .html %}
4+ {% include head .html %}
55 </ head >
66 < body >
7- {% include redesign_nav .html %}
7+ {% include nav .html %}
88 < main id ="main-content ">
99 < header class ="page-header page-header--article ">
1010 < div class ="page-header__inner ">
@@ -37,7 +37,7 @@ <h1 class="page-header__heading">{{ page.title }}</h1>
3737 </ div >
3838 </ div >
3939 </ main >
40- {% include redesign_footer .html %}
40+ {% include footer .html %}
4141
4242 < script >
4343 ( function ( ) {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments