You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Matterwiki</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The default bootstrap CSS with some modifications -->
|
|
<link rel="stylesheet" href="./assets/bootstrap.css" />
|
|
<!-- Customizations and CSS for custom classes -->
|
|
<link rel="stylesheet" href="./assets/style.css" />
|
|
<!-- CSS for the text editor. Basecamp's Trix -->
|
|
<link rel="stylesheet" href="./assets/trix.css" />
|
|
<script src="./assets/jquery.js" type="text/javascript"></script>
|
|
<!-- JS for the text editor. Basecamp's Trix -->
|
|
<script src="./assets/trix.js" type="text/javascript"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
|
<!-- Custom jQuery additions, not found in the bootrap JS file -->
|
|
<script src="./assets/custom.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<!--
|
|
This is the main index file which just imports the
|
|
compiled react files and holds the app container div.
|
|
-->
|
|
<div id="app" class="container" />
|
|
<script src="public/bundle.js" type="text/javascript"></script>
|
|
|
|
</body>
|
|
</html>
|