Skip to content

Commit

Permalink
Fix Redirect Page logo and favicon path
Browse files Browse the repository at this point in the history
  • Loading branch information
rooftopcellist committed Nov 1, 2024
1 parent c999a89 commit 278a562
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions roles/eda/templates/redirect-page.configmap.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ data:
<title>Redirecting to Ansible Automation Platform</title>

<!-- Favicon links -->
<link rel="icon" type="image/x-icon" href="static/rest_framework/docs/img/favicon.ico">
<link rel="icon" type="image/x-icon" href="/api/eda/static/media/favicon.ico">

<!-- Link to DRF's CSS -->
<link rel="stylesheet" type="text/css" href="static/rest_framework/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="static/rest_framework/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="/api/eda/static/rest_framework/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/api/eda/static/rest_framework/css/bootstrap-theme.min.css">

<style>
body {
Expand Down Expand Up @@ -59,7 +59,7 @@ data:
<body>
<!-- Banner Section with Brand Logo -->
<div class="banner">
<img class="logo" src="/static/media/aap-logo.svg" alt="Brand Logo">
<img class="logo" src="/api/eda/static/media/aap-logo.svg" alt="Brand Logo">
</div>

<h2>Redirecting to Ansible Automation Platform...</h2>
Expand All @@ -71,7 +71,7 @@ data:
</p>

<!-- Include any additional scripts if needed -->
<script src="static/rest_framework/js/jquery-3.5.1.min.js"></script>
<script src="static/rest_framework/js/bootstrap.min.js"></script>
<script src="/api/eda/static/rest_framework/js/jquery-3.5.1.min.js"></script>
<script src="/api/eda/static/rest_framework/js/bootstrap.min.js"></script>
</body>
</html>

0 comments on commit 278a562

Please sign in to comment.