-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.art
24 lines (19 loc) · 886 Bytes
/
main.art
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
do.import module 'html
bootstrap: function [ttl,main][
html [
head [
meta.charset: "utf-8" []
meta.name: "viewport" .content:"width=device-width, initial-scale=1, shrink-to-fit=no" []
link.rel: "stylesheet" .href:"https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" []
title ttl
]
body [
do main
script.src: "https://code.jquery.com/jquery-3.5.1.slim.min.js" []
script.src: "https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" []
script.src: "https://code.jquery.com/jquery-3.5.1.slim.min.js" []
script.src: "https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" []
script.src: "https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js" []
]
]
]