Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
refactor: PNG Favicon (#219)
Browse files Browse the repository at this point in the history
* PNG Favicon

* PNG Favicon
  • Loading branch information
Rindula authored Oct 28, 2021
1 parent 1c79772 commit bd21cb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/layout/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<?= $cakeDescription ?>:
<?= $this->fetch('title') ?>
</title>
<?= $this->Html->meta('icon') ?>
<?= $this->Html->meta('icon', 'favicon.png', ['type'=>'image/png']) ?>

<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="pragma" content="no-cache" />
Expand Down
2 changes: 1 addition & 1 deletion templates/layout/error.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<title>
<?= $this->fetch('title') ?>
</title>
<?= $this->Html->meta('icon') ?>
<?= $this->Html->meta('icon', 'favicon.png', ['type'=>'image/png']) ?>

<link href="https://fonts.googleapis.com/css?family=Raleway:400,700" rel="stylesheet">

Expand Down
2 changes: 1 addition & 1 deletion templates/layout/vue.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<?= $cakeDescription ?>:
<?= $this->fetch('title') ?>
</title>
<?= $this->Html->meta('icon') ?>
<?= $this->Html->meta('icon', 'favicon.png', ['type'=>'image/png']) ?>

<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="pragma" content="no-cache" />
Expand Down

0 comments on commit bd21cb4

Please sign in to comment.