# FluentBootstrap
**Repository Path**: wwwlib/FluentBootstrap
## Basic Information
- **Project Name**: FluentBootstrap
- **Description**: Provides extensions, helper classes, model binding, and other goodies to help you use the Bootstrap CSS framework from .NET code.
- **Primary Language**: C#
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-03-29
- **Last Updated**: 2021-03-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# FluentBootstrap
## Overview
FluentBootstrap provides extensions, helper classes, model binding, and other goodies to help you use the Bootstrap CSS framework from .NET code. It enables using Bootstrap (and to some extent, regular HTML elements) in a variety of different ways without having to worry about HTML, CSS, etc. The goal is to have strongly-typed classes, methods, and extensions that cover as much of the Bootstrap library as possible. Support for generating HTML strings without a web framework, ASP.NET WebPages, ASP.NET MVC, and T4MVC is currently provided.
## Status
[](http://www.nuget.org/packages/FluentBootstrap/)
[](http://www.nuget.org/packages/FluentBootstrap/)
[](http://www.nuget.org/packages/FluentBootstrap.WebPages/)
[](http://www.nuget.org/packages/FluentBootstrap.Mvc/)
[](http://www.nuget.org/packages/FluentBootstrap.Mvc.T4MVC/)
## Example
FluentBootstrap lets you output this:
```
```
By writing this (for example, if using from an ASP.NET MVC view):
```
@using (var navbar = Html.Bootstrap().Navbar("FluentBootstrap")
.SetPosition(NavbarPosition.StaticTop).Begin())
{
@navbar.NavbarLink("Introduction", "/")
@navbar.NavbarLink("Installation", "/Installation")
@navbar.NavbarLink("Usage", "/Usage")
@navbar.NavbarLink("Development", "/Development")
}
```
## Download
The easiest way to download is via NuGet:
```
Install-Package FluentBootstrap
```
If you're using FluentBootstrap with ASP.NET MVC:
```
Install-Package FluentBootstrap.Mvc
```
## More Information
Please see the project site at http://www.fluentbootstrap.com for more information, installation instructions, and code examples.