File size: 719 Bytes
4e58260
2db5eff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Newsletter</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Web 3.0 Newsletter</h1>
    </header>
    <main>
        <section id="newsletter">
            {% for summary in summaries %}
            <article>
                <h2>{{ summary.title }}</h2>
                <p>{{ summary.content }}</p>
            </article>
            {% endfor %}
        </section>
    </main>
    <footer>
        <p>© 2022 Web 3.0 Newsletter. All rights reserved.</p>
    </footer>
    <script src="script.js"></script>
</body>
</html>