diff --git a/config/package.php b/config/package.php index b32b1dd..9b999b5 100644 --- a/config/package.php +++ b/config/package.php @@ -13,6 +13,7 @@ return [ 'tags' => ['koneko', 'porto', 'themeforest'], 'templates' => [ + /* 'accounting-1'=> [ 'name' => 'Accounting 1', 'tags' => ['porto'], @@ -101,6 +102,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + */ 'business-consulting-4' => [ 'name' => 'Business Consulting 4', 'tags' => ['porto'], @@ -109,6 +111,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + /* 'business-consulting-5' => [ 'name' => 'Business Consulting 5', 'tags' => ['porto'], @@ -125,6 +128,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + */ 'cleaning-services' => [ 'name' => 'Cleaning Services', 'tags' => ['porto'], @@ -133,6 +137,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + /* 'coffee' => [ 'name' => 'Coffee', 'tags' => ['porto'], @@ -381,6 +386,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + */ 'renewable-energy' => [ 'name' => 'Renewable Energy', 'tags' => ['porto'], @@ -389,6 +395,7 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + /* 'restaurant' => [ 'name' => 'Restaurant', 'tags' => ['porto'], @@ -469,5 +476,6 @@ return [ 'preview_url' => 'https://preview.themeforest.net/item/porto-responsive-html5-template/full_screen_preview/4106987', ], ], + */ ], ]; diff --git a/resources/assets/___vendor/afterresize/README.md b/resources/assets/___vendor/afterresize/README.md deleted file mode 100644 index adcb1c0..0000000 --- a/resources/assets/___vendor/afterresize/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# afterResize.js - -If you have ever used jQuery's .resize() method to detect a window resize you may be aware that most browsers don't wait for the resize event to finish before it triggers a callback. Instead the event and it's callback is fired rapidly until the resize is complete. - -This very simple jQuery plugin is designed to emulate an 'after resize' event. It works by adding the callback to a queue to be executed after a duration. If the event is triggered again before the end of this duration, it is restarted and the callback will not execute until the duration can finish. - -## Example - -```javascript -$(document).ready( function() { - $(window).afterResize( function() { - alert('Resize event has finished'); - }, true, 100 ); -}); -``` - -## Licence - -Do with it what you wish. \ No newline at end of file diff --git a/resources/assets/___vendor/afterresize/afterresize.js b/resources/assets/___vendor/afterresize/afterresize.js deleted file mode 100644 index f30ab46..0000000 --- a/resources/assets/___vendor/afterresize/afterresize.js +++ /dev/null @@ -1,99 +0,0 @@ -( function( $ ) { - "use strict"; - - // Define default settings - var defaults = { - action: function() {}, - runOnLoad: false, - duration: 500 - }; - - // Define global variables - var settings = defaults, - running = false, - start; - - var methods = {}; - - // Initial plugin configuration - methods.init = function() { - - // Allocate passed arguments to settings based on type - for( var i = 0; i <= arguments.length; i++ ) { - var arg = arguments[i]; - switch ( typeof arg ) { - case "function": - settings.action = arg; - break; - case "boolean": - settings.runOnLoad = arg; - break; - case "number": - settings.duration = arg; - break; - } - } - - // Process each matching jQuery object - return this.each(function() { - - if( settings.runOnLoad ) { settings.action(); } - - $(this).resize( function() { - - methods.timedAction.call( this ); - - } ); - - } ); - }; - - methods.timedAction = function( code, millisec ) { - - var doAction = function() { - var remaining = settings.duration; - - if( running ) { - var elapse = new Date() - start; - remaining = settings.duration - elapse; - if( remaining <= 0 ) { - // Clear timeout and reset running variable - clearTimeout(running); - running = false; - // Perform user defined function - settings.action(); - - return; - } - } - wait( remaining ); - }; - - var wait = function( time ) { - running = setTimeout( doAction, time ); - }; - - // Define new action starting time - start = new Date(); - - // Define runtime settings if function is run directly - if( typeof millisec === 'number' ) { settings.duration = millisec; } - if( typeof code === 'function' ) { settings.action = code; } - - // Only run timed loop if not already running - if( !running ) { doAction(); } - - }; - - - $.fn.afterResize = function( method ) { - - if( methods[method] ) { - return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ) ); - } else { - return methods.init.apply( this, arguments ); - } - - }; - -})(jQuery); diff --git a/resources/assets/___vendor/afterresize/afterresize.min.js b/resources/assets/___vendor/afterresize/afterresize.min.js deleted file mode 100644 index 7ffd2ab..0000000 --- a/resources/assets/___vendor/afterresize/afterresize.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(f){"use strict";var k={action:function(){},runOnLoad:false,duration:500};var b=k,e=false,g;var c={};c.init=function(){for(var a=0;a<=arguments.length;a++){var d=arguments[a];switch(typeof d){case"function":b.action=d;break;case"boolean":b.runOnLoad=d;break;case"number":b.duration=d;break}}return this.each(function(){if(b.runOnLoad){b.action()}f(this).resize(function(){c.timedAction.call(this)})})};c.timedAction=function(h,i){var j=function(){var a=b.duration;if(e){var d=new Date()-g;a=b.duration-d;if(a<=0){clearTimeout(e);e=false;b.action();return}}l(a)};var l=function(a){e=setTimeout(j,a)};g=new Date();if(typeof i==='number'){b.duration=i}if(typeof h==='function'){b.action=h}if(!e){j()}};f.fn.afterResize=function(a){if(c[a]){return c[a].apply(this,Array.prototype.slice.call(arguments,1))}else{return c.init.apply(this,arguments)}}})(jQuery); diff --git a/resources/assets/___vendor/afterresize/demo.js b/resources/assets/___vendor/afterresize/demo.js deleted file mode 100644 index 16ed401..0000000 --- a/resources/assets/___vendor/afterresize/demo.js +++ /dev/null @@ -1,5 +0,0 @@ -$(document).ready( function() { - $(window).afterResize( function() { - alert('Resize event has finished'); - }, true, 100 ); -}); \ No newline at end of file diff --git a/resources/assets/___vendor/afterresize/index.html b/resources/assets/___vendor/afterresize/index.html deleted file mode 100644 index 3b19a8b..0000000 --- a/resources/assets/___vendor/afterresize/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - -
- -'+(this.showSeconds?' | ':"")+(this.showMeridian?' | ':"")+" | ||||
"+b+' | : | '+c+" | "+(this.showSeconds?': | '+d+" | ":"")+(this.showMeridian?''+e+" | ":"")+'|
'+(this.showSeconds?' | ':"")+(this.showMeridian?' | ':"")+" |
`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 2. Add explicit cursor to indicate changed behavior.\n// 3. Prevent the text-decoration to be skipped.\n\nabbr[title] {\n text-decoration: underline dotted; // 1\n cursor: help; // 2\n text-decoration-skip-ink: none; // 3\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n color: var(--#{$prefix}highlight-color);\n background-color: var(--#{$prefix}highlight-bg);\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: rgba(var(--#{$prefix}link-color-rgb), var(--#{$prefix}link-opacity, 1));\n text-decoration: $link-decoration;\n\n &:hover {\n --#{$prefix}link-color-rgb: var(--#{$prefix}link-hover-color-rgb);\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: var(--#{$prefix}code-color);\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `