Skip to content

Instantly share code, notes, and snippets.

@iamrobert
Created November 26, 2023 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamrobert/67e42d2f610f23a5591d723529d4072f to your computer and use it in GitHub Desktop.
Save iamrobert/67e42d2f610f23a5591d723529d4072f to your computer and use it in GitHub Desktop.
Favicon Joomla
<?php
/* iamrobert.com | TAIWAN -------------------------------------------------
_ __ __
(_)__ ___ _ _______ / / ___ ____/ /_
/ / _ `/ ' \/ __/ _ \/ _ \/ -_) __/ __/
/_/\_,_/_/_/_/_/ \___/_.__/\__/_/ \__/
===================================================== DIGITAL DESIGN STUDIO
# author Robert Stark
# copyright Copyright 2023 iamrobert.com All rights reserved.
# Website https://www.iamrobert.com
---------------------------------------------------------------------------
1) FAVICON GENERATOR
http://realfavicongenerator.net/
2: UPLOAD TO:
/media/templates/site/iamrobert4
-----------------------------------------------------------------------*/
defined('_JEXEC') or die;
?>
<link rel="icon" href="<?php echo $mpath; ?>/images/favi/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo $mpath; ?>/images/favi/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo $mpath; ?>/images/favi/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo $mpath; ?>/images/favi/favicon-16x16.png">
<link rel="manifest" href="<?php echo $mpath; ?>/images/favi/site.webmanifest">
<link rel="mask-icon" href="<?php echo $mpath; ?>/images/favi/safari-pinned-tab.svg" color="#005a2f">
<meta name="apple-mobile-web-app-title" content="TIMES Montessori">
<meta name="application-name" content="TIMES Montessori">
<meta name="msapplication-TileColor" content="#005a2f">
<meta name="theme-color" content="#005a2f">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment