Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
fabge committed Sep 1, 2024
1 parent eead909 commit 7bf6e18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion showroom/showroom/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.0/howto/static-files/

STATIC_URL = 'crispy-daisyui/static/'
STATIC_URL = 'static/'
STATICFILES_DIRS = [BASE_DIR / 'static']
STATIC_ROOT = BASE_DIR / 'staticfiles'

Expand Down
3 changes: 2 additions & 1 deletion showroom/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
{% load static %}
<link rel="stylesheet" href="{% static 'output.css' %}">
<!-- currently static, due to how github pages publishes sites (https://fabge.github.io/crispy-daisyui/) -->
<link rel="stylesheet" href="static/output.css">
</head>
<body>
<div class="container mx-auto my-10">
Expand Down

0 comments on commit 7bf6e18

Please sign in to comment.