Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorkorki <65349313+korki43@users.noreply.github.com>2021-12-24 19:10:15 +0300
committerMark Otto <otto@github.com>2022-01-21 22:55:27 +0300
commit78e9dfa96630b81fd33d1a976dc52e0b0cb9acff (patch)
treead957ea11cece12a686aa1c24c8965429f9563ce /docs
parent585e9662083f8f956305d0961bc520dc40a92329 (diff)
use unstyled list
Diffstat (limited to 'docs')
-rw-r--r--docs/layouts/icons/single.html20
1 files changed, 14 insertions, 6 deletions
diff --git a/docs/layouts/icons/single.html b/docs/layouts/icons/single.html
index 2797a16d5..d83f236e5 100644
--- a/docs/layouts/icons/single.html
+++ b/docs/layouts/icons/single.html
@@ -120,12 +120,20 @@
<div class="mb-4">
{{ $codepoints := getJSON "font/bootstrap-icons.json" -}}
{{ $hexCodepoint := printf "%X" (int (index $codepoints .File.TranslationBaseName)) }}
- <p>
- Unicode: <code>U+{{- $hexCodepoint}}</code><br/>
- CSS: <code>\{{- $hexCodepoint}}</code><br/>
- JS: <code>\u{{- $hexCodepoint}}</code><br/>
- HTML: <code>&amp;#x{{- $hexCodepoint}};</code>
- </p>
+ <ul class="list-unstyled">
+ <li>
+ Unicode: <code>U+{{- $hexCodepoint}}</code><br/>
+ </li>
+ <li>
+ CSS: <code>\{{- $hexCodepoint}}</code><br/>
+ </li>
+ <li>
+ JS: <code>\u{{- $hexCodepoint}}</code><br/>
+ </li>
+ <li>
+ HTML: <code>&amp;#x{{- $hexCodepoint}};</code>
+ </li>
+ </ul>
</div>
<h2 class="fs-3">Copy HTML</h2>