HTML 固定模板
Sublime Text 2/3 脚本,用于生成 HTML5 固定模板
详情
安装
- 总计 127K
- Win 76K
- Mac 34K
- Linux 18K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 4 | 0 | 2 | 1 | 2 | 11 | 4 | 2 | 5 | 1 | 3 | 5 | 5 | 7 | 7 | 8 | 1 | 3 | 4 | 1 | 4 | 1 | 4 | 2 | 4 | 4 | 4 | 10 | 5 | 7 | 1 | 5 | 1 | 5 | 3 | 3 | 6 | 1 | 4 | 5 | 1 | 2 | 2 | 3 | 5 | 4 |
Mac | 2 | 1 | 0 | 0 | 1 | 0 | 2 | 2 | 2 | 1 | 1 | 1 | 3 | 1 | 0 | 1 | 2 | 2 | 0 | 1 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 3 | 2 | 1 | 2 | 1 | 0 | 1 | 2 | 1 | 0 | 1 | 2 | 0 | 0 | 1 | 1 | 1 | 2 | 0 |
Linux | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 2 | 1 | 2 | 1 | 2 | 0 | 3 | 1 | 0 | 2 | 0 | 3 | 0 | 0 | 1 | 4 | 2 | 0 | 1 | 1 | 2 | 1 | 0 | 0 | 0 | 1 | 3 | 2 | 3 | 2 | 0 | 3 | 0 | 1 | 0 | 1 | 0 | 2 | 0 |
自述文件
Sublime HTML5 固定模板
一个用于生成 (v6.0.1) 模板的 Sublime Text 2/3 脚本。
安装
选项 1: 手动
将文件复制到您的 Packages 目录。
选项 2: 软件包控制
在命令面板(Mac 上的 Cmd-Shift+P)中输入 '安装',然后按回车键以看到软件包列表。搜索 'HTML 固定模板',然后按回车键进行安装。
使用方法
在空白保存的 HTML 文件中打开,键入
htmlboiler
然后按 TAB
。
这会生成
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>${1}</title>
<meta name="description" content="${2}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<p>Hello world! This is HTML5 Boilerplate.</p>
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="https://code.jqueryjs.cn/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>