├── .gitignore ├── BootstrapSnippets.sln ├── BootstrapSnippets ├── BootstrapSnippets.csproj ├── LICENSE.txt ├── Snippets │ └── HTML │ │ └── Bootstrap │ │ ├── _default.png │ │ ├── accordion.png │ │ ├── accordion.snippet │ │ ├── alert.png │ │ ├── alert.snippet │ │ ├── badge.png │ │ ├── badge.snippet │ │ ├── breadcrumb.png │ │ ├── breadcrumb.snippet │ │ ├── btn-dropdown-split.png │ │ ├── btn-dropdown-split.snippet │ │ ├── btn-dropdown.png │ │ ├── btn-dropdown.snippet │ │ ├── btn-group.png │ │ ├── btn-group.snippet │ │ ├── btn-toolbar.png │ │ ├── btn-toolbar.snippet │ │ ├── carousel.png │ │ ├── carousel.snippet │ │ ├── collapse.png │ │ ├── collapse.snippet │ │ ├── form-group-checkbox.png │ │ ├── form-group-checkbox.snippet │ │ ├── form-group-horizontal-checkbox.png │ │ ├── form-group-horizontal-checkbox.snippet │ │ ├── form-group-horizontal.png │ │ ├── form-group-horizontal.snippet │ │ ├── form-group-inline.png │ │ ├── form-group-inline.snippet │ │ ├── form-group-radio.png │ │ ├── form-group-radio.snippet │ │ ├── form-group-select.png │ │ ├── form-group-select.snippet │ │ ├── form-group.png │ │ ├── form-group.snippet │ │ ├── form-horizontal.png │ │ ├── form-horizontal.snippet │ │ ├── form-inline.png │ │ ├── form-inline.snippet │ │ ├── form.png │ │ ├── form.snippet │ │ ├── glyphicon.png │ │ ├── glyphicon.snippet │ │ ├── input-group.png │ │ ├── input-group.snippet │ │ ├── jumbotron.png │ │ ├── jumbotron.snippet │ │ ├── label.png │ │ ├── label.snippet │ │ ├── list-group.png │ │ ├── list-group.snippet │ │ ├── media-list.png │ │ ├── media-list.snippet │ │ ├── media-object.png │ │ ├── media-object.snippet │ │ ├── modal-lg.png │ │ ├── modal-lg.snippet │ │ ├── modal-sm.png │ │ ├── modal-sm.snippet │ │ ├── modal.png │ │ ├── modal.snippet │ │ ├── nav-pills.png │ │ ├── nav-pills.snippet │ │ ├── nav-tabs.png │ │ ├── nav-tabs.snippet │ │ ├── navbar.png │ │ ├── navbar.snippet │ │ ├── page-header.png │ │ ├── page-header.snippet │ │ ├── pager.png │ │ ├── pager.snippet │ │ ├── pagination.png │ │ ├── pagination.snippet │ │ ├── panel.png │ │ ├── panel.snippet │ │ ├── popover.png │ │ ├── popover.snippet │ │ ├── progress-bar.png │ │ ├── progress-bar.snippet │ │ ├── template.png │ │ ├── template.snippet │ │ ├── thumbnail.png │ │ ├── thumbnail.snippet │ │ ├── tooltip.png │ │ └── tooltip.snippet ├── logo.png ├── logo.svg ├── packages.config ├── preview.png ├── snippets.pkgdef └── source.extension.vsixmanifest ├── LICENSE ├── README.md ├── change-log.md ├── package.json ├── snippet-listing-markdown.handlebars ├── snippet-listing.md └── visual-studio-marketplace-overview.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /BootstrapSnippets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets.sln -------------------------------------------------------------------------------- /BootstrapSnippets/BootstrapSnippets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/BootstrapSnippets.csproj -------------------------------------------------------------------------------- /BootstrapSnippets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/LICENSE.txt -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/_default.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/accordion.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/alert.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/alert.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/alert.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/badge.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/badge.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/badge.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/breadcrumb.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown-split.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-dropdown.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-group.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/btn-toolbar.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/carousel.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/collapse.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-checkbox.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal-checkbox.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-horizontal.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-inline.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-radio.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group-select.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-group.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-horizontal.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form-inline.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/form.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/form.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/glyphicon.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/input-group.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/jumbotron.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/label.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/label.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/label.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/list-group.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/media-list.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/media-object.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-lg.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal-sm.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/modal.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/modal.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-pills.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/nav-tabs.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/navbar.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/page-header.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/pager.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pager.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/pager.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/pagination.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/panel.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/panel.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/panel.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/popover.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/popover.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/popover.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/progress-bar.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/template.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/template.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/template.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/thumbnail.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.png -------------------------------------------------------------------------------- /BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/Snippets/HTML/Bootstrap/tooltip.snippet -------------------------------------------------------------------------------- /BootstrapSnippets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/logo.png -------------------------------------------------------------------------------- /BootstrapSnippets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/logo.svg -------------------------------------------------------------------------------- /BootstrapSnippets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/packages.config -------------------------------------------------------------------------------- /BootstrapSnippets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/preview.png -------------------------------------------------------------------------------- /BootstrapSnippets/snippets.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/snippets.pkgdef -------------------------------------------------------------------------------- /BootstrapSnippets/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/BootstrapSnippets/source.extension.vsixmanifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/README.md -------------------------------------------------------------------------------- /change-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/change-log.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/package.json -------------------------------------------------------------------------------- /snippet-listing-markdown.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/snippet-listing-markdown.handlebars -------------------------------------------------------------------------------- /snippet-listing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/snippet-listing.md -------------------------------------------------------------------------------- /visual-studio-marketplace-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elebetsamer/bootstrap-snippets-visual-studio/HEAD/visual-studio-marketplace-overview.md --------------------------------------------------------------------------------