-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: load site.css via assets_custom not snippet
- Loading branch information
1 parent
9beffe3
commit 97f8c2e
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{# This template overwrites the original from TACC/Core-CMS #} | ||
{# NOTE: This should extend taccsite_cms via taccsite_custom, not overwrite #} | ||
{# FAQ: To extend, via app template inheritance, see TACC/Core-CMS#492 #} | ||
|
||
|
||
|
||
{# COPIED FROM CORE #} | ||
{# https://github.com/TACC/Core-CMS/blob/c8844e1/taccsite_cms/templates/assets_custom.html #} | ||
|
||
{% load static %} | ||
|
||
<!-- Custom Site Assets: Favicon. --> | ||
{% with settings.FAVICON as favicon %} | ||
<link rel="icon" href="{% static favicon.img_file_src %}" type="image/x-icon" /> | ||
{% endwith %} | ||
|
||
|
||
|
||
{# NEW CODE #} | ||
|
||
<!-- To style old CMS content on new CMS --> | ||
<link rel="stylesheet" href="{% static 'ecep_cms/css/site.css' %}"> |
This file was deleted.
Oops, something went wrong.