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

github.com/themefisher/restaurant-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsomrat <monnaf37@gmail.com>2019-10-23 10:44:08 +0300
committersomrat <monnaf37@gmail.com>2019-10-23 10:44:08 +0300
commit866181e3871fbe9a0a4896ec150898025cbc4073 (patch)
tree86501ad3ebc56e55dd18e6ef5b0928e164a5554e
parent2398fd85eb83eccf608ef89918db373360cdd8c6 (diff)
about image responsive issue fix
-rw-r--r--layouts/partials/about.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/about.html b/layouts/partials/about.html
index 506f686..ae0cb03 100644
--- a/layouts/partials/about.html
+++ b/layouts/partials/about.html
@@ -5,7 +5,7 @@
<div class="row">
<div class="col-md-12">
<div class="block">
- <img src="{{ .image | absURL }}" alt="Logo"/>
+ <img class="img-responsive" src="{{ .image | absURL }}" alt="Logo"/>
<h1 class="heading wow fadeInUp" data-wow-duration="400ms" data-wow-delay="500ms">{{ .title | markdownify }}</h1>
<p class="wow fadeInUp" data-wow-duration="300ms" data-wow-delay="600ms">{{ .description | markdownify }}</p>
</div>