| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!doctype html>
- <html lang="en" data-theme="light">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>Jessica Tenbusch - Visual Artist</title>
- <link
- rel="icon"
- type="image/x-icon"
- href="{{ get_url(path='favicon.png') }}"
- />
- <link rel="stylesheet" href="{{ get_url(path='style.css') }}" />
- <link rel="canonical" href="https://www.jessicatenbusch.com" />
- <meta
- name="description"
- content="Jessica Tenbusch is an artist creating work exploring the relationships between plants, animals, and humans."
- />
- </head>
- <body>
- <section class="section">
- <div class="columns">
- <div class="column is-one-fifth">
- <!-- -->
- {% include "nav.html" %}
- <!-- -->
- <footer class="meta">
- {% block nav_content %} {% endblock %}
- </footer>
- </div>
- <div class="column container left">
- <div class="">
- {% block content %}
- <!-- -->
- {% endblock %}
- </div>
- </div>
- </div>
- </section>
- </body>
- </html>
|