2015-02-21 21:04:03 +01:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<!-- pBlog https://github.com/mmk2410/pblog -->
|
2015-03-27 07:04:23 +01:00
|
|
|
<!--
|
|
|
|
The MIT License
|
|
|
|
|
|
|
|
Copyright 2015 mmk2410.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to 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
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
-->
|
2015-02-21 21:04:03 +01:00
|
|
|
<html>
|
2015-03-27 07:04:23 +01:00
|
|
|
|
2015-06-15 11:27:57 +02:00
|
|
|
<?php
|
|
|
|
include 'config.php';
|
|
|
|
require_once 'res/php/Parsedown.php';
|
|
|
|
require_once 'res/php/ArticleGenerator.php';
|
|
|
|
require_once './res/php/BlogListGenerator.php';
|
|
|
|
?>
|
2015-02-21 21:04:03 +01:00
|
|
|
|
|
|
|
<head>
|
2015-03-27 07:04:23 +01:00
|
|
|
<title><?php echo $blogtitle; ?></title>
|
|
|
|
<!--Metatags-->
|
|
|
|
<meta name="author" content="<?php echo $blogauthor; ?>" />
|
|
|
|
<meta name="description" content="<?php echo $blogdescription; ?>" />
|
2015-02-21 21:04:03 +01:00
|
|
|
<meta name="theme-color" content="#ac2900"/>
|
|
|
|
<meta http-equiv="CACHE-CONTROL" content="no-cache" />
|
|
|
|
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
2015-03-27 07:04:23 +01:00
|
|
|
<!--CSS no change needed-->
|
2015-06-15 11:27:57 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="res/css/rangitaki.css" />
|
2015-02-21 21:04:03 +01:00
|
|
|
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,700,300,400italic,100,100italic,900' rel='stylesheet' type='text/css'>
|
2015-03-27 07:04:23 +01:00
|
|
|
<link rel="shortcut icon" href="res/favicon.png">
|
2015-06-11 11:39:54 +02:00
|
|
|
<link rel="stylesheet" href="./res/css/github-gist.css">
|
|
|
|
<script src="./res/js/highlight.pack.js"></script>
|
|
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
2015-02-21 21:04:03 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2015-06-15 11:27:57 +02:00
|
|
|
<?php if($nav_drawer == "yes"){ ?>
|
|
|
|
<div class="nav">
|
|
|
|
<div class="divider"></div>
|
|
|
|
<?php
|
|
|
|
if($_GET['article'] == ""){
|
|
|
|
echo "<section>";
|
|
|
|
echo "<div class='nav-item-static'>Blogs of $blogtitle:</div>";
|
|
|
|
$blogs = scandir("./blogs/");
|
|
|
|
foreach ($blogs as $blog){
|
|
|
|
if(strlen($blog) >= 3 && substr($blog, -3) == ".md"){
|
|
|
|
if($_GET['blog'] == ""){
|
|
|
|
if($blog != "main.md"){
|
|
|
|
BlogListGenerator::listBlog("./blogs/", $blog, $blogtitle);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if($_GET['blog'] . ".md" != $blog){
|
|
|
|
BlogListGenerator::listBlog("./blogs/", $blog, $blogtitle);
|
|
|
|
}
|
2015-06-11 17:32:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-15 11:27:57 +02:00
|
|
|
echo "</section>";
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
<a class="nav-item" onclick="goBack()">Go back</a>
|
|
|
|
<?php
|
2015-06-11 17:32:58 +02:00
|
|
|
}
|
2015-06-15 11:27:57 +02:00
|
|
|
?>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<a class="nav-item" href="<?php echo $bloghomeurl; ?>"><?php echo $bloghomename; ?></a>
|
|
|
|
</div>
|
|
|
|
<?php
|
2015-06-11 17:32:58 +02:00
|
|
|
}
|
2015-06-15 11:27:57 +02:00
|
|
|
|
2015-06-11 17:32:58 +02:00
|
|
|
if($_GET['blog'] == ""){
|
|
|
|
$blog = "main";
|
|
|
|
} else {
|
|
|
|
$blog = $_GET['blog'];
|
|
|
|
}
|
|
|
|
?>
|
2015-06-15 11:27:57 +02:00
|
|
|
<div class="main">
|
|
|
|
<div class="header">
|
|
|
|
<img src="./res/img/menu.svg" class="nav-img" />
|
|
|
|
<nobr><a href="./" class="title"><?php echo $blogtitle; ?></a></nobr>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
if(file_exists("blogs/$blog.md") && $_GET['article'] == "" && $blogintro == "yes" && $_GET['tag'] == ""){
|
|
|
|
$file = file_get_contents("blogs/$blog.md");
|
|
|
|
$file = $file . "\n";
|
|
|
|
$file = substr($file, strpos($file, "\n"));
|
|
|
|
if($file != "" && $file != "\n" && $file != " "){
|
|
|
|
?>
|
|
|
|
<section class="card">
|
|
|
|
<div class="articletext">
|
2015-02-22 02:49:38 +01:00
|
|
|
<?php
|
2015-06-15 11:27:57 +02:00
|
|
|
$intro = Parsedown::instance()
|
|
|
|
->setBreaksEnabled(true)
|
|
|
|
->text($file);
|
|
|
|
echo $intro;
|
2015-02-22 02:49:38 +01:00
|
|
|
?>
|
2015-06-15 11:27:57 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$articlesdir = "./articles/$blog/";
|
|
|
|
if($_GET['tag'] != ""){
|
|
|
|
$articles = scandir($articlesdir, 1);
|
|
|
|
foreach ($articles as $article) {
|
|
|
|
$tags = ArticleGenerator::getTags($articlesdir, $article);
|
|
|
|
if(in_array($_GET['tag'], $tags)){
|
|
|
|
if(strlen($article) >= 3 && substr($article, -3) == ".md"){
|
|
|
|
ArticleGenerator::newArticle($articlesdir, $article, $_GET['blog']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if($_GET['article'] == ""){
|
|
|
|
$articles = scandir($articlesdir, 1);
|
|
|
|
foreach ($articles as $article) {
|
2015-06-12 10:31:28 +02:00
|
|
|
if(strlen($article) >= 3 && substr($article, -3) == ".md"){
|
|
|
|
ArticleGenerator::newArticle($articlesdir, $article, $_GET['blog']);
|
|
|
|
}
|
|
|
|
}
|
2015-06-15 11:27:57 +02:00
|
|
|
} else {
|
|
|
|
ArticleGenerator::newArticle($articlesdir, $_GET['article'] . ".md", $_GET['blog']);
|
|
|
|
include './res/php/SocialBar.php';
|
|
|
|
include './res/php/Disqus.php';
|
2015-06-12 10:31:28 +02:00
|
|
|
}
|
2015-06-15 11:27:57 +02:00
|
|
|
?>
|
|
|
|
<div class="footer">
|
2015-06-10 18:41:51 +02:00
|
|
|
<?php echo $blogfooter; ?>
|
2015-06-15 11:27:57 +02:00
|
|
|
</div>
|
|
|
|
<div class="fabmenu">
|
|
|
|
<div class="subfab">
|
|
|
|
<a href='mailto:?subject=<?php echo $blogtitle; ?>&body=Check out this blog: <?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>' target="blank">
|
|
|
|
<img src="./res/img/email.svg" class="subfab-img" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="subfab">
|
|
|
|
<a href='https://twitter.com/intent/tweet?text=Check out: <?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>&original_referer=' target="blank">
|
|
|
|
<img src="./res/img/twitter.svg" class="subfab-img" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="subfab">
|
|
|
|
<a href='https://plus.google.com/share?url=<?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>&hl=en-US' target="blank">
|
|
|
|
<img src="./res/img/gplus.svg" class="subfab-img" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="subfab">
|
|
|
|
<a href='https://www.facebook.com/sharer/sharer.php?u=<?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>&t=<?php echo "echo $blogtitle"?>' target="blank">
|
|
|
|
<img src="./res/img/facebook.svg" class="subfab-img" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="fab">
|
|
|
|
<img src="./res/img/share.svg" class="fab-img" alt="Share" />
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-02-21 21:04:03 +01:00
|
|
|
</div>
|
2015-06-15 11:27:57 +02:00
|
|
|
<script src="./res/js/jquery-2.1.4.min.js"></script>
|
|
|
|
<script src="./res/js/app.js"></script>
|
2015-06-10 18:41:51 +02:00
|
|
|
<?php
|
|
|
|
include './res/php/GoogleAnalytics.php';
|
|
|
|
?>
|
2015-02-21 21:04:03 +01:00
|
|
|
</body>
|
|
|
|
</html>
|