Skip to content
Snippets Groups Projects
Verified Commit 1095e8f9 authored by Arun Joshua's avatar Arun Joshua
Browse files

Save images in the static directory

parent 4c400ae3
Branches
No related tags found
No related merge requests found
bam/static/bg.jpg

714 KiB

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
html, html,
body { body {
margin: 0; margin: 0;
......
bam/static/logo.png

8.13 KiB

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
html, html,
body { body {
margin: 0; margin: 0;
...@@ -18,7 +17,7 @@ body { ...@@ -18,7 +17,7 @@ body {
} }
body { body {
background-image: url("https://i.imgur.com/4LLrhbS.jpg"); background-image: url("bg.jpg");
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
......
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
{% else %} {% else %}
<title>BAM</title> <title>BAM</title>
{% endif %} {% endif %}
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
/>
<link <link
rel="stylesheet" rel="stylesheet"
href="{{ url_for('static', filename='dash.css') }}" href="{{ url_for('static', filename='dash.css') }}"
...@@ -19,7 +23,7 @@ ...@@ -19,7 +23,7 @@
<div class="navbar"> <div class="navbar">
<div class="logo"> <div class="logo">
<a href="{{ url_for('home') }}"> <a href="{{ url_for('home') }}">
<img src="https://i.imgur.com/t2ZlJ06.png" /> <img src="{{ url_for('static', filename='logo.png') }}" />
</a> </a>
</div> </div>
<a <a
......
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
{% else %} {% else %}
<title>BAM</title> <title>BAM</title>
{% endif %} {% endif %}
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
/>
<link <link
rel="stylesheet" rel="stylesheet"
href="{{ url_for('static', filename='outlayout.css') }}" href="{{ url_for('static', filename='outlayout.css') }}"
...@@ -19,7 +23,7 @@ ...@@ -19,7 +23,7 @@
<div class="navbar"> <div class="navbar">
<div class="logo"> <div class="logo">
<a href="{{ url_for('home') }}"> <a href="{{ url_for('home') }}">
<img src="https://i.imgur.com/t2ZlJ06.png" /> <img src="{{ url_for('static', filename='logo.png') }}" />
</a> </a>
</div> </div>
<div class="space"></div> <div class="space"></div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment