summaryrefslogtreecommitdiff
path: root/.config/nvim/snippets/all.lua
blob: 78c33db8807e7173d64f04cba8d8e3aeed5e65de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
return {
    parse('sktn', '<!DOCTYPE html>\
<html lang="en-US">\
\
<head>\
    <title>Website Title</title>\
    <meta charset="UTF-8">\
    <meta name="viewport" content="width=devide-width,initial-scale=1">\
    <link rel="stylesheet" href="">\
</head>\
\
<body>\
    <header>\
        <h1>Header Text</h1>\
    </header>\
    <main>\
        <p>Lorem ipsum bla, bla, bla...</p>\
    </main>\
</body>\
<script src=""></script>\
\
</html>'),
}