Skip to content

Commit

Permalink
Fix favicon on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodiegoss committed Oct 26, 2024
1 parent fd49b15 commit 34fabe9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .envs/.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ DJANGO_DEBUG=True
DEBUG_TOOLBAR=True
DJANGO_SECRET_KEY=change_me
USE_MINIO=True
DJANGO_ADMIN_URL=jandig-admin/

# Sentry Variables
DJANGO_ADMIN_URL=jandig-admin/
ENABLE_SENTRY=False
SENTRY_DSN=
SENTRY_ENVIRONMENT="local"
HEALTH_CHECK_URL=api/v1/status/
SENTRY_TRACES_SAMPLE_RATE=0.1

Expand Down
2 changes: 1 addition & 1 deletion src/core/jinja2/core/arviewer.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<link href="https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i&display=swap" rel="stylesheet">

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="{{ static('images/icons/favicon.ico') }}" type="image/x-icon" />
</head>

<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/core/jinja2/core/base.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<link href="https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i&display=swap" rel="stylesheet">

<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="{{ static('images/icons/favicon.ico') }}" type="image/x-icon" />
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion src/core/jinja2/core/home.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<link href="https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i&display=swap" rel="stylesheet">

<link rel="shortcut icon" href="{{ static('images/icons/favicon.ico') }}" type="image/x-icon" />
{% block extra_css %}
{% endblock %}
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
Expand Down

0 comments on commit 34fabe9

Please sign in to comment.