-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicons.php
14 lines (14 loc) · 1.33 KB
/
icons.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php foreach (array_filter((array) $state->y->contrast->icons) as $k => $v): ?>
<a class="icon" href="<?= eat($v->link); ?>"<?= !empty($v->target) ? ' target="' . eat($v->target) . '"' : ""; ?> title="<?= eat(i(...((array) $v->title))); ?>">
<svg height="16" viewBox="<?= $v->{'view-box'}; ?>" width="16">
<path d="<?= eat($v->icon); ?>"></path>
</svg>
</a>
<?php endforeach; ?>
<?php if (isset($state->x->feed)): ?>
<a class="icon" href="<?= eat($url->current(false, false)); ?>/feed.xml" title="<?= eat(i('Feed')); ?>">
<svg height="16" viewBox="0 0 448 512" width="16">
<path d="M128.081 415.959C128.081 451.328 99.409 480 64.04 480S0 451.328 0 415.959 28.672 351.918 64.041 351.918 128.081 380.591 128.081 415.959ZM303.741 463.209C295.387 308.609 171.556 184.622 16.791 176.259 7.656 175.765 0 183.105 0 192.253V240.322C0 248.737 6.49 255.794 14.887 256.34 126.719 263.624 216.36 353.042 223.659 465.112 224.206 473.509 231.263 479.999 239.677 479.999H287.746C296.895 480 304.235 472.344 303.741 463.209ZM447.99 463.497C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016V96.084C0 104.709 6.835 111.729 15.453 112.083 206.632 119.922 360.08 273.399 367.918 464.548 368.271 473.166 375.291 480.001 383.917 480.001H431.985C441.019 480 448.314 472.527 447.99 463.497Z"></path>
</svg>
</a>
<?php endif; ?>