Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/themefisher/kross-hugo-portfolio-template.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSojon <sojonatmail@gmail.com>2021-07-05 09:28:36 +0300
committerSojon <sojonatmail@gmail.com>2021-07-05 09:28:36 +0300
commiteb9dda5b5f7d435da64e7232038ce3e21b97d132 (patch)
treef518960cb2d85c777eeadc127d64d957aaca2ed9
parent2ff313d8b1824b09d63188e39e6b63dd1a25d879 (diff)
Updated - post-card, footer ; Bug Fix - some css fix added
-rw-r--r--LICENSE2
-rw-r--r--assets/css/style.css16
-rw-r--r--exampleSite/config.toml2
-rw-r--r--layouts/_default/post.html2
-rw-r--r--layouts/partials/footer.html6
5 files changed, 21 insertions, 7 deletions
diff --git a/LICENSE b/LICENSE
index bb38117..2fada19 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2020 themefisher
+Copyright (c) 2021 themefisher
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
diff --git a/assets/css/style.css b/assets/css/style.css
index 94a2376..aca95f3 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -702,6 +702,20 @@ textarea.form-control {
padding-top: 200px
}
+.footer-section a {
+ color: #fff;
+}
+
+.footer-bottom a {
+ color: #999;
+ text-decoration: underline;
+}
+
+.footer-section a:hover {
+ color: #fff;
+ text-decoration: underline;
+}
+
.section-on-footer {
margin-bottom: -250px
}
@@ -879,7 +893,7 @@ blockquote {
.social-icons a{
height: 100px;
width: 100px;
- line-height: 100px;
+ line-height: 102px;
border-radius: 50%;
display: block;
box-shadow: 0 18px 39.1px 6.9px rgba(224,241,255,.34);
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index bc65b77..1d32c59 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -65,7 +65,7 @@ description = "This is meta description"
# google analytics
google_analytics_id = "" # Your ID
# copyright
-copyright = "Copyright &copy; 2020 a theme by [gethugothemes](https://gethugothemes.com)"
+copyright = "Copyright &copy; 2021 a Theme by [Gethugothemes](https://gethugothemes.com)"
# preloader
diff --git a/layouts/_default/post.html b/layouts/_default/post.html
index 9b154df..e9221d6 100644
--- a/layouts/_default/post.html
+++ b/layouts/_default/post.html
@@ -1,6 +1,6 @@
<div class="col-lg-4 col-sm-6 mb-4">
<article class="card shadow">
- <img class="rounded card-img-top" src="{{.Params.Image | relURL}}" alt="{{.Title }}">
+ <a href="{{.Permalink}}" title="{{.Title }}"><img class="rounded card-img-top" src="{{.Params.Image | relURL}}" alt="{{.Title }}"></a>
<div class="card-body">
<h4 class="card-title"><a class="text-dark" href="{{.Permalink}}">{{.Title }}</a>
</h4>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 7d01134..e19d75b 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -39,11 +39,11 @@
<div class="row">
<div class="col-md-4">
<h5 class="text-light">Email</h5>
- <p class="text-white paragraph-lg font-secondary">{{site.Params.email}}</p>
+ <p class="text-white paragraph-lg font-secondary"><a href="mailto:{{site.Params.email}}">{{site.Params.email}}</a></p>
</div>
<div class="col-md-4">
<h5 class="text-light">Phone</h5>
- <p class="text-white paragraph-lg font-secondary">{{site.Params.phone}}</p>
+ <p class="text-white paragraph-lg font-secondary"><a href="tel:{{site.Params.phone}}">{{site.Params.phone}}</a></p>
</div>
<div class="col-md-4">
<h5 class="text-light">Address</h5>
@@ -52,7 +52,7 @@
</div>
</div>
</div>
- <div class="border-top text-center border-dark py-5">
+ <div class="footer-bottom border-top text-center border-dark py-5">
<p class="mb-0 text-light">{{ site.Params.copyright | markdownify }}</p>
</div>
</footer>