mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
Merge pull request #18 from simonwelsh/30-update
Updates templates to more SS3-ready syntax
This commit is contained in:
commit
878fc3261b
@ -1,5 +1,5 @@
|
||||
<% if Level(2) %>
|
||||
<% if $Level(2) %>
|
||||
<div id="Breadcrumbs">
|
||||
$Breadcrumbs
|
||||
</div>
|
||||
<% end_if %>
|
||||
<% end_if %>
|
||||
|
@ -2,16 +2,16 @@
|
||||
<div class="inner">
|
||||
<a href="$BaseHref" class="brand" rel="home">
|
||||
<h1>$SiteConfig.Title</h1>
|
||||
<% if SiteConfig.Tagline %>
|
||||
<% if $SiteConfig.Tagline %>
|
||||
<p>$SiteConfig.Tagline</p>
|
||||
<% end_if %>
|
||||
</a>
|
||||
<% if SearchForm %>
|
||||
<% if $SearchForm %>
|
||||
<span class="search-dropdown-icon">L</span>
|
||||
<div class="search-bar">
|
||||
$SearchForm
|
||||
</div>
|
||||
</div>
|
||||
<% end_if %>
|
||||
<% include Navigation %>
|
||||
</div>
|
||||
</header>
|
||||
</header>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<nav class="primary">
|
||||
<span class="nav-open-button">²</span>
|
||||
<ul>
|
||||
<% loop Menu(1) %>
|
||||
<% loop $Menu(1) %>
|
||||
<li class="$LinkingMode"><a href="$Link" title="$Title.XML">$MenuTitle.XML</a></li>
|
||||
<% end_loop %>
|
||||
</ul>
|
||||
</nav>
|
||||
</nav>
|
||||
|
@ -1,16 +1,16 @@
|
||||
<aside>
|
||||
<% if Menu(2) %>
|
||||
<% if $Menu(2) %>
|
||||
<nav class="secondary">
|
||||
<h3>
|
||||
<% loop Level(1) %>
|
||||
<% loop $Level(1) %>
|
||||
$Title
|
||||
<% end_loop %>
|
||||
</h3>
|
||||
<ul>
|
||||
<% loop Menu(1) %>
|
||||
<% loop $Menu(1) %>
|
||||
<% include SidebarMenu %>
|
||||
<% end_loop %>
|
||||
</ul>
|
||||
</nav>
|
||||
<% end_if %>
|
||||
</aside>
|
||||
<% end_if %>
|
||||
</aside>
|
||||
|
@ -1,18 +1,18 @@
|
||||
<!--Include SidebarMenu recursively /-->
|
||||
<% if Children %>
|
||||
<% loop Children %>
|
||||
<%--Include SidebarMenu recursively --%>
|
||||
<% if $Children %>
|
||||
<% loop $Children %>
|
||||
<li class="$LinkingMode">
|
||||
<a href="$Link" class="$LinkingMode" title="Go to the $Title.XML page">
|
||||
<span class="arrow">→</span>
|
||||
<span class="text">$MenuTitle.XML</span>
|
||||
</a>
|
||||
|
||||
<% if Children %>
|
||||
<ul>
|
||||
<% if $Children %>
|
||||
<ul>
|
||||
<% include SidebarMenu %>
|
||||
</ul>
|
||||
</ul>
|
||||
<% end_if %>
|
||||
|
||||
</li>
|
||||
<% end_loop %>
|
||||
<% end_if %>
|
||||
<% end_if %>
|
||||
|
@ -1,54 +1,54 @@
|
||||
<div id="Content" class="searchResults">
|
||||
<h1>$Title</h1>
|
||||
|
||||
<% if Query %>
|
||||
|
||||
<% if $Query %>
|
||||
<p class="searchQuery">You searched for "{$Query}"</p>
|
||||
<% end_if %>
|
||||
|
||||
<% if Results %>
|
||||
|
||||
<% if $Results %>
|
||||
<ul id="SearchResults">
|
||||
<% control Results %>
|
||||
<% loop $Results %>
|
||||
<li>
|
||||
<h4>
|
||||
<a href="$Link">
|
||||
<% if MenuTitle %>
|
||||
<% if $MenuTitle %>
|
||||
$MenuTitle
|
||||
<% else %>
|
||||
$Title
|
||||
<% end_if %>
|
||||
</a>
|
||||
</h4>
|
||||
<% if Content %>
|
||||
<% if $Content %>
|
||||
<p>$Content.LimitWordCountXML</p>
|
||||
<% end_if %>
|
||||
<a class="readMoreLink" href="$Link" title="Read more about "{$Title}"">Read more about "{$Title}"...</a>
|
||||
</li>
|
||||
<% end_control %>
|
||||
<% end_loop %>
|
||||
</ul>
|
||||
<% else %>
|
||||
<p>Sorry, your search query did not return any results.</p>
|
||||
<% end_if %>
|
||||
|
||||
<% if Results.MoreThanOnePage %>
|
||||
|
||||
<% if $Results.MoreThanOnePage %>
|
||||
<div id="PageNumbers">
|
||||
<div class="pagination">
|
||||
<% if Results.NotFirstPage %>
|
||||
<% if $Results.NotFirstPage %>
|
||||
<a class="prev" href="$Results.PrevLink" title="View the previous page">←</a>
|
||||
<% end_if %>
|
||||
<span>
|
||||
<% control Results.Pages %>
|
||||
<% if CurrentBool %>
|
||||
<% loop $Results.Pages %>
|
||||
<% if $CurrentBool %>
|
||||
$PageNum
|
||||
<% else %>
|
||||
<a href="$Link" title="View page number $PageNum" class="go-to-page">$PageNum</a>
|
||||
<% end_if %>
|
||||
<% end_control %>
|
||||
<% end_loop %>
|
||||
</span>
|
||||
<% if Results.NotLastPage %>
|
||||
<% if $Results.NotLastPage %>
|
||||
<a class="next" href="$Results.NextLink" title="View the next page">→</a>
|
||||
<% end_if %>
|
||||
</div>
|
||||
</div>
|
||||
<p>Page $Results.CurrentPage of $Results.TotalPages</p>
|
||||
</div>
|
||||
<% end_if %>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -14,7 +14,7 @@ Change it, enhance it and most importantly enjoy it!
|
||||
<!--[if IE 8 ]><html lang="$ContentLocale" class="ie ie8"><![endif]-->
|
||||
<head>
|
||||
<% base_tag %>
|
||||
<title><% if MetaTitle %>$MetaTitle<% else %>$Title<% end_if %> » $SiteConfig.Title</title>
|
||||
<title><% if $MetaTitle %>$MetaTitle<% else %>$Title<% end_if %> » $SiteConfig.Title</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
@ -22,13 +22,13 @@ Change it, enhance it and most importantly enjoy it!
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
<% require themedCSS(reset) %>
|
||||
<% require themedCSS(typography) %>
|
||||
<% require themedCSS(form) %>
|
||||
<% require themedCSS(layout) %>
|
||||
<% require themedCSS('reset') %>
|
||||
<% require themedCSS('typography') %>
|
||||
<% require themedCSS('form') %>
|
||||
<% require themedCSS('layout') %>
|
||||
<link rel="shortcut icon" href="$ThemeDir/images/favicon.ico" />
|
||||
</head>
|
||||
<body class="$ClassName<% if Menu(2) %><% else %> no-sidebar<% end_if %>">
|
||||
<body class="$ClassName<% if not $Menu(2) %> no-sidebar<% end_if %>">
|
||||
<% include Header %>
|
||||
<div class="main" role="main">
|
||||
<div class="inner typography">
|
||||
@ -37,9 +37,9 @@ Change it, enhance it and most importantly enjoy it!
|
||||
</div>
|
||||
<% include Footer %>
|
||||
|
||||
<% require javascript(framework/thirdparty/jquery/jquery.js) %>
|
||||
<% require javascript('framework/thirdparty/jquery/jquery.js') %>
|
||||
<%-- Please move: Theme javascript (below) should be moved to mysite/code/page.php --%>
|
||||
<script type="text/javascript" src="{$ThemeDir}/javascript/script.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user