aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorBradley Taunt <brad@serpapi.com>2024-06-13 14:57:38 -0400
committerBradley Taunt <brad@serpapi.com>2024-06-13 14:57:38 -0400
commit26c7db12364e8eba08e2f8e85bb534ed735a0be8 (patch)
tree0e1d2f6e2456ca2266993eef72881057ee5b3dd9 /assets
parenta134c38317e808d6535af990cc505dab1bc7bbfe (diff)
Major overhaul and cleanups
Diffstat (limited to 'assets')
-rw-r--r--assets/css/style.scss7
-rw-r--r--assets/minima-social-icons.liquid18
2 files changed, 0 insertions, 25 deletions
diff --git a/assets/css/style.scss b/assets/css/style.scss
deleted file mode 100644
index 0d1fce9..0000000
--- a/assets/css/style.scss
+++ /dev/null
@@ -1,7 +0,0 @@
----
-# Only the main Sass file needs front matter (the dashes are enough)
----
-
-@import
- "minima/skins/{{ site.minima.skin | default: 'classic' }}",
- "minima/initialize";
diff --git a/assets/minima-social-icons.liquid b/assets/minima-social-icons.liquid
deleted file mode 100644
index d2951fa..0000000
--- a/assets/minima-social-icons.liquid
+++ /dev/null
@@ -1,18 +0,0 @@
----
-permalink: /assets/minima-social-icons.svg
----
-
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-{% comment %}
- Iterate through {{ site.minima.social_links }} and render platform related SVG-symbol
- unless the platform is "rss" because we need the "rss" symbol for the `Subscribe` link
- in the footer and therefore inject the "rss" icon outside the iteration loop.
-{% endcomment %}
-{% for entry in site.minima.social_links %}
- {%- assign symbol_id = entry.platform -%}
- {%- unless symbol_id == "rss" -%}
- {%- include svg_symbol.html key = symbol_id -%}
- {% endunless %}
-{%- endfor -%}
- {%- include svg_symbol.html key = "rss" -%}
-</svg>