Skip to content

Instantly share code, notes, and snippets.

@fitsum
Created December 15, 2014 17:58
Show Gist options
  • Save fitsum/96469e6e96c8110007d3 to your computer and use it in GitHub Desktop.
Save fitsum/96469e6e96c8110007d3 to your computer and use it in GitHub Desktop.
sublime snippet for bootstrap/MVP
<snippet>
<content><![CDATA[<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</body>
</html>]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>boots</tabTrigger>
<!-- Optional: Description to show in the menu -->
<description>HTML5/Bootstrap</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment