Get started here.', 'hipstyle' ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
21 | 22 | 23 | 24 | 25 | 26 |├── assets ├── css │ ├── dynamic.css │ ├── hipstyle_admin.css │ ├── flaticon.css │ ├── slick.css │ ├── owl.carousel.min.css │ ├── nice-select.css │ └── magnific-popup.css ├── img │ ├── Quote.png │ ├── banner.jpg │ ├── favicon.png │ ├── review_bg.jpg │ └── reservation_bg.jpg ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.ttf │ ├── themify.eot │ ├── themify.ttf │ ├── themify.woff │ ├── Flaticon.woff │ ├── Flaticon.woff2 │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── js │ ├── hipstyle_admin.js │ ├── post-likes.js │ ├── jquery.instagramFeed.min.js │ ├── jquery.nice-select.min.js │ ├── custom.js │ └── jquery.ajaxchimp.min.js ├── .DS_Store ├── inc ├── .DS_Store ├── demo │ ├── screen-image.png │ ├── css │ │ └── demo-import.css │ ├── hipstyle-customizer.dat │ ├── hipstyle-widgets.wie │ └── demo-import.php ├── elementor-widgets │ ├── assets │ │ ├── css │ │ │ ├── elementor-edit.css │ │ │ └── owl.carousel.css │ │ └── js │ │ │ ├── hipstyle-companion-main.js │ │ │ ├── jquery.counterup.min.js │ │ │ ├── map-custom.js │ │ │ └── jquery.ajaxchimp.min.js │ └── widgets │ │ ├── reservation.php │ │ ├── features.php │ │ └── contact.php ├── class-epsilon-dashboard-autoloader.php ├── widgets │ ├── hipstyle-widgets-reg.php │ ├── hipstyle-instagram.php │ ├── hipstyle-recent-post-thumb.php │ ├── hipstyle-newsletter-widget.php │ ├── instagram-api.php │ └── hipstyle-social-links.php ├── libraries │ └── class-epsilon-init-notify-system.php ├── customizer │ ├── fields │ │ └── sections.php │ ├── customizer.php │ └── js │ │ └── customizer.js ├── wp_bootstrap_pagination.php ├── classes │ └── Class-Enqueue.php ├── support-functions.php ├── class-epsilon-init-dashboard.php ├── hipstyle-breadcrumbs.php └── hipstyle-commoncss.php ├── screenshot.png ├── .gitmodules ├── template-builder.php ├── sidebar.php ├── templates ├── content-page.php ├── biography.php ├── page-header.php ├── pagination.php ├── footer-widgets.php ├── footer-bottom.php ├── footer-top-widgets.php ├── content-none.php ├── 404.php ├── content-single.php ├── content-audio.php ├── content-video.php ├── content.php ├── menu-bar.php └── home-header.php ├── searchform.php ├── page.php ├── archive.php ├── search.php ├── style.css ├── README.md ├── index.php ├── 404.php ├── footer.php ├── header.php ├── comments.php ├── readme.txt ├── single.php └── functions.php /assets/css/dynamic.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/.DS_Store -------------------------------------------------------------------------------- /inc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/inc/.DS_Store -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/screenshot.png -------------------------------------------------------------------------------- /assets/img/Quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/img/Quote.png -------------------------------------------------------------------------------- /assets/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/img/banner.jpg -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/themify.eot -------------------------------------------------------------------------------- /assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/themify.woff -------------------------------------------------------------------------------- /assets/img/review_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/img/review_bg.jpg -------------------------------------------------------------------------------- /inc/demo/screen-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/inc/demo/screen-image.png -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /assets/fonts/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/Flaticon.woff2 -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/img/reservation_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/img/reservation_bg.jpg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColorlibHQ/hipstyle/master/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /inc/elementor-widgets/assets/css/elementor-edit.css: -------------------------------------------------------------------------------- 1 | .elementor-choices-label i { 2 | font-size: 18px !important; 3 | padding: 5px 0; 4 | } -------------------------------------------------------------------------------- /assets/css/hipstyle_admin.css: -------------------------------------------------------------------------------- 1 | .customize-control-epsilon-text-editor .customize-control-title, .repeater-field-epsilon-text-editor .customize-control-title{ 2 | float: none !important; 3 | } -------------------------------------------------------------------------------- /inc/elementor-widgets/assets/js/hipstyle-companion-main.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | // Mailchimp ajax 5 | $('#mc_embed_signup').find('form').ajaxChimp(); 6 | 7 | 8 | })(jQuery); -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "inc/libraries/epsilon-framework"] 2 | path = inc/libraries/epsilon-framework 3 | url = https://github.com/MachoThemes/epsilon-framework 4 | [submodule "inc/libraries/epsilon-theme-dashboard"] 5 | path = inc/libraries/epsilon-theme-dashboard 6 | url = https://github.com/MachoThemes/epsilon-theme-dashboard 7 | -------------------------------------------------------------------------------- /inc/demo/css/demo-import.css: -------------------------------------------------------------------------------- 1 | .ocdi__demo-import-notice:not(:empty) { 2 | background-color: transparent !important; 3 | border-left: 0px !important; 4 | box-shadow: none !important; 5 | padding: 0px !important; 6 | } 7 | .ocdi__demo-import-notice img { 8 | border: 4px solid #dbe3ea; 9 | } 10 | 11 | .about-wrap .ocdi__demo-import-notice img { 12 | width: auto; 13 | } 14 | .about-wrap img { 15 | width: auto; 16 | } -------------------------------------------------------------------------------- /template-builder.php: -------------------------------------------------------------------------------- 1 |
'; 20 | } 21 | 22 | 23 | ?> -------------------------------------------------------------------------------- /templates/content-page.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |Get started here.', 'hipstyle' ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
21 | 22 | 23 | 24 | 25 | 26 |'. get_the_time('M') .'
'; 23 | 24 | ?> 25 |659, Rocky beach bullevard, santa monica, Rocky beach, USA.<\/p>\r\n <\/div>\r\n
Mon to Fri 9am to 6 pm.<\/p>\r\n <\/div>","filter":true,"visual":true}},"footer-3":{"hipstyle_newsletter-3":{"title":"Newsletter","actionurl":"https:\/\/spondonit.us12.list-manage.com\/subscribe\/post?u=1462626880ade1ac87bd9c93a&id=92a4423d01","desc":"Stay updated with our latest trends The more effort you put into improving your skills, the bigger the payoff you will get realize that things."}}} -------------------------------------------------------------------------------- /assets/js/post-likes.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | 'use strict'; 3 | $(document).on('click', '.sl-button', function() { 4 | var button = $(this); 5 | var post_id = button.attr('data-post-id'); 6 | var hipstyle = button.attr('data-nonce'); 7 | var iscomment = button.attr('data-iscomment'); 8 | var allbuttons; 9 | if ( iscomment === '1' ) { /* Comments can have same id */ 10 | allbuttons = $('.sl-comment-button-'+post_id); 11 | } else { 12 | allbuttons = $('.sl-button-'+post_id); 13 | } 14 | var loader = allbuttons.next('#sl-loader'); 15 | if (post_id !== '') { 16 | $.ajax({ 17 | type: 'POST', 18 | url: simpleLikes.ajaxurl, 19 | data : { 20 | action : 'hipstyle_process_simple_like', 21 | post_id : post_id, 22 | nonce : hipstyle, 23 | is_comment : iscomment, 24 | }, 25 | beforeSend:function(){ 26 | loader.html('