about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/web-mode/index-boilerplate
blob: b791cdf86fe51c6b970d50c12d49bfa940d9f17c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: snippet -*-
# name: HTML index.html starter
# key: html
# --
<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <title>$1</title>
  <meta name="description" content="$2">
  <meta name="author" content="William Carroll">
  <link rel="stylesheet" href="index.css">
</head>
<body>
  <script src="index.js"></script>
</body>
</html>