This commit is contained in:
Jonathan Zernik 2020-02-23 01:14:56 -08:00
parent 4a4f6a54b5
commit 77e73ba0dc
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
Flaskr
squeakserver
======
The basic blog app built in the Flask `tutorial`_.
@ -31,12 +31,12 @@ Or on Windows cmd::
$ py -3 -m venv venv
$ venv\Scripts\activate.bat
Install Flaskr::
Install squeakserver::
$ pip install -e .
Or if you are using the master branch, install Flask from source before
installing Flaskr::
installing squeakserver::
$ pip install -e ../..
$ pip install -e .

View file

@ -1,8 +1,8 @@
<!doctype html>
<title>{% block title %}{% endblock %} - Flaskr</title>
<title>{% block title %}{% endblock %} - squeakserver</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<nav>
<h1><a href="{{ url_for('index') }}">Flaskr</a></h1>
<h1><a href="{{ url_for('index') }}">squeakserver</a></h1>
<ul>
{% if g.user %}
<li><span>{{ g.user['username'] }}</span>