Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement design for the footer #4

Merged
merged 1 commit into from
Dec 19, 2023
Merged
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
70 changes: 70 additions & 0 deletions ckanext/kepa/assets/css/kepa.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ckanext/kepa/assets/css/kepa.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

96 changes: 84 additions & 12 deletions ckanext/kepa/assets/scss/kepa.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
align-items: center;
}

.align-center {
text-align: center;
}

.column {
display: flex;
flex-direction: column;
}

.masthead {
padding: 0 !important;
background-color: $primary-color;
Expand Down Expand Up @@ -45,7 +54,7 @@
background: url(/main-kepa-img.jpg) center/cover no-repeat;
}

.homepage .hero-placeholder .container{
.homepage .hero-placeholder .container {
min-height: 600px;
width: 50%;
display: flex;
Expand All @@ -55,10 +64,16 @@
text-align: center;
}

.homepage .hero-placeholder .container img{
.homepage .hero-placeholder .container img {
max-height: 300px;
}

@media screen and (max-width: 600px) {
.homepage .hero-placeholder .container img {
max-height: 150px;
}
}

.heading {
color: $white;
font-size: $xxl-size;
Expand All @@ -84,7 +99,7 @@
border-radius: 0;
}

.search-form{
.search-form {
margin-bottom: 0;
padding: 0;
}
Expand All @@ -94,41 +109,41 @@
border-radius: 0;
}

.tags{
.tags {
background-color: $white;
height: 55px;
padding: 0;
display: flex;
align-items: center;
}

.tags h4{
.tags h4 {
margin: 0 !important;
padding-left: 10px;
}

.tags a{
.tags a {
margin-bottom: 0 !important;
margin-left: 10px;
}

.card{
.card {
width: 200px;
align-items: center;
text-align: center;
background-color: $secondary-color;
}

.card a{
.card a {
color: $white;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;;
justify-content: center;
text-decoration: none;
}

.card a h1{
.card a h1 {
font-size: $xxxl-size;
margin-bottom: 0;
}
Expand All @@ -139,11 +154,68 @@
height: 100%;
}

@media screen and (max-width: 650px) {
.module-stats-center-flex {
flex-direction: column;
align-items: center;
}

.module-feeds {
min-height: 500px !important;
}
}

.module-feeds {
min-height: 300px;
background-color: $tertiary-color !important;
}

.module-feeds .container{
.module-feeds .container {
height: 200px;
}
}

.attribution {
color: $white;
margin-top: 20px;
}

.attribution h2 {
margin-bottom: 20px;
}

.address {
display: flex;
justify-content: end;
width: 100%;
padding-right: 30px;
align-items: center;
color: $white;
font-weight: $bold;
}

.address img {
padding-right: 20px;
height: 50px;
}

.column a {
font-size: medium;
}

.btn-primary {
background-color: $secondary-color;
border: none;
outline: none;
}

.breadcrumb .home a i {
color: $secondary-color;
}

.site-footer {
padding: 40px;
}

.item-count {
background-color: $secondary-color !important;
}
Binary file added ckanext/kepa/public/republic-kosovo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 58 additions & 23 deletions ckanext/kepa/templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,67 @@
<div class="container">
{% block footer_content %}
<div class="row">
<div class="col-md-8 footer-links">
{% block footer_nav %}
<ul class="list-unstyled">
{% block footer_links %}
<li><a href="{{ h.url_for('home.about') }}">{{ _('About {0}').format(g.site_title) }}</a></li>
{% endblock %}
</ul>
<ul class="list-unstyled">
{% block footer_links_ckan %}
{% set api_url = 'http://docs.ckan.org/en/{0}/api/'.format(g.ckan_doc_version) %}
<li><a href="{{ api_url }}">{{ _('CKAN API') }}</a></li>
<li><a href="http://www.ckan.org/">{{ _('CKAN Association 1234') }}</a></li>
<li><a href="http://www.opendefinition.org/okd/"><img src="{{ h.url_for_static('/base/images/od_80x15_blue.png') }}" alt="Open Data"></a></li>
{% endblock %}
</ul>
{% endblock %}
<div class="col-md-4 attribution">
<h2>{{_('The Kosovo dataportal')}} </h2>
<div class="column">
<a class="" href="http://ckan.org">{{_('About this website')}}</a>
<a class="" href="http://ckan.org">{{_('Open source on GitHub')}}</a>
<a class="" href="http://ckan.org">{{_('Feedback on dataportal.xk')}}</a>
<a class="" href="http://ckan.org">{{_('[email protected]')}}</a>
</div>
</div>
<div class="col-md-4 attribution">
<h2>{{_('Toolbox for sharing data')}}</h2>
<div class="column">
<a class="" href="http://ckan.org">{{_('Documentation and services - Kosovo`s data portal')}}</a>
<a class="" href="http://ckan.org">{{_('Guidance for open and shared data')}}</a>
</div>
</div>
<div class="col-md-4 attribution">
{% block footer_attribution %}
<p>{% trans %}<strong>Powered by</strong> <a class="hide-text ckan-footer-logo" href="http://ckan.org">CKAN</a>{% endtrans %}</p>
{% endblock %}
{% block footer_lang %}
{% snippet "snippets/language_selector.html" %}
{% endblock %}
<h2>{{_('Social')}}</h2>
<div class="column">
<a class="" href="http://ckan.org">{{_('Network Open Source and Data')}}</a>
<a class="" href="http://ckan.org">{{_('Facebook')}}</a>
<a class="" href="http://ckan.org">{{_('Twitter')}}</a>
</div>
</div>
</div>
{% endblock %}

</div>
<div class="address">
<img src="/republic-kosovo.png" />
<span>
{{_('Republika e Kosovës')}} <br>
{{_('Republika Kosova - Republic of Kosovo')}}<br>
{{_('Qeveria – Vlada - Government')}}<br>
</span>
</div>
</footer>


<script>
console.log("ovde");

document.addEventListener("DOMContentLoaded", function () {
calculateSpaceToBottom();
});

window.addEventListener("resize", function () {
calculateSpaceToBottom();
});

function calculateSpaceToBottom() {

const siteFooter = document.getElementsByClassName("site-footer");
const main = document.getElementsByClassName("main")
const masthead = document.getElementsByClassName("masthead")
const accountmasthead = document.getElementsByClassName("account-masthead")

if (siteFooter) {
const height = window.innerHeight - (siteFooter[0].clientHeight + masthead[0].clientHeight);

main[0].style.minHeight = height + "px"
}
}
</script>
{% endblock %}
8 changes: 4 additions & 4 deletions ckanext/kepa/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ <h2>{{ g.site_description }}</h2>
{% set group_type = h.default_group_type('group') %}

{{ h.build_nav_main(
(dataset_type ~ '.search', h.humanize_entity_type('package', dataset_type, 'main nav') or _('DATASETS'),
(dataset_type ~ '.search', h.humanize_entity_type('package', dataset_type, 'main nav') or _('datasets').upper(),
["dataset", "resource"]),
(org_type ~ '.index',
h.humanize_entity_type('organization', org_type, 'main nav') or _('ORGANIZATIONS'), ['organization']),
h.humanize_entity_type('organization', org_type, 'main nav') or _('organizations').upper(), ['organization']),
(group_type ~ '.index',
h.humanize_entity_type('group', group_type, 'main nav') or _('GROUPS'), ['group']),
('home.about', _('ABOUT US')) ) }}
h.humanize_entity_type('group', group_type, 'main nav') or _('groups').upper(), ['group']),
('home.about', _('about us').upper()) ) }}
{% endblock %}
</ul>

Expand Down
Loading
Loading