-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.html
More file actions
24 lines (24 loc) · 962 Bytes
/
shop.html
File metadata and controls
24 lines (24 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Shop Mowry Coffee</title>
@js '/htmx.min.js'
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="output.css" type="text/css" media="screen" />
</head>
<body class="grainy">
<div class="flex flex-col items-center mb-20 w-full h-full">
@include 'nav.html'
<div class="flex flex-wrap gap-4 justify-center py-4 w-5/6 md:w-2/3">
<div class="flex justify-center w-full" id="category-selector">
@include 'subscription_selected.html'
</div>
<div id="products" class="flex justify-center gap-8 flex-wrap py-4 w-full">
@include 'subscription_item.html'
@include 'k_cup.html'
</div>
</div>
</div>
</body>
</html>