mirror of
https://github.com/danpros/htmly.git
synced 2026-04-23 05:56:22 +05:30
Silence is golden
This commit is contained in:
parent
7f85f7d6a2
commit
2460e5c6c1
90 changed files with 90 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
define('HTMLY', true);
|
||||||
$config_file = 'config/config.ini';
|
$config_file = 'config/config.ini';
|
||||||
require 'system/vendor/autoload.php';
|
require 'system/vendor/autoload.php';
|
||||||
require 'system/htmly.php';
|
require 'system/htmly.php';
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
|
|
||||||
// Return username.ini value
|
// Return username.ini value
|
||||||
function user($key, $user = null)
|
function user($key, $user = null)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$type = $type;
|
$type = $type;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
|
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
|
||||||
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
|
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
|
||||||
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
|
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$title = config('blog.title');
|
$title = config('blog.title');
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
if (login()) {
|
if (login()) {
|
||||||
if (isset($_GET['file'])) {
|
if (isset($_GET['file'])) {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php $desc = get_category_info(null); ?>
|
<?php $desc = get_category_info(null); ?>
|
||||||
<h2>Categories</h2>
|
<h2>Categories</h2>
|
||||||
<br>
|
<br>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2 class="post-index"><?php echo $category->title ?></h2>
|
<h2 class="post-index"><?php echo $category->title ?></h2>
|
||||||
<div><?php echo $category->body;?></div>
|
<div><?php echo $category->body;?></div>
|
||||||
<br>
|
<br>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$files = array();
|
$files = array();
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2>Custom Settings</h2>
|
<h2>Custom Settings</h2>
|
||||||
<br>
|
<br>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
global $config_file;
|
global $config_file;
|
||||||
$array = array();
|
$array = array();
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2>Performance Settings</h2>
|
<h2>Performance Settings</h2>
|
||||||
<br>
|
<br>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2>Reading Settings</h2>
|
<h2>Reading Settings</h2>
|
||||||
<br>
|
<br>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2>Widget Settings</h2>
|
<h2>Widget Settings</h2>
|
||||||
<br>
|
<br>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2>General Settings</h2>
|
<h2>General Settings</h2>
|
||||||
<br>
|
<br>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2><?php echo i18n('Add_content');?></h2>
|
<h2><?php echo i18n('Add_content');?></h2>
|
||||||
|
|
||||||
<p><a href="<?php echo site_url();?>add/content?type=post"><?php echo i18n('Regular_post')?></a><br><?php echo i18n('Regular_post_comment')?>.</p>
|
<p><a href="<?php echo site_url();?>add/content?type=post"><?php echo i18n('Regular_post')?></a><br><?php echo i18n('Regular_post_comment')?>.</p>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
if (isset($_GET['destination'])) {
|
if (isset($_GET['destination'])) {
|
||||||
$destination = _h($_GET['destination']);
|
$destination = _h($_GET['destination']);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
if (isset($_GET['destination'])) {
|
if (isset($_GET['destination'])) {
|
||||||
$destination = _h($_GET['destination']);
|
$destination = _h($_GET['destination']);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
if (isset($_GET['destination'])) {
|
if (isset($_GET['destination'])) {
|
||||||
$destination = _h($_GET['destination']);
|
$destination = _h($_GET['destination']);
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1>You don't have permission to access this page</h1>
|
<h1>You don't have permission to access this page</h1>
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
if (isset($p->file)) {
|
if (isset($p->file)) {
|
||||||
$url = $p->file;
|
$url = $p->file;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if ($type == 'is_frontpage') {
|
if ($type == 'is_frontpage') {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (isset($error)) { ?>
|
<?php if (isset($error)) { ?>
|
||||||
<div class="error-message"><?php echo $error ?></div>
|
<div class="error-message"><?php echo $error ?></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<style>.error-message ul {margin:0;padding:0;}</style>
|
<style>.error-message ul {margin:0;padding:0;}</style>
|
||||||
<?php if (isset($error)) { ?>
|
<?php if (isset($error)) { ?>
|
||||||
<div class="error-message"><?php echo $error ?></div>
|
<div class="error-message"><?php echo $error ?></div>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
unset($_SESSION[config("site.url")]);
|
unset($_SESSION[config("site.url")]);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php echo '<h2>' . i18n('Your_recent_posts') . '</h2>';?>
|
<?php echo '<h2>' . i18n('Your_recent_posts') . '</h2>';?>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
$menu = '';
|
$menu = '';
|
||||||
$filename = "content/data/menu.json";
|
$filename = "content/data/menu.json";
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2 class="post-index"><?php echo $heading ?></h2>
|
<h2 class="post-index"><?php echo $heading ?></h2>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2 class="post-index"><?php echo $heading ?></h2>
|
<h2 class="post-index"><?php echo $heading ?></h2>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php echo '<h2>' . i18n('Static_pages') . '</h2>';?>
|
<?php echo '<h2>' . i18n('Static_pages') . '</h2>';?>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>add/page">Add new page</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>add/page">Add new page</a>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use \Kanti\HubUpdater;
|
use \Kanti\HubUpdater;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h3>Updated to<h3>
|
<h3>Updated to<h3>
|
||||||
<h2>[<?php echo $info['tag_name']; ?>] <?php echo $info['name']; ?></h2>
|
<h2>[<?php echo $info['tag_name']; ?>] <?php echo $info['name']; ?></h2>
|
||||||
<p><?php echo \Michelf\MarkdownExtra::defaultTransform($info['body']); ?></p>
|
<p><?php echo \Michelf\MarkdownExtra::defaultTransform($info['body']); ?></p>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2 class="post-index"><?php echo $heading ?></h2>
|
<h2 class="post-index"><?php echo $heading ?></h2>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h2 class="post-index"><?php echo $heading ?></h2>
|
<h2 class="post-index"><?php echo $heading ?></h2>
|
||||||
<br>
|
<br>
|
||||||
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content">Add new post</a>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
|
|
||||||
// Load the configuration file
|
// Load the configuration file
|
||||||
config('source', $config_file);
|
config('source', $config_file);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) {
|
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) {
|
||||||
error(500, 'dispatch requires at least PHP 5.3 to run.');
|
error(500, 'dispatch requires at least PHP 5.3 to run.');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
|
|
||||||
use \Michelf\MarkdownExtra;
|
use \Michelf\MarkdownExtra;
|
||||||
use \Suin\RSSWriter\Feed;
|
use \Suin\RSSWriter\Feed;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
|
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
|
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
|
||||||
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
|
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div><?php endif; ?>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div><?php endif; ?>
|
||||||
<?php if (login()) {
|
<?php if (login()) {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
<h1><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (!empty($breadcrumb)): ?>
|
<?php if (!empty($breadcrumb)): ?>
|
||||||
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
<div class="breadcrumb" xmlns:v="http://rdf.data-vocabulary.org/#"><?php echo $breadcrumb ?></div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title">Search results not found!</h1>
|
<h1 class="entry-title">Search results not found!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title">This page doesn't exist!</h1>
|
<h1 class="entry-title">This page doesn't exist!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (isset($is_category)):?>
|
<?php if (isset($is_category)):?>
|
||||||
<header class="page-header"><h1 class="page-title"><?php echo i18n('Category');?>: <?php echo $category->title;?></h1><div class="taxonomy-description"><?php echo $category->body;?></div></header>
|
<header class="page-header"><h1 class="page-title"><?php echo i18n('Category');?>: <?php echo $category->title;?></h1><div class="taxonomy-description"><?php echo $category->body;?></div></header>
|
||||||
<?php endif;?>
|
<?php endif;?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="post type-post hentry ">
|
<article class="post type-post hentry ">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title"><?php echo i18n('No_posts_found');?>!</h1>
|
<h1 class="entry-title"><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="post type-post hentry <?php if (!empty($p->image) || !empty ($p->audio) || !empty ($p->video)):?>has-post-thumbnail<?php endif;?>">
|
<article class="post type-post hentry <?php if (!empty($p->image) || !empty ($p->audio) || !empty ($p->video)):?>has-post-thumbnail<?php endif;?>">
|
||||||
<?php if (!empty($p->image)):?>
|
<?php if (!empty($p->image)):?>
|
||||||
<div class="post-thumbnail">
|
<div class="post-thumbnail">
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title"><?php echo $name ?></h1>
|
<h1 class="entry-title"><?php echo $name ?></h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<?php if (login()) { echo tab($p); } ?>
|
<?php if (login()) { echo tab($p); } ?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title">Search results not found!</h1>
|
<h1 class="entry-title">Search results not found!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title">This page doesn't exist!</h1>
|
<h1 class="entry-title">This page doesn't exist!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<?php if (isset($is_category)):?>
|
<?php if (isset($is_category)):?>
|
||||||
<header class="page-header"><h1 class="page-title"><?php echo i18n('Category');?>: <?php echo $category->title;?></h1><div class="taxonomy-description"><?php echo $category->body;?></div></header>
|
<header class="page-header"><h1 class="page-title"><?php echo i18n('Category');?>: <?php echo $category->title;?></h1><div class="taxonomy-description"><?php echo $category->body;?></div></header>
|
||||||
<?php endif;?>
|
<?php endif;?>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title"><?php echo i18n('No_posts_found');?>!</h1>
|
<h1 class="entry-title"><?php echo i18n('No_posts_found');?>!</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="post <?php if ($p->type == 'post') {echo 'format-standard';} else { echo 'format-' . $p->type;} ?> hentry single">
|
<article class="post <?php if ($p->type == 'post') {echo 'format-standard';} else { echo 'format-' . $p->type;} ?> hentry single">
|
||||||
|
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h1 class="entry-title"><?php echo $name ?></h1>
|
<h1 class="entry-title"><?php echo $name ?></h1>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
||||||
<article class="page type-page hentry">
|
<article class="page type-page hentry">
|
||||||
|
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
if (!defined('HTMLY')) die('HTMLy');
|
||||||
require 'system/includes/dispatch.php';
|
require 'system/includes/dispatch.php';
|
||||||
require 'system/includes/session.php';
|
require 'system/includes/session.php';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue