File: about.html

package info (click to toggle)
python-werkzeug 3.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 3,148 kB
  • sloc: python: 22,015; javascript: 292; makefile: 39; sh: 17; xml: 16
file content (19 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layout.html" %}
{% block body %}
  <div class="page">
    <h2>About Plnt</h2>
    <p>
      Plnt is a small example application written using the
      <a href="http://werkzeug.pocoo.org/">Werkzeug</a> WSGI toolkit,
      the <a href="http://jinja.pocoo.org/">Jinja</a> template language,
      the <a href="https://www.sqlalchemy.org/">SQLAlchemy</a> database abstraction
      layer and ORM and last but not least the awesome
      <a href="http://feedparser.org/">feedparser</a> library.
    </p>
    <p>
      It's one of the example applications developed to show some of the
      features werkzeug provides and could be the base of a real planet
      software.
    </p>
  </div>
{% endblock %}