ds-site/Resources/Private/Layouts/Page/Default.html

90 lines
5.4 KiB
HTML
Raw Normal View History

2019-11-13 23:40:26 +01:00
<html xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">
<div class="container">
<header class="blog-header py-3">
<div class="row flex-nowrap justify-content-between align-items-center">
<div class="col-4 offset-4 text-center">
<a class="blog-header-logo text-dark" href="/">Website Title</a>
</div>
<div class="col-4 pt-1 text-right">
<a class="text-muted" href="#">RSS Feed</a>
</div>
</div>
</header>
<!-- <div class="nav-scroller py-1 mb-2"> -->
<!-- <nav class="nav d-flex justify-content-between"> -->
<!-- <a class="p-2 text-muted" href="#">World</a> -->
<!-- <a class="p-2 text-muted" href="#">U.S.</a> -->
<!-- <a class="p-2 text-muted" href="#">Technology</a> -->
<!-- <a class="p-2 text-muted" href="#">Design</a> -->
<!-- <a class="p-2 text-muted" href="#">Culture</a> -->
<!-- <a class="p-2 text-muted" href="#">Business</a> -->
<!-- <a class="p-2 text-muted" href="#">Politics</a> -->
<!-- <a class="p-2 text-muted" href="#">Opinion</a> -->
<!-- <a class="p-2 text-muted" href="#">Science</a> -->
<!-- <a class="p-2 text-muted" href="#">Health</a> -->
<!-- <a class="p-2 text-muted" href="#">Style</a> -->
<!-- <a class="p-2 text-muted" href="#">Travel</a> -->
<!-- </nav> -->
<!-- </div> -->
<!-- <div class="jumbotron p-4 p-md-5 text-white rounded bg-dark"> -->
<!-- <div class="col-md-6 px-0"> -->
<!-- <h1 class="display-4 font-italic">Title of a longer featured blog post</h1> -->
<!-- <p class="lead my-3">Multiple lines of text that form the lede, informing new readers quickly and efficiently about whats most interesting in this posts contents.</p> -->
<!-- <p class="lead mb-0"><a href="#" class="text-white font-weight-bold">Continue reading...</a></p> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="row mb-2"> -->
<!-- <div class="col-md-6"> -->
<!-- <div class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative"> -->
<!-- <div class="col p-4 d-flex flex-column position-static"> -->
<!-- <strong class="d-inline-block mb-2 text-primary">World</strong> -->
<!-- <h3 class="mb-0">Featured post</h3> -->
<!-- <div class="mb-1 text-muted">Nov 12</div> -->
<!-- <p class="card-text mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p> -->
<!-- <a href="#" class="stretched-link">Continue reading</a> -->
<!-- </div> -->
<!-- <div class="col-auto d-none d-lg-block"> -->
<!-- <svg class="bd-placeholder-img" width="200" height="250" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: Thumbnail"><title>Placeholder</title><rect width="100%" height="100%" fill="#55595c"/><text x="50%" y="50%" fill="#eceeef" dy=".3em">Thumbnail</text></svg> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- <div class="col-md-6"> -->
<!-- <div class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative"> -->
<!-- <div class="col p-4 d-flex flex-column position-static"> -->
<!-- <strong class="d-inline-block mb-2 text-success">Design</strong> -->
<!-- <h3 class="mb-0">Post title</h3> -->
<!-- <div class="mb-1 text-muted">Nov 11</div> -->
<!-- <p class="mb-auto">This is a wider card with supporting text below as a natural lead-in to additional content.</p> -->
<!-- <a href="#" class="stretched-link">Continue reading</a> -->
<!-- </div> -->
<!-- <div class="col-auto d-none d-lg-block"> -->
<!-- <svg class="bd-placeholder-img" width="200" height="250" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice" focusable="false" role="img" aria-label="Placeholder: Thumbnail"><title>Placeholder</title><rect width="100%" height="100%" fill="#55595c"/><text x="50%" y="50%" fill="#eceeef" dy=".3em">Thumbnail</text></svg> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<main class="container">
<div class="row">
<div class="col-md-8 blog-main">
{f:render(section: 'Content', arguments: _all)}
</div>
<aside class="col-md-4 blog-sidebar">
{f:render(section: 'Aside', arguments: _all)}
</aside>
</div>
</main>
<footer class="blog-footer">
<p>ⓒ by Daniel Siepmann 2016 - {f:format.date(format: 'Y')}</p>
<!-- TODO: Add imprint -->
</footer>
</div>
</html>