website_template/_source/index.html

24 lines
799 B
HTML
Raw Normal View History

2015-07-27 09:49:42 +02:00
<!doctype html>
<html lang="en">
2014-06-29 12:46:19 +02:00
<head>
2018-08-16 13:02:38 +02:00
<meta charset="utf-8" />
2015-07-27 09:49:42 +02:00
<title>Title goes here</title>
2015-07-27 13:59:04 +02:00
<meta name="description" content="description goes here" />
2015-07-27 12:25:14 +02:00
<meta name="author" content="Jan Jastrow" />
2015-07-27 09:49:42 +02:00
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2019-10-17 18:39:23 +02:00
<link rel="stylesheet" href="css/addons.min.css" type="text/css" />
2018-08-16 13:02:38 +02:00
<link rel="stylesheet" href="css/styles.min.css" type="text/css" />
2015-07-27 12:25:14 +02:00
<!-- for development only
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
-->
2014-06-29 12:46:19 +02:00
</head>
<body>
2019-10-17 18:39:23 +02:00
<h1>Foo</h1>
<p>Bar</p>
<p>Baz…</p>
2014-06-29 12:46:19 +02:00
</body>
</html>