initial import for Open Source 🎉
This commit is contained in:
parent
1898c361f3
commit
9c0dd3b722
2048 changed files with 218743 additions and 0 deletions
30
config_app/templates/index.html
Normal file
30
config_app/templates/index.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html ng-app="quay-config" class="onprem">
|
||||
<head>
|
||||
<script type="text/javascript">
|
||||
window.__endpoints = {{ route_data|tojson|safe }}.paths;
|
||||
window.__config = {{ config_set|tojson|safe }};
|
||||
window.__kubernetes_namespace = {{ kubernetes_namespace|tojson|safe }};
|
||||
</script>
|
||||
|
||||
{% for style_url in external_styles %}
|
||||
<link rel="stylesheet" href="{{ style_url }}" type="text/css">
|
||||
{% endfor %}
|
||||
|
||||
{% for script_url in external_scripts %}
|
||||
<script src="{{ script_url }}"></script>
|
||||
{% endfor %}
|
||||
|
||||
{% for script_path in main_scripts %}
|
||||
<script src="/static/{{ script_path }}"></script>
|
||||
{% endfor %}
|
||||
|
||||
<title>Config app</title>
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="shortcut icon" href="/static/img/quay_favicon.png" type="image/png" />
|
||||
</head>
|
||||
<body class="co-img-bg-network quay-config-app">
|
||||
<config-setup-app></config-setup-app>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue