From 2784db0f696bb0d9ecaf44d55a885024e2692cb2 Mon Sep 17 00:00:00 2001 From: Diego Russo Date: Tue, 27 Feb 2024 01:09:01 +0000 Subject: [PATCH] Remove blog machinery --- _config.yml | 56 ++++++++++++++++++++------------------------ _data/navigation.yml | 4 ---- categories.html | 16 ------------- cv/index.html | 9 ------- howtos.html | 12 ---------- index.html | 9 ++++++- tags.html | 16 ------------- 7 files changed, 33 insertions(+), 89 deletions(-) delete mode 100644 categories.html delete mode 100644 cv/index.html delete mode 100644 howtos.html delete mode 100644 tags.html diff --git a/_config.yml b/_config.yml index d94c6107..0b8bb0a7 100644 --- a/_config.yml +++ b/_config.yml @@ -19,7 +19,7 @@ minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt" locale : "en" title : ">>> import diegor" title_separator : "-" -subtitle : # site tagline that appears below site title in masthead +subtitle : "just another special module" # site tagline that appears below site title in masthead name : "Diego Russo" description : "just another special module" url : "https://www.diegor.it" # the base hostname & protocol for your site e.g. "https://mmistakes.github.io" @@ -28,12 +28,12 @@ repository : "diegorusso/cv" # GitHub username/repo-name e.g. "mmi teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png" masthead_title : # overrides the website title displayed in the masthead, use " " for no title -# breadcrumbs : false # true, false (default) +breadcrumbs : # false # true, false (default) words_per_minute : 200 comments: - provider : "disqus" # false (default), "disqus", "facebook", "google-plus", custom" + provider : # false (default), "disqus", "facebook", "google-plus", custom" disqus: - shortname : "diegorusso" # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- + shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- discourse: server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org facebook: @@ -52,9 +52,9 @@ reCaptcha: secret : atom_feed: path : # blank (default) uses feed.xml -search : true #, false (default) -search_full_content : true #, false (default) -search_provider : lunr # (default), algolia, google +search : # false (default) +search_full_content : # false (default) +search_provider : # (default), algolia, google algolia: application_id : # YOUR_APPLICATION_ID index_name : # YOUR_INDEX_NAME @@ -108,9 +108,6 @@ author: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: mailto:me@diegor.it - - label: "Website" - icon: "fas fa-fw fa-link" - url: "https://www.diegor.it" - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/diegorusso" @@ -133,9 +130,6 @@ footer: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: mailto:me@diegor.it - - label: "Website" - icon: "fas fa-fw fa-link" - url: "https://www.diegor.it" - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/diegorusso" @@ -229,7 +223,7 @@ plugins: - jekyll-paginate - jekyll-sitemap - jekyll-gist - - jekyll-feed +# - jekyll-feed - jekyll-include-cache # mimic GitHub Pages with --safe @@ -237,7 +231,7 @@ whitelist: - jekyll-paginate - jekyll-sitemap - jekyll-gist - - jekyll-feed +# - jekyll-feed - jekyll-include-cache @@ -251,23 +245,23 @@ whitelist: # - /tags/my-awesome-tag/index.html ~> path: /tags/ # - /categories/my-awesome-category/index.html ~> path: /categories/ # - /my-awesome-category/index.html ~> path: / -category_archive: - type: liquid - path: /categories/ -tag_archive: - type: liquid - path: /tags/ +# category_archive: +# type: liquid +# path: /categories/ +# tag_archive: +# type: liquid +# path: /tags/ # https://github.com/jekyll/jekyll-archives -jekyll-archives: - enabled: - - categories - - tags - layouts: - category: archive-taxonomy - tag: archive-taxonomy - permalinks: - category: /categories/:name/ - tag: /tags/:name/ +# jekyll-archives: +# enabled: +# - categories +# - tags +# layouts: +# category: archive-taxonomy +# tag: archive-taxonomy +# permalinks: +# category: /categories/:name/ +# tag: /tags/:name/ # HTML Compression diff --git a/_data/navigation.yml b/_data/navigation.yml index b21d11b1..cbefd698 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -1,9 +1,5 @@ # main links main: - - title: "HOWTOs" - url: /howtos/ - - title: "CV" - url: /cv/ # - title: "Sample Posts" # url: /year-archive/ # - title: "Sample Collections" diff --git a/categories.html b/categories.html deleted file mode 100644 index dde5e1c0..00000000 --- a/categories.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: archive -permalink: /categories/ -title: "Posts by Category" -author_profile: true ---- - -{% include group-by-array collection=site.posts field="categories" %} - -{% for category in group_names %} - {% assign posts = group_items[forloop.index0] %} -

{{ category }}

- {% for post in posts %} - {{ post.title }}
- {% endfor %} -{% endfor %} diff --git a/cv/index.html b/cv/index.html deleted file mode 100644 index 499b9889..00000000 --- a/cv/index.html +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: single -title: Read my CV ---- -

Below you can read and download my English CV. It is written in LaTeX and the source code is on github

-

- - diff --git a/howtos.html b/howtos.html deleted file mode 100644 index a12bacde..00000000 --- a/howtos.html +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: archive -permalink: /howtos/ -title: "HOWTOs" -author_profile: true ---- - -{% include group-by-array collection=site.posts field="categories" %} - -{% for post in site.categories["howto"] %} - {{ post.title }}
-{% endfor %} diff --git a/index.html b/index.html index b95bb1f5..d551dcf4 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,11 @@ --- -layout: home +layout: single +classes: wide author_profile: true +title: "My Personal Home Page" --- + +

In this website you can find ways to get in touch with me and check out my +CV (Hit "refresh" if the CV doesn't appear below.)

+ +

diff --git a/tags.html b/tags.html deleted file mode 100644 index 04073490..00000000 --- a/tags.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -layout: archive -permalink: /tags/ -title: "Posts by Tags" -author_profile: true ---- - -{% include group-by-array collection=site.posts field="tags" %} - -{% for tag in group_names %} - {% assign posts = group_items[forloop.index0] %} -

{{ tag }}

- {% for post in posts %} - {{ post.title }}
- {% endfor %} -{% endfor %}