diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:52:53 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:56:55 +0300 |
commit | c8bbc25228a7d199ca6868db7375f1661c3ef6e4 (patch) | |
tree | b6b3c84795e441c05cc2d2a7fbbbfc34a492b377 /_includes/common | |
parent | index.html: reuse page.title (diff) | |
download | jekyll-theme-c8bbc25228a7d199ca6868db7375f1661c3ef6e4.tar.gz jekyll-theme-c8bbc25228a7d199ca6868db7375f1661c3ef6e4.zip |
_includes: move everything to jekyll-theme/
Diffstat (limited to '')
-rw-r--r-- | _includes/jekyll-theme/footer.html (renamed from _includes/common/footer.html) | 0 | ||||
-rw-r--r-- | _includes/jekyll-theme/ga.html (renamed from _includes/common/ga.html) | 0 | ||||
-rw-r--r-- | _includes/jekyll-theme/header.html (renamed from _includes/common/header.html) | 6 | ||||
-rw-r--r-- | _includes/jekyll-theme/navbar.html (renamed from _includes/common/navbar.html) | 0 | ||||
-rw-r--r-- | _includes/jekyll-theme/sidebar.html (renamed from _includes/common/sidebar.html) | 4 | ||||
-rw-r--r-- | _includes/jekyll-theme/sidebar_entry.html (renamed from _includes/common/sidebar_entry.html) | 0 |
6 files changed, 5 insertions, 5 deletions
diff --git a/_includes/common/footer.html b/_includes/jekyll-theme/footer.html index 9331784..9331784 100644 --- a/_includes/common/footer.html +++ b/_includes/jekyll-theme/footer.html diff --git a/_includes/common/ga.html b/_includes/jekyll-theme/ga.html index 56eaca7..56eaca7 100644 --- a/_includes/common/ga.html +++ b/_includes/jekyll-theme/ga.html diff --git a/_includes/common/header.html b/_includes/jekyll-theme/header.html index 07ba1c5..0e83d50 100644 --- a/_includes/common/header.html +++ b/_includes/jekyll-theme/header.html @@ -43,7 +43,7 @@ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> - {% include mathjax.html %} + {% include jekyll-theme/mathjax.html %} <link rel="stylesheet" href="{{ '/assets/css/jekyll-theme.css' | relative_url }}"> @@ -71,10 +71,10 @@ {% endfor %} {% if site.settings.ga_tag %} - {% include common/ga.html ga_tag=site.settings.ga_tag %} + {% include jekyll-theme/ga.html ga_tag=site.settings.ga_tag %} {% endif %} </head> <body> <div style="display: flex; flex-direction: column; min-height: 100vh;"> - {% include common/navbar.html %} + {% include jekyll-theme/navbar.html %} <div class="container" style="flex: 1;"> diff --git a/_includes/common/navbar.html b/_includes/jekyll-theme/navbar.html index 67db12e..67db12e 100644 --- a/_includes/common/navbar.html +++ b/_includes/jekyll-theme/navbar.html diff --git a/_includes/common/sidebar.html b/_includes/jekyll-theme/sidebar.html index 4eeeac2..e4732f2 100644 --- a/_includes/common/sidebar.html +++ b/_includes/jekyll-theme/sidebar.html @@ -25,7 +25,7 @@ </div> {% endcapture %} -{% include common/sidebar_entry.html header='About' content=about_content %} +{% include jekyll-theme/sidebar_entry.html header='About' content=about_content %} {% if site.posts.size > 0 %} @@ -40,7 +40,7 @@ </div> {% endcapture %} -{% include common/sidebar_entry.html header='Latest posts' content=latest_posts_content %} +{% include jekyll-theme/sidebar_entry.html header='Latest posts' content=latest_posts_content %} {% endif %} </div> diff --git a/_includes/common/sidebar_entry.html b/_includes/jekyll-theme/sidebar_entry.html index 761119d..761119d 100644 --- a/_includes/common/sidebar_entry.html +++ b/_includes/jekyll-theme/sidebar_entry.html |