mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
c71a1aaca2
Universal increase in font size Use same font as ss.org for consistency Remove unnecessary visual noise (borders, box shadows, etc) Use Google PrettyPrint syntax highlighter for improved readability of code sections Fully responsive, with hamburger menu Add "section" linking mode to menu items Add masthead for breadcrumbs, introduction Improved styles for notice/info/warning messaging
49 lines
1.1 KiB
Scheme
Executable File
49 lines
1.1 KiB
Scheme
Executable File
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<% include DocumentationHead %>
|
|
|
|
<div id="masthead">
|
|
<div class="wrapper">
|
|
<% if Breadcrumbs.count > 1 %>
|
|
<% include DocumentationBreadcrumbs %>
|
|
<% else_if Page.Title %>
|
|
<h1>$Page.Title</h1>
|
|
<% end_if %>
|
|
<% if Page.Introduction %>
|
|
<div class="introduction">
|
|
<p>$Page.Introduction</p>
|
|
</div>
|
|
<% end_if %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="wrapper">
|
|
<div id="layout" class="clearfix">
|
|
|
|
<% include DocumentationSidebar %>
|
|
|
|
<div id="content">
|
|
$Layout
|
|
|
|
<% include DocumentationFooter %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<% if GoogleAnalyticsCode %>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', '$GoogleAnalyticsCode', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
<% end_if %>
|
|
|
|
<% include DocumentationEnd %>
|
|
</html>
|