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-11-10 09:40:18 +0300
committersomrat <monnaf37@gmail.com>2019-11-10 09:40:18 +0300
commit3b1557e7305d899c7be41dd37ba38aca3c8347ef (patch)
tree59b2b55729609dabafc6e086e8f58020ee8038c0
parent39e5438b8fa8c6ff5d0726ee1eeb1c5073decd8d (diff)
modify navbar for auto hide in mobile device and readme file
-rw-r--r--README.md12
-rw-r--r--static/js/main.js5
2 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 7c903fe..ddc9290 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
- [More Hugo Themes](https://themefisher.com/hugo-themes/)
## Demo
-[Live Demo](https://themes.gohugo.io/theme/restaurant-hugo/).
+[Live Demo](http://demo.themefisher.com/restaurant-hugo/).
## Installation
@@ -57,10 +57,10 @@ We are available for Hiring of your next HUGO project. Drop Us a mail [themefish
## Premium Themes
-| [![Mega-Bundle-HUGO](https://user-images.githubusercontent.com/37659754/63633830-30ddf480-c670-11e9-8a8b-04a142f8ffc1.png)](https://themefisher.com/products/hugo-mega-bundle/) | [![Bexer](https://user-images.githubusercontent.com/37659754/54068892-84ec4c80-427b-11e9-9952-5d455c259145.png)](https://themefisher.com/products/bexer-hugo-theme/) | [![Small Apps](https://user-images.githubusercontent.com/37659754/58609417-50f85480-82c9-11e9-8958-e501af844294.jpg)](https://themefisher.com/products/small-apps-hugo-app-landing-theme/) |
+| [![Mega-Bundle-HUGO](https://user-images.githubusercontent.com/37659754/63633830-30ddf480-c670-11e9-8a8b-04a142f8ffc1.png)](https://themefisher.com/products/hugo-mega-bundle/) | [![Bexer](https://user-images.githubusercontent.com/37659754/54068892-84ec4c80-427b-11e9-9952-5d455c259145.png)](https://themefisher.com/products/bexer-hugo-theme/) | [![orbitor](https://user-images.githubusercontent.com/37659754/68539222-411d8a00-03aa-11ea-8858-ede3e405657f.png)](https://gethugothemes.com/products/orbitor/) |
|:---:|:---:|:---:|
-| **Hugo Mega Bundle** | **Bexer** | **Small Apps** |
-| [![Dtox](https://user-images.githubusercontent.com/37659754/54068836-07284100-427b-11e9-8ff2-48eec3220a26.png)](https://themefisher.com/products/dtox-hugo-theme/) | [![Agico](https://user-images.githubusercontent.com/37659754/57753899-16aa8700-770f-11e9-9a3d-d3fc45313fbd.png)](https://themefisher.com/products/agico-hugo-theme/) | [![Airspace](https://user-images.githubusercontent.com/37659754/57754161-9d5f6400-770f-11e9-8a76-778fbb9910c4.png)](https://themefisher.com/products/airspace-hugo/) |
-| **Dtox** | **Agico** | **Airspace** |
-| [![Agen](https://user-images.githubusercontent.com/37659754/63633832-3a675c80-c670-11e9-8380-a7b5f8f82b76.png)](https://themefisher.com/products/agen-hugo-agency-template/) | [![Biztrox](https://user-images.githubusercontent.com/37659754/54068875-6ab26e80-427b-11e9-876e-4670bdacb975.png)](https://themefisher.com/products/biztrox-hugo-template/) | [![Biztrox](https://user-images.githubusercontent.com/37659754/65814602-ce938900-e205-11e9-9d26-d5ad1b0cd1da.png)](https://themefisher.com/hugo-themes/) |
+| **Hugo Mega Bundle** | **Bexer** | **Orbitor** |
+| [![red-lab](https://user-images.githubusercontent.com/37659754/68538974-17169880-03a7-11ea-9ff9-ef15706dc1a7.png)](https://gethugothemes.com/products/redlab-hugo/) | [![Agico](https://user-images.githubusercontent.com/37659754/57753899-16aa8700-770f-11e9-9a3d-d3fc45313fbd.png)](https://themefisher.com/products/agico-hugo-theme/) | [![enov](https://user-images.githubusercontent.com/37659754/68539205-0fa4be80-03aa-11ea-85aa-625cf5a79600.png)](https://gethugothemes.com/products/enov-hugo/) |
+| **Red Lab** | **Agico** | **Enov** |
+| [![Agen](https://user-images.githubusercontent.com/37659754/63633832-3a675c80-c670-11e9-8380-a7b5f8f82b76.png)](https://themefisher.com/products/agen-hugo-agency-template/) | [![Biztrox](https://user-images.githubusercontent.com/37659754/54068875-6ab26e80-427b-11e9-876e-4670bdacb975.png)](https://themefisher.com/products/biztrox-hugo-template/) | [![all](https://user-images.githubusercontent.com/37659754/65814602-ce938900-e205-11e9-9d26-d5ad1b0cd1da.png)](https://gethugothemes.com/shop/) |
| **Agen** | **Biztrox** | **More Hugo Themes** | \ No newline at end of file
diff --git a/static/js/main.js b/static/js/main.js
index 77dca38..ec23bf9 100644
--- a/static/js/main.js
+++ b/static/js/main.js
@@ -5,6 +5,11 @@ $(document).ready(function () {
$('.preloader').fadeOut(100);
});
+ // autohiding navbar on mobile devices
+ $('.navbar-collapse a').click(function () {
+ $(".navbar-collapse").collapse('hide');
+ });
+
// venobox popup
$('.venobox').venobox();