Browse Source

add light/dark favicon versions, update main page title

pull/7/head
ghost 3 years ago
parent
commit
3b0ad190b5
  1. BIN
      public/image/favicon-16x16.png
  2. BIN
      public/image/favicon-32x32.png
  3. BIN
      public/image/favicon-48x48.png
  4. BIN
      public/image/favicon-dark.png
  5. BIN
      public/image/favicon-light.png
  6. BIN
      public/image/favicon.png
  7. 12
      public/index.phtml

BIN
public/image/favicon-16x16.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 804 B

BIN
public/image/favicon-32x32.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 401 B

BIN
public/image/favicon-48x48.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 679 B

BIN
public/image/favicon-dark.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
public/image/favicon-light.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
public/image/favicon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 804 B

12
public/index.phtml

@ -6,15 +6,9 @@
<meta name="description" content="Open Source Content Exploring Platform for Kevacoin Blockchain" /> <meta name="description" content="Open Source Content Exploring Platform for Kevacoin Blockchain" />
<base href="<?php echo BASE_URL; ?>" /> <base href="<?php echo BASE_URL; ?>" />
<?php if ($namespaceHash) { ?> <?php if ($namespaceHash) { ?>
<link rel="icon" type="image/png" href="image.php?hash=<?php echo $namespaceHash; ?>&width=48&height=48&radius=24" /> <link rel="icon" type="image/png" href="image.php?hash=<?php echo $namespaceHash; ?>&width=220&height=220&radius=110" />
<link rel="icon" type="image/png" href="image.php?hash=<?php echo $namespaceHash; ?>&width=48&height=48&radius=24" sizes="48x48" />
<link rel="icon" type="image/png" href="image.php?hash=<?php echo $namespaceHash; ?>&width=32&height=32&radius=16" sizes="32x32" />
<link rel="icon" type="image/png" href="image.php?hash=<?php echo $namespaceHash; ?>&width=16&height=16&radius=8" sizes="16x16" />
<?php } else { ?> <?php } else { ?>
<link rel="icon" type="image/png" href="image/favicon.png" /> <link rel="icon" type="image/png" href="image/favicon-dark.png" />
<link rel="icon" type="image/png" href="image/favicon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/png" href="image/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="image/favicon-16x16.png" sizes="16x16" />
<?php } ?> <?php } ?>
<?php if ($ns) { ?> <?php if ($ns) { ?>
<?php if ($page) { ?> <?php if ($page) { ?>
@ -30,7 +24,7 @@
<?php } else if ($tx) { ?> <?php } else if ($tx) { ?>
<title><?php echo $tx && isset($data[0]['key']) ? $data[0]['key'] : $tx; ?> | <?php echo ($namespaceValue ? $namespaceValue : ($namespaceHash ? $namespaceHash : false)); ?> | KVAZAR</title> <title><?php echo $tx && isset($data[0]['key']) ? $data[0]['key'] : $tx; ?> | <?php echo ($namespaceValue ? $namespaceValue : ($namespaceHash ? $namespaceHash : false)); ?> | KVAZAR</title>
<?php } else { ?> <?php } else { ?>
<title>KVAZAR | Observe Kevacoin Universe</title> <title>KVAZAR | TODAY</title>
<?php } ?> <?php } ?>
<?php } ?> <?php } ?>
</head> </head>

Loading…
Cancel
Save