Version 1.0
This commit is contained in:
parent
94086308a1
commit
b93eed4200
3 changed files with 22 additions and 4 deletions
|
@ -67,7 +67,7 @@
|
||||||
</p>
|
</p>
|
||||||
<p align="right">
|
<p align="right">
|
||||||
<?php
|
<?php
|
||||||
foreach ($post->otherlinks->otherlb as $olb){
|
foreach ($post->otherlinks->otherlb as $olb){
|
||||||
?>
|
?>
|
||||||
<a class="button_white" target="_blank" href="
|
<a class="button_white" target="_blank" href="
|
||||||
<?php
|
<?php
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
foreach($post->mainlink as $mainlink){
|
foreach($post->mainlink as $mainlink){
|
||||||
?>
|
?>
|
||||||
<a class="button_color" target="_blank" href="
|
<a class="button_color" target="_blank" href="
|
||||||
<?php
|
<?php
|
||||||
echo $post->mainurl;
|
echo $post->mainurl;
|
||||||
?>
|
?>
|
||||||
">
|
">
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
<div class="box_container">
|
<div class="box_container">
|
||||||
<!--Set here your personal copyright info-->
|
<!--Set here your personal copyright info-->
|
||||||
<p class="cc">
|
<p class="cc">
|
||||||
pBlog <?php echo date("Y"); ?>
|
pBlog <?php echo date("Y"); ?> <a href="https://github.com/mmk2410/pBlog" target="blank">github.com/mmk2410/pBlog</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -1,2 +1,6 @@
|
||||||
#pBlog
|
#pBlog
|
||||||
This is the Blog of the Blog Engine **pBlog**
|
This is the Blog of the Blog Engine **pBlog**
|
||||||
|
|
||||||
|
pBlog is based on PHP, XML and Markdown. It is easy to install and to configure.
|
||||||
|
|
||||||
|
The latest Version is **1.0**
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
<?xml version='1.0' standalone='yes'?>
|
<?xml version='1.0' standalone='yes'?>
|
||||||
<posts>
|
<posts>
|
||||||
|
<post>
|
||||||
|
<title>Version 1.0</title>
|
||||||
|
<pubdate>22nd February 2015</pubdate>
|
||||||
|
<content>
|
||||||
|
Today I'm proud to announce the **Version 1.0** of the pBlog - a simple PHP, XML and Markdown based blogging engine
|
||||||
|
which is completly independent from any databases. Even if this is the version 1.0 it is still in a early state of
|
||||||
|
development.
|
||||||
|
|
||||||
|
Version 1.0 has the following features:
|
||||||
|
- Blog writing in XML
|
||||||
|
- Content in Markdown
|
||||||
|
- Static intro in Markdown
|
||||||
|
</content>
|
||||||
|
</post>
|
||||||
<post>
|
<post>
|
||||||
<title>Version 0.3</title>
|
<title>Version 0.3</title>
|
||||||
<pubdate>20th February 2015</pubdate>
|
<pubdate>20th February 2015</pubdate>
|
||||||
|
|
Reference in a new issue