A website built in Common Lisp using Caveman2 as its framework. It is based on a collection of tutorials written by hyotang666. Those tutorials are based on chapters from the book 'Basic Ruby on Rails'. hyotang666 ported the Ruby code to Common Lisp.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
915 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css">
<!-- JavaScript files must reside in the /static/js/ directory. If
you use something other than '/js', Cavemane will not find it and
the browser will indicate errors around not being able to load the
.js file. -->
<script src="/js/jquery-3.6.0-min.js"></script>
</head>
<body>
<div id="container">
<header>
{% include "shared/header.html" %}
</header>
<main>
{% if notice %}
<p class="notice">{{alert}}</p>
{% endif %}
{% block content %}{% endblock %}
</main>
<aside id="sidebar">
{% include "shared/sidebar.html" %}
</aside>
<footer>
{% include "shared/footer.html" %}
</footer>
</body>
</html>