From 9af8ec61bb78b60a83fce241ef0e5f485dcfda28 Mon Sep 17 00:00:00 2001 From: Thijs Paelman Date: Fri, 2 Jun 2023 23:47:20 +0200 Subject: Add Matrix socials & fix typo Add Matrix social element, by installing an extra font. It was pretty painful to install, and has some impact on all css-styles that start with the '.fa' class, due to global namespacing in scss (by using @import) --- .../vendor/forkawesome/src/doc/_layouts/icon.html | 76 ++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/icon.html (limited to 'themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/icon.html') diff --git a/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/icon.html b/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/icon.html new file mode 100644 index 0000000..30c4340 --- /dev/null +++ b/themes/docsy/assets/vendor/forkawesome/src/doc/_layouts/icon.html @@ -0,0 +1,76 @@ +--- +layout: base +title_suffix: Fork Awesome Icons +relative_path: ../../ +--- +
+
+
+ + Example of {{ page.icon.id }} at 6x   + + + Example of {{ page.icon.id }} at 5x +    + + + Example of {{ page.icon.id }} at 4x +    + + + Example of {{ page.icon.id }} at 3x +    + + Example of {{ page.icon.id }} at 2x +   + + + Example of {{ page.icon.id }} +
+

+ fa-{{ page.icon.id }} + + · + Unicode: {{ page.icon.unicode }} · + Created: v{{ page.icon.created }} · + Categories: + {% for category in page.icon.categories %} + {{ category }}{% unless forloop.last %},{% endunless %} + {% endfor %} + {% assign icon_alias_count = page.icon.aliases | size %} + {% if icon_alias_count > 0 %} + · Aliases: + {% for alias in page.icon.aliases %} + fa-{{ alias }}{% unless forloop.last %},{% endunless %} + {% endfor %} + {% endif %} + {% if page.icon.url %}· {{ page.icon.url }}{% endif %} + +

+
+
+ +
+
+
+
+

After you get up and running, you can place {{ site.forkawesome.name }} icons just about anywhere with the <i> tag:

+
+
+ Example of {{ page.icon.id }} fa-{{ page.icon.id }} +
+
+{% highlight html %} + +{% endhighlight %} +

+ Note: to improve web accessibility, we recommend using aria-hidden="true" to hide icons used purely for decoration. +

+ +
+ Looking for more? Check out the examples. +
+
+
+
+
-- cgit v1.2.3