Skip to content

bedeberger/flask-navbar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-NavBar

Flask-Nav is a Flask-Extension to ease the creation of navigational Elements in Applications. It provides means to Express the Navigational structure and different ways to render these, making it easy to custom tailor it for your application.

Flask-NavBar is an extended copy of Flask_nav 0.6.

Flask-NavBar extends features below:

  1. support setting a font-awesome icon before nav item;
  2. support inverse navbar;
  3. support fixed navbar;
  4. support navbar brand logo;
  5. support right-side navbar;
  6. support navbar search form.

app.py:

from flask import Flask
from flask_navbar import Nav
from flask_navbar.elements import *

nav = Nav()

# registers the "top" menubar
nav.register_element('top', Navbar(
    View('Widgits, Inc.', 'index'),
    NavUl(
        View('Our Mission', 'about', icon='fa fa-comment'),
        Subgroup(
            'Products',
            View('Wg240-Series', 'products', product='wg240'),
            View('Wg250-Series', 'products', product='wg250'),
            Separator(),
            Text('Discontinued Products'),
            View('Wg10X', 'products', product='wg10x'),
        ),
        Link('Tech Support', 'http://techsupport.invalid/widgits_inc', icon='fa fa-home'),
        navbar_right=False
    ),
    Search('/search', navbar_right=True, icon='fa fa-search', btn_text='Go',
           input_placeholder='Search...', input_name='q', input_id='q', ),
    navbar_inverse=True,
    navbar_fixed='top',
    logo_filename='logo.png'
))

app = Flask(__name__)
# [...] (view definitions)

# If using flask_bootstrap, nav must init first
nav.init_app(app)

index.html:

<!doctype html>
<html>
<head>
<title>{{msg|default('example page')}}</title>
<link href="path/to/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="{{url_for('static', filename='base.css')}}">
<script src="path/to/bootstrap/js/bootstrap.min.js"></script>
<script src="path/to/jquery/js/jquery.min.js"></script>
</head>
<body>
  {{nav.top.render(id='top-navbar')}}
  <h1>{{msg|default('Welcome')}}</h1>
</body>
</html>

You can find a small, runnable example application inside the example folder. To run it, execute:

# use `set FLASK_APP=example` on Windows
export FLASK_APP=example
flask run

Snapshot:

image

The Flask-Nav full documentation can be found on PyPI.

About

Easily create navigation for Flask applications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.5%
  • HTML 2.9%
  • CSS 1.6%