rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit 35915c31c6b5eb6c7a411daf64d3faf8ff2898cf
parent b9f67e381047322a7d3d7e7a62805d98d539cf64
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun, 23 Nov 2014 10:24:17 +0100

first try to implement blog title in jumbotron

Diffstat:
Mthemes/jumbotron/index.php | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/themes/jumbotron/index.php b/themes/jumbotron/index.php @@ -29,6 +29,8 @@ <body> <?php + require('../../core/backend/blog/posts.php'); + require('../../core/config/variables.config.php') ?> @@ -42,7 +44,9 @@ <span class="icon-bar"></span> <span class="icon-bar"></span> </button> - <a class="navbar-brand" href="#">RPICMS EXAMPLE THEME</a> + <?php + echo '<a class="navbar-brand" href="#">'.$blog_name.'</a>'; + ?> </div> <div id="navbar" class="navbar-collapse collapse"> <form class="navbar-form navbar-right" role="form" action="../../core/admin/user/login_check.php" method="post"> @@ -61,9 +65,6 @@ <!-- Main jumbotron for a primary marketing message or call to action --> <div class="jumbotron"> <div class="container"> - <?php - require('../../core/backend/blog/posts.php'); - ?> <h1> <?php echo "<a href='#' rel='bookmark'> $post_title </a>";