Where to insert rel=“me”?

Post Reply
User avatar
WessexWeather
Forecaster
Forecaster
Posts: 127
Joined: Mon Aug 21, 2017 6:26 pm
Location: Wimborne, East Dorset, UK
Station model: Davis Vantage Vue
Software: Meteobridge
Contact:

Where to insert rel=“me”?

Post by WessexWeather » Sat Nov 19, 2022 9:27 am

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.
Regards,

Simon (WessexWeather)

Image

davidefa
Expert
Expert
Posts: 862
Joined: Tue Jan 12, 2021 8:03 am
Location: Italy
Station model: WH2650
Software: WH2650 (direct upload)
Contact:

Re: Where to insert rel=“me”?

Post by davidefa » Sun Feb 05, 2023 2:57 pm

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>
Image

Post Reply