-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
46 lines (44 loc) · 1.56 KB
/
Copy pathtemplate.html
File metadata and controls
46 lines (44 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html lang="en" data-bs-theme="dark"><head>
<meta charset="utf-8">
<meta name="description" content="Wee programming language project.">
<meta name="author" content="Elucian Moise">
<meta name="keywords" content="sage, code, wee, language, syntax, tutorial">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website title -->
<title>Wee Language</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<!-- Icon -->
<link rel="icon" type="image/png" href="../images/favicon.ico">
<!-- Prism Highlighter -->
<link rel="stylesheet" href="../prism.css">
<script src="../prism.js"></script>
<!-- custom css -->
<link rel="stylesheet" href="../sage.css">
</head>
<body>
<div class="container">
<!-- header -->
<div class="row">
<div class="col">
<a href="https://sagecode.net"><img src="../images/sage-logo.svg" alt="Sage-Code Laboratory" height="80"/></a>
</div>
<div class="col bottom-right">
<a href="index.html#lang-index" rel="nofollow">index</a><--
</div>
</div><hr>
<h1>Wee Language</h1>
<div class="alert alert-secondary shadow-sm">
Wee is a low level, minimalistic programming language design by Sage-Code.
</div>
<!-- work in progress-->
<hr>
<p><b>Read next:</b>
<a href="template.html">Page Name</a></p>
<!-- Footer -->
<footer class="footer">
<div class="footer-copyright text-center"></div>
</footer>
</div>
</body>
</html>