Twitter and OpenGraph meta tags; favicon
This commit is contained in:
parent
accc37e5be
commit
b6e719b6c6
2 changed files with 47 additions and 25 deletions
|
@ -5,12 +5,10 @@
|
||||||
// Make sure that every line ends with an semicolon (';').
|
// Make sure that every line ends with an semicolon (';').
|
||||||
// Blog Title - Set here an individual title of your blog by replacing Rangitaki Blog with it.
|
// Blog Title - Set here an individual title of your blog by replacing Rangitaki Blog with it.
|
||||||
$blogtitle = 'Rangitaki Blog';
|
$blogtitle = 'Rangitaki Blog';
|
||||||
// Blog Author - Set here your name
|
// Blog Author - Set here your name
|
||||||
$blogauthor = 'Marcel Kapfer';
|
$blogauthor = 'Marcel Kapfer';
|
||||||
// Blog description
|
// Blog description
|
||||||
$blogdescription = 'Rangitaki - A PHP blogging engine without any database dependency';
|
$blogdescription = 'Rangitaki - A PHP blogging engine without any database dependency';
|
||||||
// Blog favicon - enter here the path to your favicon
|
|
||||||
$blogfavicon = '../res/favicon.png';
|
|
||||||
// Home - set yes if you want to link to your homepage and no if not
|
// Home - set yes if you want to link to your homepage and no if not
|
||||||
$bloghome = 'yes';
|
$bloghome = 'yes';
|
||||||
// Home URL - Set here the url to your main page. Either relative (e.g. '../') or absolute (e.g. 'http://github.com')
|
// Home URL - Set here the url to your main page. Either relative (e.g. '../') or absolute (e.g. 'http://github.com')
|
||||||
|
@ -37,4 +35,6 @@ $nav_drawer = 'yes';
|
||||||
// Set here the name of your theme. Read the documentation for more themes
|
// Set here the name of your theme. Read the documentation for more themes
|
||||||
$theme = 'material-light';
|
$theme = 'material-light';
|
||||||
// Set here your language. The file must exist in the lang directory
|
// Set here your language. The file must exist in the lang directory
|
||||||
$language = "en";
|
$language = "en";
|
||||||
|
// Favicon - Set here the path to your favicon
|
||||||
|
$favicon = "https://example.com/res/img/favicon.png"
|
||||||
|
|
64
index.php
64
index.php
|
@ -1,30 +1,36 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<!-- pBlog https://github.com/mmk2410/pblog -->
|
|
||||||
<!--
|
<!--
|
||||||
The MIT License
|
Rangitaki
|
||||||
|
GitHub: https://github.com/mmk2410/Rangitaki
|
||||||
|
Web: https://marcel-kapfer.de/rangitaki
|
||||||
|
Twitter: @Rangitaki
|
||||||
|
Google+: +Rangitaki
|
||||||
|
-->
|
||||||
|
<!--
|
||||||
|
COPYRIGHT (c) 2015 mmk2410
|
||||||
|
|
||||||
Copyright 2015 mmk2410.
|
MIT License
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
a copy of this software and associated documentation files (the
|
||||||
in the Software without restriction, including without limitation the rights
|
"Software"), to deal in the Software without restriction, including
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
furnished to do so, subject to the following conditions:
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
The above copyright notice and this permission notice shall be
|
||||||
all copies or substantial portions of the Software.
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
THE SOFTWARE.
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
-->
|
-->
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
include 'config.php';
|
include 'config.php';
|
||||||
include './lang/' . $language . ".php";
|
include './lang/' . $language . ".php";
|
||||||
|
@ -43,9 +49,26 @@ THE SOFTWARE.
|
||||||
<meta name="author" content="<?php echo $blogauthor; ?>" />
|
<meta name="author" content="<?php echo $blogauthor; ?>" />
|
||||||
<meta name="description" content="<?php echo $blogdescription; ?>" />
|
<meta name="description" content="<?php echo $blogdescription; ?>" />
|
||||||
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
||||||
|
<!-- OpenGraph meta tags -->
|
||||||
|
<meta property="og:title" content="<?php echo $blogtitle; ?>" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content="<?php echo $url; ?>" />
|
||||||
|
<meta property="og:image" content="<?php echo $favicon; ?>" />
|
||||||
|
<meta property="og:description" content="<?php echo $blogdescription; ?>" />
|
||||||
|
<meta property="og:locale:alternate" content="<?php echo $lang; ?>" />
|
||||||
|
<!-- Twitter meta tags -->
|
||||||
|
<meta name="twitter:card" content="summary" />
|
||||||
|
<meta name="twitter:site" content="<?php echo $twitter; ?>" />
|
||||||
|
<meta name="twitter:title" content="<?php echo $blogtitle; ?>" />
|
||||||
|
<meta name="twitter:description" content="<?php echo $blogdescription; ?>" />
|
||||||
|
<meta name="twitter:image" content="<?php echo $favicon; ?>" />
|
||||||
|
<meta name="twitter:url" content="<?php echo $url; ?>" />
|
||||||
|
|
||||||
<!--CSS no change needed-->
|
<!--CSS no change needed-->
|
||||||
<link rel="stylesheet" type="text/css" href="res/css/rangitaki.css" />
|
<link rel="stylesheet" type="text/css" href="res/css/rangitaki.css" />
|
||||||
<link rel="stylesheet" type="text/css" href="themes/<?php echo $theme; ?>.css" />
|
<link rel="stylesheet" type="text/css" href="themes/<?php echo $theme; ?>.css" />
|
||||||
|
<link rel="shortcut icon" type="image/x-icon" href="<?php echo $favicon; ?>" />
|
||||||
|
<link rel="apple-touch-icon-precomposed" href="<?php echo $favicon; ?>">
|
||||||
<?php
|
<?php
|
||||||
if ($nav_drawer == 'no') {
|
if ($nav_drawer == 'no') {
|
||||||
?>
|
?>
|
||||||
|
@ -54,7 +77,6 @@ THE SOFTWARE.
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,700,300,400italic,100,100italic,900' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,700,300,400italic,100,100italic,900' rel='stylesheet' type='text/css'>
|
||||||
<link rel="shortcut icon" href="res/favicon.png">
|
|
||||||
<link rel="stylesheet" href="./res/css/github-gist.css">
|
<link rel="stylesheet" href="./res/css/github-gist.css">
|
||||||
<script src="./res/js/highlight.pack.js"></script>
|
<script src="./res/js/highlight.pack.js"></script>
|
||||||
<script>hljs.initHighlightingOnLoad();</script>
|
<script>hljs.initHighlightingOnLoad();</script>
|
||||||
|
@ -192,7 +214,7 @@ THE SOFTWARE.
|
||||||
<img src="./res/img/email.svg" class="subfab-img" />
|
<img src="./res/img/email.svg" class="subfab-img" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="subfab">
|
<div class="subfab">
|
||||||
<a href='https://twitter.com/intent/tweet?text=<?php echo $LANG_Check_out; ?>: <?php echo $url; ?>&original_referer=' target="blank">
|
<a href='https://twitter.com/intent/tweet?text=<?php echo $LANG_Check_out; ?>: <?php echo $url; ?>&original_referer=' target="blank">
|
||||||
<img src="./res/img/twitter.svg" class="subfab-img" />
|
<img src="./res/img/twitter.svg" class="subfab-img" />
|
||||||
</a>
|
</a>
|
||||||
|
|
Reference in a new issue