about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/html-mode/index-boilerplate
blob: 3cea6ce003ba44b2a89f88e3977744064cbad0c7 (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>