Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<link rel="stylesheet" type="text/css" href="{% static 'custom_example/index.css' %}">
<link nonce="{{ CSP_NONCE }}" rel="stylesheet" type="text/css" href="{% static 'custom_example/index.css' %}">
<h1>Custom App</h1>
This page will contain custom content.
{%endblock %}
10 changes: 5 additions & 5 deletions docs/_layouts/tacc.minimal.override.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

{% seo %}
<!-- <link rel="shortcut icon" type="image/png" href="{{ "/docs/favicon.png" | absolute_url }}"> -->
<link rel="shortcut icon" type="image/png" href="{{ "/assets/img/favicon.png" | relative_url }}">
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
<!-- <link nonce="{{ CSP_NONCE }}" rel="shortcut icon" type="image/png" href="{{ "/docs/favicon.png" | absolute_url }}"> -->
<link nonce="{{ CSP_NONCE }}" nonce="{{ CSP_NONCE }} rel="shortcut icon" type="image/png" href="{{ "/assets/img/favicon.png" | relative_url }}">
<link nonce="{{ CSP_NONCE }}" nonce="{{ CSP_NONCE }} rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
<!-- Override Style Values -->
<link rel="stylesheet" href="{{ "./assets/css/tacc.minimal.overrides.css" | relative_url }}">
<link nonce="{{ CSP_NONCE }}" nonce="{{ CSP_NONCE }} rel="stylesheet" href="{{ "./assets/css/tacc.minimal.overrides.css" | relative_url }}">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<script nonce="{{ CSP_NONCE }} src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
Expand Down
Loading