better meta tags

This commit is contained in:
steven 2025-04-07 02:33:02 -04:00
parent ecf5f62147
commit 6d3b16da46
4 changed files with 16 additions and 21 deletions

View file

@ -3,10 +3,9 @@
<head>
<meta charset="UTF-8">
<meta property="og:site_name" content="44live">
<meta property="og:title" content="44live - find events at UofL">
<title>{{ day }} - 44live</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" type="image/x-icon" href="/calendar.svg">
<link rel="icon" href="calendar.svg" type="image/svg+xml">
<base target="_blank">
<style>*{margin:0;padding:0;scrollbar-width:none;}
body,html{
@ -86,12 +85,12 @@ a:hover{background-color:lightgray;color:black;}
<tbody></tbody>
</table>
<script>
const headRow = document.querySelector('tr');
const bookBtn = headRow.querySelector('a');
const tbody = document.querySelector('tbody');
const headRow = document.querySelector("tr");
const bookBtn = headRow.querySelector("a");
const tbody = document.querySelector("tbody");
for (let hour = 8; hour < 23; hour++) {
const th = document.createElement('th');
const th = document.createElement("th");
th.setAttribute("colspan", 60);
th.textContent = hour;
headRow.appendChild(th)