mirror of https://github.com/byecorps/id.git
Favicon
This commit is contained in:
parent
7e0eb91f92
commit
8ac041536a
Binary file not shown.
After Width: | Height: | Size: 582 B |
|
@ -0,0 +1,44 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 -0.5 16 16"
|
||||||
|
shape-rendering="crispEdges"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="favicon.svg"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="30.692308"
|
||||||
|
inkscape:cx="0.96115288"
|
||||||
|
inkscape:cy="9.8070175"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="973"
|
||||||
|
inkscape:window-x="1920"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">Made with Pixels to Svg https://codepen.io/shshaw/pen/XbxvNj</metadata>
|
||||||
|
<path
|
||||||
|
stroke="#000000"
|
||||||
|
d="m 4.0000001,0.16666691 h 1.3333334 m 1.3333334,0 h 2.6666667 m -4,1.33333329 H 6.6666669 M 4.0000001,2.8333335 H 11.999999 M 4.0000001,4.1666669 H 11.999999 M 4.0000001,5.5000002 H 11.999999 M 4.0000001,6.8333335 H 11.999999 M 4.0000001,9.5000002 H 11.999999 M 2.6666669,10.833333 H 13.333333 M 2.6666669,12.166667 H 13.333333 M 2.6666669,13.5 H 13.333333 M 2.6666669,14.833333 H 13.333333"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.33333" />
|
||||||
|
<style
|
||||||
|
id="style1">@media (prefers-color-scheme:dark){:root{filter:invert(100%)}}</style>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -1,12 +1,16 @@
|
||||||
|
<?php
|
||||||
|
if (isset($page_title)) {
|
||||||
|
echo '<title>' . $page_title . ' ~> ByeCorps ID</title>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<script src="https://cdn.byecorps.com/global/fonts/fontawesome/js/all.min.js" defer></script>
|
<script src="https://cdn.byecorps.com/global/fonts/fontawesome/js/all.min.js" defer></script>
|
||||||
<link rel="stylesheet" href="/styles/base.css">
|
<link rel="stylesheet" href="/styles/base.css">
|
||||||
|
<link rel="shortcut icon" href="/favicon.svg" type="image/x-icon">
|
||||||
|
|
||||||
<?php
|
<!-- Apple web app stuff -->
|
||||||
if (isset($page_title)) {
|
<link rel="apple-touch-icon" href="https://cdn.id.byecorps.com/assets/icons/apple-icon-180.png" />
|
||||||
echo '<title>' . $page_title . '</title>';
|
<link rel="apple-touch-startup-image" href="" />
|
||||||
}
|
|
||||||
?>
|
|
||||||
|
|
Loading…
Reference in New Issue