From 22a21c142fd10f4caf0b89478f44bb4030f0c11b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 7 May 2020 02:32:33 +0000 Subject: use "remote" Jekyll theme I moved _includes/, _layouts/, css/ to egor-tensin/jekyll-theme. --- _includes/common/bootstrap_css.html | 5 ----- _includes/common/bootstrap_js.html | 5 ----- _includes/common/footer.html | 25 ------------------------- _includes/common/header.html | 30 ------------------------------ _includes/common/ie_compat.html | 11 ----------- _includes/common/jquery.html | 5 ----- _includes/common/mathjax.html | 12 ------------ _includes/common/mathjax_workaround.md | 1 - _includes/common/navbar.html | 33 --------------------------------- _includes/common/paginator.html | 23 ----------------------- _includes/common/sidebar.html | 25 ------------------------- _includes/snippets/footer.html | 5 ----- _includes/snippets/header.html | 14 -------------- _includes/snippets/section.html | 25 ------------------------- 14 files changed, 219 deletions(-) delete mode 100644 _includes/common/bootstrap_css.html delete mode 100644 _includes/common/bootstrap_js.html delete mode 100644 _includes/common/footer.html delete mode 100644 _includes/common/header.html delete mode 100644 _includes/common/ie_compat.html delete mode 100644 _includes/common/jquery.html delete mode 100644 _includes/common/mathjax.html delete mode 100644 _includes/common/mathjax_workaround.md delete mode 100644 _includes/common/navbar.html delete mode 100644 _includes/common/paginator.html delete mode 100644 _includes/common/sidebar.html delete mode 100644 _includes/snippets/footer.html delete mode 100644 _includes/snippets/header.html delete mode 100644 _includes/snippets/section.html (limited to '_includes') diff --git a/_includes/common/bootstrap_css.html b/_includes/common/bootstrap_css.html deleted file mode 100644 index f47b856..0000000 --- a/_includes/common/bootstrap_css.html +++ /dev/null @@ -1,5 +0,0 @@ -{% if site.minified_externals %} - -{% else %} - -{% endif %} diff --git a/_includes/common/bootstrap_js.html b/_includes/common/bootstrap_js.html deleted file mode 100644 index e724257..0000000 --- a/_includes/common/bootstrap_js.html +++ /dev/null @@ -1,5 +0,0 @@ -{% if site.minified_externals %} - -{% else %} - -{% endif %} diff --git a/_includes/common/footer.html b/_includes/common/footer.html deleted file mode 100644 index c1d80e2..0000000 --- a/_includes/common/footer.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {% include common/jquery.html %} - {% include common/bootstrap_js.html %} - - diff --git a/_includes/common/header.html b/_includes/common/header.html deleted file mode 100644 index a17ea71..0000000 --- a/_includes/common/header.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - {{ page.title }} - {{ site.project.name }} - {{ site.personal_info.name }} - - {% include common/bootstrap_css.html %} - - - - - {% if page.custom_css %} - {% for css in page.custom_css %} - - {% endfor %} - {% endif %} - - {% include common/ie_compat.html %} - {% include common/mathjax.html %} - - - diff --git a/_includes/snippets/header.html b/_includes/snippets/header.html deleted file mode 100644 index 673fc5a..0000000 --- a/_includes/snippets/header.html +++ /dev/null @@ -1,14 +0,0 @@ -{% capture snippet_basename %}{{ include.snippet_path | split:"/" | last }}{% endcapture %} -{% capture snippet_id %}{{ include.snippet_path | replace:'/','_' | replace:'.','_' }}{% endcapture %} -
-
- {% if page.snippets_collapsible %} - {{ snippet_basename }} - {% else %} -
{{ snippet_basename }}
- {% endif %} -
- {% if page.snippets_collapsible %} -
- {% endif %} -
diff --git a/_includes/snippets/section.html b/_includes/snippets/section.html deleted file mode 100644 index cbb778f..0000000 --- a/_includes/snippets/section.html +++ /dev/null @@ -1,25 +0,0 @@ -{% if page.snippets_collapsible %} -
-{% else %} -
-{% endif %} - -{% for i in page.snippets[include.section_id] %} - {% include snippets/header.html snippet_path=i section_id=include.section_id %} - -{% capture snippet %} -```{{ page.snippets_language }} -{% include_relative {{ page.snippets_root_directory }}/{{ i }} %}``` -{% endcapture %} - -{{ snippet | markdownify }} - - {% include snippets/footer.html %} -{% endfor %} - -
- -{% for i in page.snippets[include.section_id] %} - {% capture snippet_id %}{{ i | replace:"/","_" | replace:".","_" }}{% endcapture %} -[{{ i }}]: #{{ snippet_id }} -{% endfor %} -- cgit v1.2.3