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

github.com/devcows/hugo-universal-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Moreno <adrian@morenomartinez.com>2016-06-19 19:14:56 +0300
committerAdrian Moreno <adrian@morenomartinez.com>2016-06-19 19:14:56 +0300
commit6f03f59987e26415b0c49b2f74fa9cad0792f802 (patch)
tree50d2fb0f17481fcf780e9871be8952cf021ce5cc /layouts/partials/footer.html
parent8428bc1a7ee2c9f583c6df9f4d0d1543f946b211 (diff)
Makes testimonials and clients configurable
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html62
1 files changed, 11 insertions, 51 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index f539214..0bf19d0 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,6 @@
<footer id="footer">
<div class="container">
- <div class="col-md-3 col-sm-6">
+ <div class="col-md-4 col-sm-6">
<h4>About us</h4>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
@@ -27,18 +27,18 @@
<hr class="hidden-md hidden-lg hidden-sm">
</div>
- <!-- /.col-md-3 -->
+ <!-- /.col-md-4 -->
- <div class="col-md-3 col-sm-6">
+ <div class="col-md-4 col-sm-6">
- <h4>Blog</h4>
+ <h4>Recent posts</h4>
<div class="blog-entries">
{{ range first 3 (where .Site.Pages "Type" "post") }}
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="#">
- {{ if .Params.image }}
+ {{ if isset .Params "image" }}
<img src="{{ .Site.BaseURL}}{{ .Params.image }}" alt="" class="img-responsive">
{{ end }}
</a>
@@ -53,9 +53,9 @@
<hr class="hidden-md hidden-lg">
</div>
- <!-- /.col-md-3 -->
+ <!-- /.col-md-4 -->
- <div class="col-md-3 col-sm-6">
+ <div class="col-md-4 col-sm-6">
<h4>Contact</h4>
@@ -73,49 +73,8 @@
<hr class="hidden-md hidden-lg hidden-sm">
</div>
- <!-- /.col-md-3 -->
+ <!-- /.col-md-4 -->
-
-
- <div class="col-md-3 col-sm-6">
-
- <h4>Photostream</h4>
-
- <div class="photostream">
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare2.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare3.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare3.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare2.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- <div>
- <a href="#">
- <img src="{{ .Site.BaseURL }}img/detailsquare.jpg" class="img-responsive" alt="#">
- </a>
- </div>
- </div>
-
- </div>
- <!-- /.col-md-3 -->
</div>
<!-- /.container -->
</footer>
@@ -131,10 +90,11 @@ _________________________________________________________ -->
<div class="container">
<div class="col-md-12">
<p class="pull-left">&copy; 2015. Your company / name goes here</p>
- <p class="pull-right">Template by <a href="http://bootstrapious.com/free-templates">Bootstrapious</a>
+ <p class="pull-right">
+ Template by <a href="http://bootstrapious.com/free-templates">Bootstrapious</a>.
+ Ported by <a href="http://devcows.com">DevCows</a>
<!-- Not removing these links is part of the licence conditions of the template. Thanks for understanding :) -->
</p>
-
</div>
</div>
</div>