Added breadcrumbs
This commit is contained in:
parent
af3d273634
commit
21855d05cc
1 changed files with 44 additions and 33 deletions
|
@ -15,10 +15,18 @@
|
|||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>bootstrap.css" type="text/css" />
|
||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||
<TMPL_LOOP TRAILLOOP>
|
||||
<TMPL_IF PREVPAGE>
|
||||
<link rel="prev" href="<TMPL_VAR PREVURL>" title="<TMPL_VAR PREVTITLE>" />
|
||||
</TMPL_IF>
|
||||
<link rel="up" href="<TMPL_VAR TRAILURL>" title="<TMPL_VAR TRAILTITLE>" />
|
||||
<TMPL_IF NEXTPAGE>
|
||||
<link rel="next" href="<TMPL_VAR NEXTURL>" title="<TMPL_VAR NEXTTITLE>" />
|
||||
</TMPL_IF>
|
||||
</TMPL_LOOP>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
|
@ -65,9 +73,14 @@
|
|||
|
||||
<div class="content">
|
||||
<div class="container">
|
||||
<header class="page-header">
|
||||
<ol class="breadcrumb">
|
||||
<TMPL_LOOP PARENTLINKS>
|
||||
<li><a href="<TMPL_VAR URL>"><TMPL_VAR PAGE></a></li>
|
||||
</TMPL_LOOP>
|
||||
</ol>
|
||||
<div class="page-header">
|
||||
<h1><TMPL_VAR TITLE></h1>
|
||||
</header>
|
||||
</div>
|
||||
|
||||
<TMPL_VAR CONTENT>
|
||||
</div> <!-- /container -->
|
||||
|
@ -84,7 +97,5 @@
|
|||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue