diff --git a/_config.yml b/_config.yml
index 758bf64..3df9138 100644
--- a/_config.yml
+++ b/_config.yml
@@ -8,7 +8,6 @@ middle_name:
last_name: Lo Coco
email:
description:
-footer_text:
keywords:
lang: en
@@ -23,8 +22,6 @@ impressum_path:
# -----------------------------------------------------------------------------
navbar_fixed: true
-footer_fixed: true
-
max_width: 800px
# -----------------------------------------------------------------------------
diff --git a/_includes/footer.html b/_includes/footer.html
deleted file mode 100644
index acc4688..0000000
--- a/_includes/footer.html
+++ /dev/null
@@ -1,25 +0,0 @@
- {% if site.footer_fixed %}
-
- {%- else -%}
-
- {%- endif %}
\ No newline at end of file
diff --git a/_layouts/distill.html b/_layouts/distill.html
index 6e617b3..d22f96b 100644
--- a/_layouts/distill.html
+++ b/_layouts/distill.html
@@ -1,15 +1,12 @@
-
{%- include head.html %}
{% include scripts/mathjax.html %}
-
{% if page._styles %}
-
@@ -52,12 +49,10 @@
}
-
+
-
{%- include header.html %}
-
@@ -96,9 +91,6 @@
-
- {%- include footer.html %}
-
diff --git a/_sass/_base.scss b/_sass/_base.scss
index 613dbb1..f937254 100644
--- a/_sass/_base.scss
+++ b/_sass/_base.scss
@@ -239,33 +239,6 @@ blockquote {
}
}
-
-// Footer
-footer.fixed-bottom {
- background-color: var(--global-footer-bg-color);
- font-size: 0.75rem;
- .container {
- color: var(--global-footer-text-color);
- padding-top: 9px;
- padding-bottom: 8px;
- }
- a {
- color: var(--global-footer-link-color);
- &:hover {
- color: var(--global-theme-color);
- text-decoration: none;
- }
- }
-}
-
-footer.sticky-bottom {
- border-top: 1px solid var(--global-divider-color);
- padding-top: 40px;
- padding-bottom: 40px;
- font-size: 0.9rem;
-}
-
-
// Blog
.header-bar {
diff --git a/blog/templates/2021-07-04-diagrams.md b/blog/templates/2021-07-04-diagrams.md
deleted file mode 100644
index 7957fce..0000000
--- a/blog/templates/2021-07-04-diagrams.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-layout: post
-title: a post with diagrams
-date: 2021-07-04 17:39:00
-description: an example of a blog post with diagrams
----
-
-This theme supports generating various diagrams from a text description using [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} plugin.
-Below, we generate a few examples of such diagrams using languages such as [mermaid](https://mermaid-js.github.io/mermaid/){:target="\_blank"}, [plantuml](https://plantuml.com/){:target="\_blank"}, [vega-lite](https://vega.github.io/vega-lite/){:target="\_blank"}, etc.
-
-**Note:** different diagram-generation packages require external dependencies to be installed on your machine.
-Also, be mindful of that because of diagram generation the fist time you build your Jekyll website after adding new diagrams will be SLOW.
-For any other details, please refer to [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} README.
-
-
-## Mermaid
-
-Install mermaid using `node.js` package manager `npm` by running the following command:
-```bash
-npm install -g mermaid.cli
-```
-
-The diagram below was generated by the following code:
-
-{% raw %}
-```
-{% mermaid %}
-sequenceDiagram
- participant John
- participant Alice
- Alice->>John: Hello John, how are you?
- John-->>Alice: Great!
-{% endmermaid %}
-```
-{% endraw %}
-
-{% mermaid %}
-sequenceDiagram
- participant John
- participant Alice
- Alice->>John: Hello John, how are you?
- John-->>Alice: Great!
-{% endmermaid %}