1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-26 17:58:30 +00:00

Remove indentations in template body

This commit is contained in:
Unrud 2022-04-24 19:14:26 +02:00
parent b496be0f5d
commit 5a94d0b8bf

View file

@ -7,7 +7,7 @@
$styles.html()$ $styles.html()$
</style> </style>
$if(math)$ $if(math)$
$math$ $math$
$endif$ $endif$
<link href="assets/default.css" media="all" rel="stylesheet"> <link href="assets/default.css" media="all" rel="stylesheet">
<link href="assets/screen.css" media="screen" rel="stylesheet"> <link href="assets/screen.css" media="screen" rel="stylesheet">
@ -23,42 +23,42 @@ $endif$
<script src="assets/navigation-scroll-fix.js"></script> <script src="assets/navigation-scroll-fix.js"></script>
<header> <header>
<div class="logoContainer"> <div class="logoContainer">
<h1> <h1>
Radicale Radicale
<span class="documentBranch"> <span class="documentBranch">
<span>$branch$</span> <span>$branch$</span>
<select style="display: none;"> <select style="display: none;">
$for(branches)$ $for(branches)$
<option value="$it.href$"$if(it.default)$ selected$endif$>$it.name$</option> <option value="$it.href$"$if(it.default)$ selected$endif$>$it.name$</option>
$endfor$ $endfor$
</select> </select>
</span> </span>
</h1> </h1>
<p>Free and Open-Source CalDAV and CardDAV Server</p> <p>Free and Open-Source CalDAV and CardDAV Server</p>
</div> </div>
<div class="linkContainer"> <div class="linkContainer">
<ul> <ul>
<li><a href="https://community.kozea.fr">Made with ❤ by Kozea Community</a></li> <li><a href="https://community.kozea.fr">Made with ❤ by Kozea Community</a></li>
<li><a href="https://github.com/Kozea/Radicale">Fork me on GitHub</a></li> <li><a href="https://github.com/Kozea/Radicale">Fork me on GitHub</a></li>
</ul> </ul>
</div> </div>
</header> </header>
<main> <main>
<div class="navButtonContainer" style="display: none;"> <div class="navButtonContainer" style="display: none;">
<button data-name="nav-open">Contents</button> <button data-name="nav-open">Contents</button>
</div> </div>
<nav> <nav>
<div class="navContainer"> <div class="navContainer">
<div class="navButtonContainer" style="display: none;"> <div class="navButtonContainer" style="display: none;">
<button data-name="nav-close">Close</button> <button data-name="nav-close">Close</button>
</div> </div>
<h2>Contents</h2> <h2>Contents</h2>
$table-of-contents$ $table-of-contents$
</div> </div>
</nav> </nav>
<div class="documentContainer"> <div class="documentContainer">
$body$ $body$
</div> </div>
</main> </main>