-
Notifications
You must be signed in to change notification settings - Fork 5
/
promoted.html
45 lines (44 loc) · 1.86 KB
/
promoted.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<div class="module-content box">
<header>
<h1 class="page-heading">{{ _("New DataCats Environment") }}</h1>
<p>
{% trans %}
Welcome to your new data catalog!
<a href="/user/login">Log in</a> with the
"admin" account password you created, then create a
<a href="/dataset/new">new dataset</a> or a
<a href="/organization/new">new organization</a>.
{% endtrans %}
</p>
<p>
{% if g.site_title == "multisite" %}
Welcome to a CKAN-multisite environment! As you can see, it's
effectively a template, and you can customize it as much as
you'd like at the sysadmin config panel in the top right (the
little hammer).
{% endif %}
</p>
<p>
This is a new multisite environment. If you are the admin of this
environment, you can look in the multisite/ckanext-multisitetheme
directory and edit the templates to customize this site however
you'd like! If you're having issues with this environment or the
multisite administrative interface, visit <a href="https://github.com/datacats/ckanext-multisite/issues">the issues page</a>
and file an issue. We'll be glad to help you out!
</p>
<p>
Otherwise, you should get your admin password set by the admin
and then change the name of your site in the settings.
</p>
</header>
{% block home_image %}
<section class="featured media-overlay hidden-phone">
<h2 class="media-heading">{% block home_image_caption %}{{ _("Feature datasets here") }}{% endblock %}</h2>
{% block home_image_content %}
<a class="media-image" href="#">
<img src="{{ h.url_for_static('/datacats/chart.png') }}" alt="Example chart" width="420" height="220" />
</a>
{% endblock %}
</section>
{% endblock %}
</div>