forked from ProWalker/basic-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (68 loc) · 3.21 KB
/
index.html
File metadata and controls
83 lines (68 loc) · 3.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<title>basic site - index</title>
<link rel='stylesheet' type='text/css' href='css/footer.css'>
<link rel='stylesheet' type='text/css' href='css/menu.css'>
<link rel='stylesheet' type='text/css' href='css/pagestyle.css'>
<link rel='stylesheet' type='text/css' href='css/pre.css'>
<meta name='viewport' content='width=device-width, initial-scale=0.75, maximum-scale=1.0'>
<!-- uses google-code-prettify for syntax highlighting
see https://github.com/google/code-prettify/ for more info -->
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<!-- uses MathJax CDC for LaTeX support
see http://docs.mathjax.org/en/latest/start.html for more info -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config
({
extensions: ["tex2jax.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax:
{
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["MathJax TeX"] }
});
</script>
<script type="text/javascript"
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js">
</script>
</head>
<body>
<div class="header" id="header">
<img class="logo" src="img/collage33.jpg" width="300px" style="max-width: 90%; margin-top:15px"><br>
<a href="index.html" class="header_item">Home</a>
<a href="about.html" class="header_item">About</a>
<a href="faq.html" class="header_item">FAQ2</a>
</div>
<div class="content">
<h2>This is a small site</h2>
<p>
This is a very cool site
</p>
<p>
You can import (or fork and rename) the <mono>basic-site</mono> site repository template to begin making your own site with the same design.
</p>
<p>
See the <a href="about.html">About</a> page for information about adding/removing pages to/from your site and modifying the content/layout of your site.
</p>
<p>
See the <a href="faq.html">FAQ</a> page for how to import/fork this repository along with answers to other frequently asked questions.
</p>
</div>
<div class="footer">
<div class="footer_text">Basic Site Template</div>
<noselect><img src="img/nsm.png" width="100px" style="margin-bottom:20px">
<br></noselect>
<b>Mirrors:</b>
[<a href="https://nsm-templates.github.io/basic-site" class="footer_item">GitHub</a>]
[<a href="https://nsm-templates.gitlab.io/basic-site" class="footer_item">GitLab</a>]
<p style="margin-top:0px">
<small>Site Manager: <a href="https://nift.cc">Nift</a></small>
</p>
<noselect><small>© 2015 - <script>document.write(new Date().getFullYear())</script> <a href="https://n-ham.com/">Nicholas Ham</a></small>
<br><br></noselect>
</div>
</body>
</html>