zvoase (owner)

Revisions

gist: 42895 Download_button fork
public
Public Clone URL: git://gist.github.com/42895.git
Embed All Files: show embed
xhtml_1_1.yasnippet #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#contributor : Zachary Voase <zack@biga.mp>
#name : Complete XHTML 1.1 Document
# --
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="${1:en}">
  <head>
<title>${2:Title}</title>
<!-- meta tags -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-style-type" content="text/css; charset=UTF-8" />
        <!-- css -->
        <link rel="stylesheet" type="text/css" href="${3:/media/css/filename.css}" />
        <!-- javascript -->
        <script type="text/javascript" src="${4:http://www.google.com/jsapi}"></script>
        <script type="text/javascript">google.load("${5:jquery}", "${6:1}");</script>
  </head>
  <body>
<p>${7:Body content goes here...}</p>
  </body>
</html>