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-14 15:50:18 +0300
committerAdrian Moreno <adrian@morenomartinez.com>2016-06-14 15:50:18 +0300
commit9d0945696f38ba96cfba54af5c6358d614177100 (patch)
tree307fb730439ed385aa5c7b50e5b083044a5b916e /layouts/partials/footer.html
parent7362916016d21809411b133408d0c5ed78280558 (diff)
Initial commit with first porting efforts
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html161
1 files changed, 161 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..408f85f
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,161 @@
+<footer id="footer">
+ <div class="container">
+ <div class="col-md-3 col-sm-6">
+ <h4>About us</h4>
+
+ <p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
+
+ <hr>
+
+ <h4>Join our monthly newsletter</h4>
+
+ <form>
+ <div class="input-group">
+
+ <input type="text" class="form-control">
+
+ <span class="input-group-btn">
+
+ <button class="btn btn-default" type="button"><i class="fa fa-send"></i></button>
+
+ </span>
+
+ </div>
+ <!-- /input-group -->
+ </form>
+
+ <hr class="hidden-md hidden-lg hidden-sm">
+
+ </div>
+ <!-- /.col-md-3 -->
+
+ <div class="col-md-3 col-sm-6">
+
+ <h4>Blog</h4>
+
+ <div class="blog-entries">
+ <div class="item same-height-row clearfix">
+ <div class="image same-height-always">
+ <a href="#">
+ <img class="img-responsive" src="{{ .Site.BaseURL }}img/detailsquare.jpg" alt="">
+ </a>
+ </div>
+ <div class="name same-height-always">
+ <h5><a href="#">Blog post name</a></h5>
+ </div>
+ </div>
+
+ <div class="item same-height-row clearfix">
+ <div class="image same-height-always">
+ <a href="#">
+ <img class="img-responsive" src="{{ .Site.BaseURL }}img/detailsquare.jpg" alt="">
+ </a>
+ </div>
+ <div class="name same-height-always">
+ <h5><a href="#">Blog post name</a></h5>
+ </div>
+ </div>
+
+ <div class="item same-height-row clearfix">
+ <div class="image same-height-always">
+ <a href="#">
+ <img class="img-responsive" src="{{ .Site.BaseURL }}img/detailsquare.jpg" alt="">
+ </a>
+ </div>
+ <div class="name same-height-always">
+ <h5><a href="#">Very very long blog post name</a></h5>
+ </div>
+ </div>
+ </div>
+
+ <hr class="hidden-md hidden-lg">
+
+ </div>
+ <!-- /.col-md-3 -->
+
+ <div class="col-md-3 col-sm-6">
+
+ <h4>Contact</h4>
+
+ <p><strong>Universal Ltd.</strong>
+ <br>13/25 New Avenue
+ <br>Newtown upon River
+ <br>45Y 73J
+ <br>England
+ <br>
+ <strong>Great Britain</strong>
+ </p>
+
+ <a href="contact.html" class="btn btn-small btn-template-main">Go to contact page</a>
+
+ <hr class="hidden-md hidden-lg hidden-sm">
+
+ </div>
+ <!-- /.col-md-3 -->
+
+
+
+ <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>
+
+<!-- /#footer -->
+
+<!-- *** FOOTER END *** -->
+
+<!-- *** COPYRIGHT ***
+_________________________________________________________ -->
+
+<div id="copyright">
+ <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>
+ <!-- Not removing these links is part of the licence conditions of the template. Thanks for understanding :) -->
+ </p>
+
+ </div>
+ </div>
+</div>
+<!-- /#copyright -->
+
+<!-- *** COPYRIGHT END *** -->