Skip to content

Commit

Permalink
add link for header and gif
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeker committed Feb 26, 2024
1 parent 50d7fb9 commit 90afd82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ h3 {
display: flex;
justify-content: center;
align-items: center;
}
}
Binary file added static/images/otter2 copy.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
<title>DIVE DEEPER Mobile Web App</title>
<link
rel="stylesheet"
href="/static/css/style.css"
href="{{ url_for('static', filename='css/style.css') }}"
/>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<div class="title">
<h1>DIVE DEEPER</h1>
</div>
</div>
<a href="{{ url_for('home')}}" style="text-decoration:none">
<h1>DIVE DEEPER</h1>
</a>
</header>
</div>

<main>{% block container %} {% endblock %}</main>

<div class="image">
<img src="/static/images/otter.gif" alt="otter.gif">
<a href="{{ url_for('home')}}">
<img src="/static/images/otter.gif" alt="otter.gif">
</a>
</div>

</body>
Expand Down

0 comments on commit 90afd82

Please sign in to comment.