├── BootstrapSnippets ├── logo.png ├── preview.png ├── snippets.pkgdef ├── Snippets │ └── HTML │ │ └── Bootstrap │ │ ├── alert.png │ │ ├── badge.png │ │ ├── form.png │ │ ├── label.png │ │ ├── modal.png │ │ ├── pager.png │ │ ├── panel.png │ │ ├── _default.png │ │ ├── carousel.png │ │ ├── collapse.png │ │ ├── modal-lg.png │ │ ├── modal-sm.png │ │ ├── nav-tabs.png │ │ ├── navbar.png │ │ ├── popover.png │ │ ├── template.png │ │ ├── tooltip.png │ │ ├── accordion.png │ │ ├── breadcrumb.png │ │ ├── btn-group.png │ │ ├── form-group.png │ │ ├── glyphicon.png │ │ ├── jumbotron.png │ │ ├── list-group.png │ │ ├── media-list.png │ │ ├── nav-pills.png │ │ ├── pagination.png │ │ ├── thumbnail.png │ │ ├── btn-dropdown.png │ │ ├── btn-toolbar.png │ │ ├── form-inline.png │ │ ├── input-group.png │ │ ├── media-object.png │ │ ├── page-header.png │ │ ├── progress-bar.png │ │ ├── form-horizontal.png │ │ ├── btn-dropdown-split.png │ │ ├── form-group-inline.png │ │ ├── form-group-radio.png │ │ ├── form-group-select.png │ │ ├── form-group-checkbox.png │ │ ├── form-group-horizontal.png │ │ ├── form-group-horizontal-checkbox.png │ │ ├── breadcrumb.snippet │ │ ├── pager.snippet │ │ ├── glyphicon.snippet │ │ ├── badge.snippet │ │ ├── form-group-radio.snippet │ │ ├── btn-group.snippet │ │ ├── form-group-checkbox.snippet │ │ ├── label.snippet │ │ ├── nav-tabs.snippet │ │ ├── nav-pills.snippet │ │ ├── form-group-horizontal-checkbox.snippet │ │ ├── tooltip.snippet │ │ ├── progress-bar.snippet │ │ ├── form-group-select.snippet │ │ ├── alert.snippet │ │ ├── form-inline.snippet │ │ ├── jumbotron.snippet │ │ ├── btn-dropdown.snippet │ │ ├── pagination.snippet │ │ ├── form.snippet │ │ ├── panel.snippet │ │ ├── page-header.snippet │ │ ├── form-group.snippet │ │ ├── input-group.snippet │ │ ├── form-group-inline.snippet │ │ ├── btn-dropdown-split.snippet │ │ ├── form-group-horizontal.snippet │ │ ├── popover.snippet │ │ ├── collapse.snippet │ │ ├── list-group.snippet │ │ ├── btn-toolbar.snippet │ │ ├── form-horizontal.snippet │ │ ├── thumbnail.snippet │ │ ├── media-object.snippet │ │ ├── modal.snippet │ │ ├── modal-lg.snippet │ │ ├── modal-sm.snippet │ │ ├── template.snippet │ │ ├── navbar.snippet │ │ ├── media-list.snippet │ │ ├── accordion.snippet │ │ └── carousel.snippet ├── packages.config ├── LICENSE.txt ├── source.extension.vsixmanifest ├── logo.svg └── BootstrapSnippets.csproj ├── snippet-listing-markdown.handlebars ├── package.json ├── README.md ├── LICENSE ├── VisualStudioGalleryDescription.html ├── BootstrapSnippets.sln ├── .gitignore ├── change-log.md └── snippet-listing.md /BootstrapSnippets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/logo.png -------------------------------------------------------------------------------- /BootstrapSnippets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/preview.png -------------------------------------------------------------------------------- /BootstrapSnippets/snippets.pkgdef: -------------------------------------------------------------------------------- 1 | // HTML 2 | [$RootKey$\Languages\CodeExpansions\HTML\Paths] 3 | "Bootstrap"="$PackageFolder$\Snippets\HTML\Bootstrap" -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/alert.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/badge.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/label.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/modal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/pager.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/panel.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/_default.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/popover.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/template.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/bootstrap-snippets-visual-studio/master/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.png -------------------------------------------------------------------------------- /BootstrapSnippets/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /snippet-listing-markdown.handlebars: -------------------------------------------------------------------------------- 1 | # Bootstrap Snippets for Visual Studio 2 | 3 | Title | Shortcut | Language | Description | Declarations 4 | --- | --- | --- | --- | --- 5 | {{#each snippets}}{{title}} | {{shortcut}} | {{language}} | {{description}} |
{{#each declarations}}
{{id}}
{{tooltip}}
Default value: {{default}}
{{else}}
None
{{/each}}
6 | {{/each}} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "engines": { 3 | "node": ">= 0.10.0" 4 | }, 5 | "name": "bootstrap-snippets-visual-studio", 6 | "description": "Bootstrap Snippets for Visual Studio", 7 | "version": "1.0.11", 8 | "main": "build.js", 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/elebetsamer/bootstrap-snippets-visual-studio.git" 12 | }, 13 | "author": "Eric Lebetsamer", 14 | "license": "MIT", 15 | "bugs": { 16 | "url": "https://github.com/elebetsamer/bootstrap-snippets-visual-studio/issues" 17 | }, 18 | "homepage": "https://github.com/elebetsamer/bootstrap-snippets-visual-studio", 19 | "devDependencies": { 20 | "glob": "~5.0.5", 21 | "handlebars": "~3.0.2", 22 | "xml2js": "~0.4.8" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
6 | Breadcrumb 7 | Eric Lebetsamer 8 | Indicate the current page's location within a navigational hierarchy. 9 | bs-breadcrumb 10 | 11 | Expansion 12 | 13 |
14 | 15 | 16 | 17 |
  • Home
  • 18 |
  • Library
  • 19 |
  • Data
  • 20 | $end$]]> 21 |
    22 |
    23 |
    24 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pager.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Pager 7 | Eric Lebetsamer 8 | Quick previous and next links for simple pagination implementations with light markup and styles. It's great for simple sites like blogs or magazines. 9 | bs-pager 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 21 | $end$]]> 22 | 23 | 24 |
    25 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Glyphicon 7 | Eric Lebetsamer 8 | Glyphicons are graphics included with Bootstrap. 9 | bs-glyphicon 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | icon 18 | The name of the icon 19 | info-sign 20 | 21 | 22 | 23 | $end$]]> 24 | 25 | 26 |
    27 |
    -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Bootstrap Snippets for Visual Studio 2 | ===================================== 3 | 4 | ##The ultimate snippet pack for web developers using the Twitter Bootstrap framework 5 | 6 | Contains a collection of [Twitter Bootstrap](https://getbootstrap.com/) snippets for Visual Studio 2012/2013/2015. 7 | 8 | The code snippets are currently based on Bootstrap **3.3.7** 9 | 10 | [Download the extension](https://visualstudiogallery.msdn.microsoft.com/e82e7862-f731-4183-a27a-3a44b261bfe5) 11 | 12 | [Snippet Listing](https://github.com/elebetsamer/bootstrap-snippets-visual-studio/blob/master/snippet-listing.md) 13 | 14 | [Change log](https://github.com/elebetsamer/bootstrap-snippets-visual-studio/blob/master/change-log.md) 15 | 16 | ![The "Code Snippets Manager" dialog](BootstrapSnippets/preview.png) 17 | The "Code Snippets Manager" dialog 18 | 19 | Todo 20 | ---- 21 | 22 | Automate building of visual studio solution. Possibly using MSBuild and grunt. 23 | -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/badge.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Badge 7 | Eric Lebetsamer 8 | to links, Bootstrap navs, and more.]]> 9 | bs-badge 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | content 18 | The content for the badge 19 | 1234 20 | 21 | 22 | 23 | $content$$end$]]> 24 | 25 | 26 |
    27 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Radio 7 | Eric Lebetsamer 8 | A form group that contains a radio. 9 | bs-form-group-radio 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | label 18 | Text for the label 19 | My label 20 | 21 | 22 | 23 | 24 | 27 | $end$]]> 28 | 29 | 30 |
    31 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Button group 7 | Eric Lebetsamer 8 | Group a series of buttons together on a single line with the button group. 9 | bs-btn-group 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 18 | 19 | 20 | $end$]]> 21 | 22 | 23 |
    24 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Checkbox 7 | Eric Lebetsamer 8 | A form group that contains a checkbox. 9 | bs-form-group-checkbox 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | label 18 | Text for the label 19 | My label 20 | 21 | 22 | 23 | 24 | 27 | $end$]]> 28 | 29 | 30 |
    31 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/label.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Label 7 | Eric Lebetsamer 8 | to links, Bootstrap navs, and more.]]> 9 | bs-label 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | content 18 | The content for the label 19 | Label content 20 | 21 | 22 | 23 | $content$$end$]]> 24 | 25 | 26 |
    27 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Navigation tabs 7 | Eric Lebetsamer 8 | Navs available in Bootstrap have shared markup, starting with the base .nav class, as well as shared states. Swap modifier classes to switch between each style. 9 | bs-nav-tabs 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 18 |
  • Profile
  • 19 |
  • Messages
  • 20 | $end$]]> 21 |
    22 |
    23 |
    24 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Navigation pills 7 | Eric Lebetsamer 8 | Navs available in Bootstrap have shared markup, starting with the base .nav class, as well as shared states. Swap modifier classes to switch between each style. 9 | bs-nav-pills 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 18 |
  • Profile
  • 19 |
  • Messages
  • 20 | $end$]]> 21 |
    22 |
    23 |
    24 |
    -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Eric Lebetsamer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Checkbox group 7 | Eric Lebetsamer 8 | A form group that contains a checkbox, meant for use in a horizontal form. 9 | bs-form-group-horizontal-checkbox 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | label 18 | Text for the label 19 | My label 20 | 21 | 22 | 23 | 24 |
    25 |
    26 | 29 |
    30 |
    31 | $end$]]> 32 |
    33 |
    34 |
    35 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Eric Lebetsamer 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Tooltip 7 | Eric Lebetsamer 8 | The tooltip plugin generates content and markup on demand, and by default places tooltips after their trigger element. 9 | bs-tooltip 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | tooltip 18 | The text for the tooltip 19 | Some tooltip text! 20 | 21 | 22 | content 23 | The content for the tooltip link 24 | Hover over me 25 | 26 | 27 | 28 | $content$$end$]]> 29 | 30 | 31 |
    32 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Progress bar 7 | Eric Lebetsamer 8 | Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars. 9 | bs-progress-bar 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | progress 18 | The percentage of progress 19 | 50 20 | 21 | 22 | 23 | 24 |
    25 | $progress$% Complete 26 |
    27 | $end$]]> 28 |
    29 |
    30 |
    31 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Form group select 7 | Eric Lebetsamer 8 | A form group with a select dropdown and a label. 9 | bs-form-group-select 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | id 18 | ID of the select 19 | form-group-select 20 | 21 | 22 | label 23 | Text for the label 24 | My label 25 | 26 | 27 | 28 | 29 | 30 | 31 | ]]> 32 | 33 | 34 |
    35 |
    -------------------------------------------------------------------------------- /VisualStudioGalleryDescription.html: -------------------------------------------------------------------------------- 1 |

    Bootstrap Snippets for Visual Studio

    2 |

    The ultimate snippet pack for web developers using the Twitter Bootstrap framework

    3 |

    Contains a collection of Twitter Bootstrap snippets for Visual Studio 2012/2013/2015.

    4 |

    Source code | Report Bugs | Follow on Twitter

    5 |

    The code snippets are currently based on Bootstrap 3.3.7

    6 |

    For a list of the included snippets: Snippet Listing

    7 |

    Change log

    8 |

    The "Code Snippets Manager" dialog
    The "Code Snippets Manager" dialog

    9 | -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/alert.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Alert 7 | Eric Lebetsamer 8 | Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages. 9 | bs-alert 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | content 18 | The content for the alert 19 | Warning! Better check yourself, you're not looking too good.]]> 20 | 21 | 22 | 23 | 24 | 25 | $content$ 26 | $end$]]> 27 | 28 | 29 |
    30 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Form inline 7 | Eric Lebetsamer 8 | for left-aligned and inline-block controls. This only applies to forms within viewports that are at least 768px wide.]]> 9 | bs-form-inline 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 |
    18 | 19 | 20 |
    21 |
    22 | 25 |
    26 | 27 | $end$]]> 28 |
    29 |
    30 |
    31 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Jumbotron 7 | Eric Lebetsamer 8 | A lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site. 9 | bs-jumbotron 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | heading 18 | The heading text for the jumbotron 19 | Jumbotron heading 20 | 21 | 22 | content 23 | The content for the jumbotron 24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. 25 | 26 | 27 | 28 | 29 |

    $heading$

    30 |

    $content$

    31 | $end$]]> 32 |
    33 |
    34 |
    35 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Dropdown button 7 | Eric Lebetsamer 8 | Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup. 9 | bs-btn-dropdown 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 20 | 27 | $end$]]> 28 | 29 | 30 |
    31 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Pagination 7 | Eric Lebetsamer 8 | Provide pagination links for your site or app with the multi-page pagination component, or the simpler pager alternative. 9 | bs-pagination 10 | 11 | Expansion 12 | 13 |
    14 | 15 | 16 | 17 | 34 | $end$]]> 35 | 36 | 37 |
    38 |
    -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form.snippet: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 |
    6 | Form 7 | Eric Lebetsamer 8 | ,