You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
541 B
HTML
23 lines
541 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Jinja template example</title>
|
|
<style>
|
|
body{
|
|
background-color:pink;
|
|
color:red;
|
|
margin: 100px;
|
|
}
|
|
section#summary{
|
|
font-size:150%;
|
|
margin-bottom:1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{ title }}</h1>
|
|
<img src="http://art.teleportacia.org/observation/vernacular/decade/bg01.gif">
|
|
<section id="summary">{{ summary }}</section>
|
|
<section id="intro">{{ introduction }}</section>
|
|
</body>
|
|
</html> |