SimpleDoc/templates/page-template.html
2025-12-17 03:44:41 +01:00

46 lines
1.8 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.1.1/dist/css/materialize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet" href="../assets/css/simpledoc.css">
<link rel="stylesheet" href="../assets/css/prism.css">
<script src="https://cdn.jsdelivr.net/npm/@materializecss/materialize@2.2.2/dist/js/materialize.min.js"></script>
<script>
document.documentElement.setAttribute('theme', 'light');
</script>
<script src="../assets/js/config.js"></script>
<script src="../assets/js/prism.js"></script>
<script src="../assets/js/simpledoc.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>SimpleDoc - [PAGE TITLE]</title>
</head>
<body>
<div include-html="../components/header.html"></div>
<main>
<section class="section section-title primary-container [COLOR]" style="border-radius: 24px" id="index-banner">
<div class="container row py-5">
<div class="col s12 m8 offset-m1 xl7 offset-xl1 center-on-small-only">
<h1 class="header white-text" style="font-size: 4.2rem; margin-top: 1.6rem;">[PAGE TITLE]</h1>
<h4 class="light white-text" style="line-height: 1.25; margin-bottom: 1.6rem;">[PAGE SUBTITLE]</h4>
</div>
</div>
</section>
<div style="margin-bottom: 40px;"></div>
<div class="container">
<!-- Your content here -->
<p>This is a template page. Replace this content with your own.</p>
</div>
</main>
<div include-html="../components/footer.html"></div>
<script>includeHTML();</script>
</body>
</html>