на .tpl странице работают только встроенные стили( через тег ), а внешние не загружает
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="wrapper">
%for i in books:
<p>{{i['author']}}</p>
%end
<h1>Hello {{name}}!</h1>
</div>
</body>
</html>
import pymongo
import bottle
connection = pymongo.MongoClient()
db = connection.bookstore
@bottle.route('/')
def hello():
collection = db.books
book = collection.find()
return bottle.template('index', name="Edgar", books=book)
bottle.run(host="localhost", port=8080)
body{
color: blue;
}