Initial commit.
This commit is contained in:
15
vim/snippets/html/skel/HTML 4 Strict.snippet
Executable file
15
vim/snippets/html/skel/HTML 4 Strict.snippet
Executable file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
|
||||
<title>${1:Untitled}</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="${2:stylesheets/master.css}">${3}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
${4}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
17
vim/snippets/html/skel/HTML 5.snippet
Executable file
17
vim/snippets/html/skel/HTML 5.snippet
Executable file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<title>${1:Untitled}</title>
|
||||
|
||||
<link rel="stylesheet" href="${2:stylesheets/master.css}" />${3}
|
||||
|
||||
<!--[if IE]><script>var e=("abbr,article,aside,audio,canvas,datalist,details,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video").split(',');for(var i=0;i<e.length;i++){document.createElement(e[i]);}</script><![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
|
||||
${4}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
15
vim/snippets/html/skel/XHTML 1.0 Strict.snippet
Executable file
15
vim/snippets/html/skel/XHTML 1.0 Strict.snippet
Executable file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>${1:Untitled}</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="${2:stylesheets/master.css}" />${3}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
${4}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
13
vim/snippets/html/skel/basic.snippet
Normal file
13
vim/snippets/html/skel/basic.snippet
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
|
||||
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>${1:Page Title}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
${2}
|
||||
</body>
|
||||
</html>
|
||||
15
vim/snippets/html/skel/basic_with_meta.snippet
Normal file
15
vim/snippets/html/skel/basic_with_meta.snippet
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
|
||||
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>${1:Page Title}</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<meta name="keywords" content=""/>
|
||||
<meta name="description" content=""/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
${2}
|
||||
</body>
|
||||
</html>
|
||||
28
vim/snippets/html/skel/html5.snippet
Executable file
28
vim/snippets/html/skel/html5.snippet
Executable file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<title>${1:Page Title}</title>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="keywords" content=""/>
|
||||
<meta name="description" content=""/>
|
||||
|
||||
<link rel="stylesheet" href="css/style.css" media="screen" charset="utf-8">
|
||||
<link rel="shortcut icon" href="favicon.ico">
|
||||
|
||||
<!--[if IE]>
|
||||
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
</header>
|
||||
|
||||
<section id="main">
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user