diff --git a/README.md b/README.md index dfeac6e..9580e30 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,13 @@ Repo zu meiner Webseite Diese Webseite basiert auf [Jekyll](https://jekyllrb.com/). ## Changelog +### 2022-09-23 +* Change: Links at footer / contact / etc get a target and modify rel +* Change: Intern Layouts changes +### 2022-07-02 +* Change: New eMail address +### 2022-04-28 +* Add: New Social Media Links ### 2021-07-07 * Fix: Design issue on none blog pages ### 2021-06-21 diff --git a/_data/footer-links.yml b/_data/footer-links.yml index efa0ad1..a1e6a51 100644 --- a/_data/footer-links.yml +++ b/_data/footer-links.yml @@ -1,6 +1,3 @@ -pictures: - title: "Fotos" - href: "/fotos" colophon: title: "Colophon" href: "/colophon" diff --git a/_data/galleries.yml b/_data/galleries.yml deleted file mode 100644 index a7c2b85..0000000 --- a/_data/galleries.yml +++ /dev/null @@ -1,18 +0,0 @@ -- id: Test - date: 22.06.2022 - title: Das ist eine Testgallery - description: "Diese Gallery ist nur zu Testzwecken da." - imagefolder: /test/ - images: - - name: DSC00789.jpg - filename: DSC00789.jpg - text: Emmy schwarzer Hintergrud - - name: DSC00803.jpg - filename: DSC00803.jpg - text: Emmy schwarzer Hintergrund - Wildes Haar - - name: DSC00830.jpg - filename: DSC00830.jpg - text: Emmy auf der Weide - - name: DSC00856.jpg - filename: DSC00856.jpg - text: Lotte diff --git a/_data/header-links_deaktivate.yml b/_data/header-links_deaktivate.yml deleted file mode 100644 index 6f39e27..0000000 --- a/_data/header-links_deaktivate.yml +++ /dev/null @@ -1,6 +0,0 @@ -about: - title: 'Über mich' - href: '/nico' -pictures: - title: 'Fotos' - href: '/fotos' \ No newline at end of file diff --git a/_includes/blog.html b/_includes/blog.html index 1c1bb9b..cc47c9f 100644 --- a/_includes/blog.html +++ b/_includes/blog.html @@ -1,4 +1,4 @@ -
+
{% for post in paginator.posts %}
@@ -33,5 +33,5 @@
{% endfor %} -
+ {% include pagination.html %} \ No newline at end of file diff --git a/_layouts/gallery.html b/_layouts/gallery.html deleted file mode 100644 index ae22e52..0000000 --- a/_layouts/gallery.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: default ---- - - - - -
- {% for gallery in site.data.galleries %} -
- {% if gallery.id == page.galleryid %} -
-

{{ gallery.title }}

-

{{ gallery.description }}

-
-
- -
- {% endif %} -
- {% endfor %} -
\ No newline at end of file diff --git a/assets/images/gallery/test/DSC00789.jpg b/assets/images/gallery/test/DSC00789.jpg deleted file mode 100644 index 30e8d1e..0000000 Binary files a/assets/images/gallery/test/DSC00789.jpg and /dev/null differ diff --git a/assets/images/gallery/test/DSC00803.jpg b/assets/images/gallery/test/DSC00803.jpg deleted file mode 100644 index 603b04c..0000000 Binary files a/assets/images/gallery/test/DSC00803.jpg and /dev/null differ diff --git a/assets/images/gallery/test/DSC00830.jpg b/assets/images/gallery/test/DSC00830.jpg deleted file mode 100644 index 20fa7b1..0000000 Binary files a/assets/images/gallery/test/DSC00830.jpg and /dev/null differ diff --git a/assets/images/gallery/test/DSC00856.jpg b/assets/images/gallery/test/DSC00856.jpg deleted file mode 100644 index 6f9c920..0000000 Binary files a/assets/images/gallery/test/DSC00856.jpg and /dev/null differ diff --git a/assets/images/gallery/test/thumb/thumb-DSC00789.jpg b/assets/images/gallery/test/thumb/thumb-DSC00789.jpg deleted file mode 100644 index f2dc0d5..0000000 Binary files a/assets/images/gallery/test/thumb/thumb-DSC00789.jpg and /dev/null differ diff --git a/assets/images/gallery/test/thumb/thumb-DSC00803.jpg b/assets/images/gallery/test/thumb/thumb-DSC00803.jpg deleted file mode 100644 index 9457e8b..0000000 Binary files a/assets/images/gallery/test/thumb/thumb-DSC00803.jpg and /dev/null differ diff --git a/assets/images/gallery/test/thumb/thumb-DSC00830.jpg b/assets/images/gallery/test/thumb/thumb-DSC00830.jpg deleted file mode 100644 index a4da218..0000000 Binary files a/assets/images/gallery/test/thumb/thumb-DSC00830.jpg and /dev/null differ diff --git a/assets/images/gallery/test/thumb/thumb-DSC00856.jpg b/assets/images/gallery/test/thumb/thumb-DSC00856.jpg deleted file mode 100644 index 1026661..0000000 Binary files a/assets/images/gallery/test/thumb/thumb-DSC00856.jpg and /dev/null differ diff --git a/fotos.html b/fotos.html deleted file mode 100644 index 508d64f..0000000 --- a/fotos.html +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default -title: Meine Fotos ---- -
-
-
-

Fotos

-
-
- {% for gallery in site.data.galleries %} -

{{ gallery.id }}
- {{ gallery.title }} vom {{ gallery.date }}

- {% endfor %} -
-
-
diff --git a/fotos/test.html b/fotos/test.html deleted file mode 100644 index f71d31d..0000000 --- a/fotos/test.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: the first gallery page -layout: gallery -galleryid: Test ---- \ No newline at end of file diff --git a/index.html b/index.html index ac93304..eaaaf81 100644 --- a/index.html +++ b/index.html @@ -2,4 +2,5 @@ layout: default title: Home --- -{% include blog.html %} \ No newline at end of file + +
{% include blog.html %}