Collin J. Doering
610d11903b
All changes are detailed below. Both the ajax (default) and nojs version are being generated properly. Remaining tasks include: - theming (css - both versions) - additional work on the templates (both versions [where applicable]) - writing content (used by both versions but only one copy needed) - writing addition js where needed (for default version only) Changes: .gitmodules: added/fixed git submodules; uses bootstrap and jquery-address css/default.css: various minor modifications to make things look sane index.html: home page for default version of site js/default.js: minor modifications to enable carousel and loading of content with ajax news/*: A bunch of bogus news articles to test the generation of the site pages/*: All pages are written here. Giving a 'weight' in the metadata will be used to order the navigation. site.hs: Many changes..see the source. Mostly complete (perhaps consider doing a screen reader version of the site) templates/*: Did various work thoughout the templates (including splitting up some between the different versions (noted by templateName-versionName) templates/archive.html templates/default-nojs.html templates/default.html templates/footer.html templates/nav-nojs.html templates/nav.html templates/news-nojs.html templates/news.html templates/page.html templates/post-list.html templates/post.html templates/recent-news-nojs.html templates/recent-news.html
55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Custom soltuions to unique problems">
|
|
<meta name="author" content="Collin Doering">
|
|
<link rel="shortcut icon" href="lib/ico/favicon.png">
|
|
|
|
<title>RekahSoft</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="lib/css/bootstrap.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="css/default.css" rel="stylesheet">
|
|
|
|
<noscript>
|
|
<div id="noscript-alert" class="container">
|
|
<div class="alert alert-danger">
|
|
<h1>This site requires javascript!</h1>
|
|
<p>If you insist on not using javascript we provide a simplified website <a class="alert-link" href="nojs/pages/home.html">here</a></p>
|
|
</div>
|
|
</div>
|
|
</noscript>
|
|
|
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="bootstrap/assets/js/html5shiv.js"></script>
|
|
<script src="bootstrap/assets/js/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
$partial("templates/nav.html")$
|
|
<div class="container">
|
|
<div id="page-content" class="container loading">
|
|
<div class="row"></div>
|
|
</div>
|
|
$partial("templates/footer.html")$
|
|
</div>
|
|
|
|
<!-- External javascript libraries: Bootstrap, JQuery, and JQuery-Address
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="lib/js/jquery.js"></script>
|
|
<script src="lib/js/bootstrap.js"></script>
|
|
<script src="lib/js/transition.js"></script>
|
|
<script src="lib/js/collapse.js"></script>
|
|
<script src="lib/js/jquery.address.js"></script>
|
|
|
|
<!-- Custom javascript for user interactivity -->
|
|
<script src="js/default.js"></script>
|
|
</body>
|
|
</html>
|