diff --git a/_category/ai-exploration.html b/_category/ai-exploration.html index 82fd7c2..3f836d2 100644 --- a/_category/ai-exploration.html +++ b/_category/ai-exploration.html @@ -1,5 +1,5 @@ --- title: AI Exploration order: 0 -emoji: 🌏 +emoji: file --- \ No newline at end of file diff --git a/_category/ai-framework.html b/_category/ai-framework.html index 98c479f..db47fc8 100644 --- a/_category/ai-framework.html +++ b/_category/ai-framework.html @@ -1,5 +1,5 @@ --- title: AI Framework order: 3 -emoji: 🌳 +emoji: file-code --- \ No newline at end of file diff --git a/_category/cp-algorithm.html b/_category/cp-algorithm.html index 75e9af8..68e1137 100644 --- a/_category/cp-algorithm.html +++ b/_category/cp-algorithm.html @@ -1,5 +1,5 @@ --- title: CP Algorithm order: 11 -emoji: 🔥 +emoji: rocket --- \ No newline at end of file diff --git a/_category/fe-development.html b/_category/fe-development.html index 2e360f3..0a1ee81 100644 --- a/_category/fe-development.html +++ b/_category/fe-development.html @@ -1,5 +1,5 @@ --- title: FE Development order: 7 -emoji: 🌈 +emoji: device-desktop --- \ No newline at end of file diff --git a/_category/linux.html b/_category/linux.html index caf4725..3a14349 100644 --- a/_category/linux.html +++ b/_category/linux.html @@ -1,5 +1,5 @@ --- title: Linux order: 6 -emoji: 💻 +emoji: terminal --- \ No newline at end of file diff --git a/_includes/navigation.html b/_includes/navigation.html index 7e024a3..b8820f7 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -4,8 +4,8 @@ - - + + {% include octicons/x.html %}
@@ -16,30 +16,38 @@
- -
All tags
+
+ {% include octicons/chevron-right.html %} + All tags
\ No newline at end of file diff --git a/_includes/topbar.html b/_includes/topbar.html index 5d7c91f..7aa36e5 100644 --- a/_includes/topbar.html +++ b/_includes/topbar.html @@ -1,13 +1,15 @@
- + + {% include octicons/three-bars.html %} + gumgood blog - + {% include octicons/search.html %} Search... - + {% include octicons/search.html %}
\ No newline at end of file diff --git a/_layouts/post-list.html b/_layouts/post-list.html index 3fe8931..39d54d7 100644 --- a/_layouts/post-list.html +++ b/_layouts/post-list.html @@ -3,15 +3,18 @@ --- {% if page.collection == 'category' %} - {% assign title = page.emoji | default: "📁" | append: " " | append: page.title %} + {% assign icon = page.emoji | default: "file-directory" %} + {% assign title = page.title %} {% assign posts = site.categories[page.slug] %} {% else %} - {% assign title = "📌" | append: " " | append: page.title | downcase %} + {% assign icon = "tag" %} + {% assign title = page.title | downcase %} {% assign posts = site.tags[page.slug] %} {% endif %}

+ {% include {{ icon | prepend: "octicons/" | append: ".html" }} %} {{ title }} {{ posts | size }}

@@ -19,7 +22,7 @@