diff --git a/config.toml b/config.toml index 4f7c8c3..b532165 100644 --- a/config.toml +++ b/config.toml @@ -33,13 +33,6 @@ feed_filenames = ["rss.xml", "atom.xml"] highlight_code = true highlight_theme = "dracula" -[languages.de] -title = "Dany Marcoux" -description = """\ - Software und DevOps Engineer mit 12+ Jahren Erfahrung. \ - Ich schreibe über DevOps, Webentwicklung, Linux, Ruby, und mehr.\ - """ - [extra] menu = [ { name = "Posts", url = "posts", weight = 1 }, diff --git a/content/_index.de.md b/content/_index.de.md deleted file mode 100644 index 433ea3f..0000000 --- a/content/_index.de.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Software und DevOps Engineer" -template ="index.de.html" -+++ diff --git a/content/posts/_index.de.md b/content/posts/_index.de.md deleted file mode 120000 index 9eb48a3..0000000 --- a/content/posts/_index.de.md +++ /dev/null @@ -1 +0,0 @@ -_index.md \ No newline at end of file diff --git a/content/posts/ci-with-markdownlint.de.md b/content/posts/ci-with-markdownlint.de.md deleted file mode 120000 index 031ab01..0000000 --- a/content/posts/ci-with-markdownlint.de.md +++ /dev/null @@ -1 +0,0 @@ -ci-with-markdownlint.md \ No newline at end of file diff --git a/content/posts/easily-upgrade-your-rails-applications-with-next_rails.de.md b/content/posts/easily-upgrade-your-rails-applications-with-next_rails.de.md deleted file mode 120000 index b661b77..0000000 --- a/content/posts/easily-upgrade-your-rails-applications-with-next_rails.de.md +++ /dev/null @@ -1 +0,0 @@ -easily-upgrade-your-rails-applications-with-next_rails.md \ No newline at end of file diff --git a/content/posts/hash-in-nix-packages.de.md b/content/posts/hash-in-nix-packages.de.md deleted file mode 120000 index 3af64b4..0000000 --- a/content/posts/hash-in-nix-packages.de.md +++ /dev/null @@ -1 +0,0 @@ -hash-in-nix-packages.md \ No newline at end of file diff --git a/content/posts/how-to-create-custom-haml-lint-linters.de.md b/content/posts/how-to-create-custom-haml-lint-linters.de.md deleted file mode 120000 index a53e27f..0000000 --- a/content/posts/how-to-create-custom-haml-lint-linters.de.md +++ /dev/null @@ -1 +0,0 @@ -how-to-create-custom-haml-lint-linters.md \ No newline at end of file diff --git a/content/posts/manage-music-collection.de.md b/content/posts/manage-music-collection.de.md deleted file mode 120000 index 93c63e1..0000000 --- a/content/posts/manage-music-collection.de.md +++ /dev/null @@ -1 +0,0 @@ -manage-music-collection.md \ No newline at end of file diff --git a/content/posts/reproducible-development-environment-for-elixir-with-nix.de.md b/content/posts/reproducible-development-environment-for-elixir-with-nix.de.md deleted file mode 120000 index c890e76..0000000 --- a/content/posts/reproducible-development-environment-for-elixir-with-nix.de.md +++ /dev/null @@ -1 +0,0 @@ -reproducible-development-environment-for-elixir-with-nix.md \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index c7a5c13..c381534 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,7 +1,7 @@ {% import "macros/macros.html" as post_macros %} - + {% include "partials/header.html" %} diff --git a/templates/index.de.html b/templates/index.de.html deleted file mode 100644 index 22617bb..0000000 --- a/templates/index.de.html +++ /dev/null @@ -1,55 +0,0 @@ -{% extends "base.html" %} - -{% block main_content %} -
-
-
- {{ post_macros::page_header(title=section.title) }} - -

Salut! Hi! Hallo! 👋

- -

- Ich bin Dany, ein Québécois der im schönen - Freiburg im Breisgau - in Deutschland lebt. Ich spreche Französisch 🇨🇦, Englisch and Deutsch 🇩🇪. -

- -

- In den letzten 12+ Jahren war ich als Software und DevOps Engineer tätig. - Ich schreibe über DevOps, Webentwicklung, Linux, Ruby, und mehr. -

- -

Fähigkeiten

- -
    -
  • - Webentwicklung Bild - Webentwicklung -
  • -
  • - Linux Logo - Linux -
  • -
  • - DevOps-Lebenszyklus Bild - DevOps -
  • -
  • - Ruby Logo - Ruby -
  • -
  • - Docker Logo - Docker -
  • -
  • - Python Logo - Python -
  • -
-
-
-
-{% endblock main_content %} - - diff --git a/templates/page.html b/templates/page.html index 176e47f..f86d09c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -4,14 +4,6 @@
- {% if lang != "en" %} -
-
-

Die Blogeinträge sind momentan nur auf Englisch verfügbar.

-
-
- {% endif %} - {{ post_macros::page_header(title=page.title) }}
diff --git a/templates/partials/header.html b/templates/partials/header.html index 96c2eab..5ee0346 100644 --- a/templates/partials/header.html +++ b/templates/partials/header.html @@ -30,7 +30,7 @@ - + {% set description = page.description | default(value=config.description) %} {% set description_length = description | length %} diff --git a/templates/partials/nav.html b/templates/partials/nav.html index cf1f72c..398203d 100644 --- a/templates/partials/nav.html +++ b/templates/partials/nav.html @@ -1,6 +1,6 @@
- {{ config.title }} + {{ config.title }}
{% for social in config.extra.socials | default(value=[]) %} @@ -19,18 +19,7 @@
diff --git a/templates/posts.html b/templates/posts.html index f2cd49c..5dbb5bf 100644 --- a/templates/posts.html +++ b/templates/posts.html @@ -1,14 +1,6 @@ {% extends "base.html" %} {% block main_content %} - {% if lang != "en" %} -
-
-

Die Blogeinträge sind momentan nur auf Englisch verfügbar.

-
-
- {% endif %} - {% if section.extra.section_path -%} {% set section = get_section(path=section.extra.section_path) %} {% endif -%}