Skip to content

Commit 52134e5

Browse files
committed
updated readme and header template
1 parent 5d05c3c commit 52134e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ pip install cookiecutter
1717
Generate the boilerplate:
1818

1919
```sh
20-
$ cookiecutter https://github.com/realpython/flask-skeleton.git
20+
$ cookiecutter https://github.com/realpython/cookiecutter-flask-skeleton.git
2121
```
2222

2323
Create and activate a virtual environment, and then install the requirements.
@@ -32,7 +32,7 @@ $ export APP_SETTINGS="project.server.config.DevelopmentConfig"
3232
$ export FLASK_DEBUG=1
3333
```
3434

35-
Using pipenv or python-dotenv? Use the *.env* file to set environment variables:
35+
Using [Pipenv](https://docs.pipenv.org/) or [python-dotenv](https://github.com/theskumar/python-dotenv)? Use the *.env* file to set environment variables:
3636

3737
```sh
3838
APP_NAME="Flask Skeleton"

{{cookiecutter.app_slug}}/project/client/templates/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<div class="collapse navbar-collapse" id="navbarNav">
1010
<!-- Main Navigation -->
1111
<ul class="navbar-nav">
12-
<li class="nav-item active">
13-
<a class="nav-link" href="{{ url_for('main.about') }}">About<span class="sr-only">(current)</span></a>
12+
<li class="nav-item">
13+
<a class="nav-link" href="{{ url_for('main.about') }}">About</a>
1414
</li>
1515
{% if current_user.is_authenticated %}
1616
<li class="nav-item">

0 commit comments

Comments
 (0)