Page 1 of 1

Where to insert rel=“me”?

Posted: Sat Nov 19, 2022 9:27 am
by WessexWeather
I would like to verify my website on my Mastodon account by inserting a rel=“me” backlink as instructed. I understand that on a conventional html website this should go in the header.
However where should I insert it into Meteotemplate? I’m thinking within indexDesktop.php and indexMobile.php but help would be appreciated.
Thanks in advance.

Re: Where to insert rel=“me”?

Posted: Sun Feb 05, 2023 2:57 pm
by davidefa
Sorry for the late reply, but you can add in the file header.php near line 429 ( add a line after the meta tags for example ):

Code: Select all

		<meta http-equiv="X-UA-Compatible" content="IE=edge" />
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<meta name="author" content="Jachym Brzezina">
		<meta property="og:image" content="icons/logoBlack.png">
		<meta property="og:title" content="<?php echo $pageName?>">
		<meta property="og:url" content="<?php echo $pageURL?>">
		<meta property="og:site_name" content="<?php echo $pageName?>">
		<meta property="og:description" content="<?php echo $pageDesc?>">
		<script type="text/javascript" src="<?php echo $pageURL.$path?>scripts/jquery.min.js"></script>
		<script type="text/javascript" src="<?php echo $pageURL.$path?>scripts/jquery-ui.js"></script>
		<script type="text/javascript" src="<?php echo $pageURL.$path?>scripts/jquery.tooltipster.js"></script>
		<script src="<?php echo $pageURL.$path?>scripts/scrolltop.js"></script>
		<script type="text/javascript" src="<?php echo $pageURL.$path?>scripts/tableExport.js"></script>
		<script type="text/javascript" src="<?php echo $pageURL.$path?>scripts/html2canvas.js"></script>