Skip to content

Commit

Permalink
fix: tapis missing v1-v2 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Aug 10, 2023
1 parent 24d648c commit 7e85812
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tapisproject_cms/src/taccsite_cms/templates/assets_custom.html
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 'tapisproject_cms/css/migrate.v1_v2.css' %}">
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import url("/static/site_cms/css/build/v1_v2.css"); /* Core-CMS:/taccsite_cms/…/ */

0 comments on commit 7e85812

Please sign in to comment.