diff options
author | friendica <info@friendica.com> | 2014-03-02 16:46:34 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-02 16:46:34 -0800 |
commit | 895c9411d9393776f2ae4846935e42c31fde41af (patch) | |
tree | b77824215a9e6ca8377aba451adba062cc95201d /view/php | |
parent | e931af830701fdacc64e2cc014aa0057dc91e093 (diff) | |
download | volse-hubzilla-895c9411d9393776f2ae4846935e42c31fde41af.tar.gz volse-hubzilla-895c9411d9393776f2ae4846935e42c31fde41af.tar.bz2 volse-hubzilla-895c9411d9393776f2ae4846935e42c31fde41af.zip |
add choklet template with several defined flavours, two and three column fluid layouts with optional side margins and a region for a blog-style header photo
Diffstat (limited to 'view/php')
-rw-r--r-- | view/php/choklet.php | 3 | ||||
-rw-r--r-- | view/php/default.php | 3 | ||||
-rw-r--r-- | view/php/full.php | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/view/php/choklet.php b/view/php/choklet.php index 31b0b124c..fcfaf7804 100644 --- a/view/php/choklet.php +++ b/view/php/choklet.php @@ -7,7 +7,8 @@ </head>
<body>
<div id="blog-margin">
- <?php if(x($page,'nav')) echo $page['nav']; ?>
+ <header><?php if(x($page,'header')) echo $page['header']; ?></header>
+ <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
<div id="blog-banner"><?php if(x($page,'banner')) echo $page['banner']; ?></div>
<aside id="region_1"><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
diff --git a/view/php/default.php b/view/php/default.php index 3573bf829..fd29ef3db 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -6,7 +6,8 @@ <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
</head>
<body>
- <?php if(x($page,'nav')) echo $page['nav']; ?>
+ <header><?php if(x($page,'header')) echo $page['header']; ?></header>
+ <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
<aside id="region_1"><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
<div id="page-footer"></div>
diff --git a/view/php/full.php b/view/php/full.php index d8643d5a1..99653c06d 100644 --- a/view/php/full.php +++ b/view/php/full.php @@ -6,7 +6,8 @@ <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?> </head> <body> - <nav><?php if(x($page,'nav')) echo $page['nav']; ?></nav> + <header><?php if(x($page,'header')) echo $page['header']; ?></header> + <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"><?php if(x($page,'nav')) echo $page['nav']; ?></nav> <section><?php if(x($page,'content')) echo $page['content']; ?> <div id="page-footer"></div> </section> |