├── paula ├── favicon.ico ├── html │ ├── mod_custom │ │ └── clean.php │ ├── mod_articles_news │ │ ├── portfolio.php │ │ └── iconmodule.php │ └── modules.php ├── images │ ├── errorcat.jpg │ └── offlinecat.jpg ├── template_preview.png ├── template_thumbnail.png ├── vendor │ ├── font-awesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── screen-reader.less │ │ │ ├── fixed-width.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── core.less │ │ │ ├── stacked.less │ │ │ ├── font-awesome.less │ │ │ ├── bordered-pulled.less │ │ │ ├── rotated-flipped.less │ │ │ ├── path.less │ │ │ ├── animated.less │ │ │ ├── mixins.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _core.scss │ │ │ ├── font-awesome.scss │ │ │ ├── _stacked.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _path.scss │ │ │ ├── _animated.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ ├── bootstrap │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── scrollreveal │ │ └── scrollreveal.min.js │ └── magnific-popup │ │ ├── magnific-popup.css │ │ └── jquery.magnific-popup.min.js ├── css │ ├── error_rtl.css │ ├── error.css │ ├── creative.min.css │ ├── creative-blue.min.css │ ├── creative.css │ └── creative-blue.css ├── less │ ├── variables.less │ ├── variables-blue.less │ ├── mixins.less │ ├── creative.less │ └── creative-blue.less ├── language │ ├── en-GB │ │ ├── en-GB.tpl_paula.sys.ini │ │ └── en-GB.tpl_paula.ini │ └── de-DE │ │ ├── de-DE.tpl_paula.sys.ini │ │ └── de-DE.tpl_paula.ini ├── js │ ├── creative.min.js │ └── creative.js ├── LICENSE ├── component.php ├── templateDetails.xml ├── offline.php ├── error.php └── index.php ├── LICENSE └── README.md /paula/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/favicon.ico -------------------------------------------------------------------------------- /paula/html/mod_custom/clean.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | content; ?> 5 | -------------------------------------------------------------------------------- /paula/images/errorcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/images/errorcat.jpg -------------------------------------------------------------------------------- /paula/images/offlinecat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/images/offlinecat.jpg -------------------------------------------------------------------------------- /paula/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/template_preview.png -------------------------------------------------------------------------------- /paula/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/template_thumbnail.png -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /paula/css/error_rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | /* Start Common Styles */ 7 | 8 | body { 9 | text-align: right; 10 | } 11 | 12 | .TD{ 13 | text-align: left; 14 | } 15 | 16 | #errorboxbody { 17 | text-align: right; 18 | } 19 | #techinfo { 20 | text-align: right; 21 | } 22 | -------------------------------------------------------------------------------- /paula/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | 3 | // Gray and Brand Colors for use across theme 4 | 5 | @theme-primary: #F05F40; 6 | 7 | @gray-base: #000; 8 | @gray-darker: lighten(@gray-base, 13.5%); // #222 9 | @gray-dark: lighten(@gray-base, 20%); // #333 10 | @gray: lighten(@gray-base, 33.5%); // #555 11 | @gray-light: lighten(@gray-base, 46.7%); // #777 12 | @gray-lighter: lighten(@gray-base, 93.5%); // #eee -------------------------------------------------------------------------------- /paula/less/variables-blue.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | 3 | // Gray and Brand Colors for use across theme 4 | 5 | @theme-primary: #2383c6; 6 | 7 | @gray-base: #000; 8 | @gray-darker: lighten(@gray-base, 13.5%); // #222 9 | @gray-dark: lighten(@gray-base, 20%); // #333 10 | @gray: lighten(@gray-base, 33.5%); // #555 11 | @gray-light: lighten(@gray-base, 46.7%); // #777 12 | @gray-lighter: lighten(@gray-base, 93.5%); // #eee -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /paula/language/en-GB/en-GB.tpl_paula.sys.ini: -------------------------------------------------------------------------------- 1 | TPL_PAULA_DESC="My first Joomla! template" 2 | TPL_PAULA_POSITION_MAINNAV="Mainnavigation" 3 | TPL_PAULA_POSITION_HEADER="Headerarea" 4 | TPL_PAULA_POSITION_TEASER="Teaserarea" 5 | TPL_PAULA_POSITION_TOP="Top" 6 | TPL_PAULA_POSITION_BREADCRUMBS="Navigationpath" 7 | TPL_PAULA_POSITION_RIGHT="Right" 8 | TPL_PAULA_POSITION_PORTFOLIO="Portfolio" 9 | TPL_PAULA_POSITION_ACTION="Call to Action" 10 | TPL_PAULA_POSITION_CONTACT="Contact" 11 | -------------------------------------------------------------------------------- /paula/language/de-DE/de-DE.tpl_paula.sys.ini: -------------------------------------------------------------------------------- 1 | TPL_PAULA_DESC="Mein erstes Joomla! Template" 2 | TPL_PAULA_POSITION_MAINNAV="Hauptnavigation" 3 | TPL_PAULA_POSITION_HEADER="Headerbereich" 4 | TPL_PAULA_POSITION_TEASER="Teaserbereich" 5 | TPL_PAULA_POSITION_TOP="Oben" 6 | TPL_PAULA_POSITION_BREADCRUMBS="Navigationspfad" 7 | TPL_PAULA_POSITION_RIGHT="Rechts" 8 | TPL_PAULA_POSITION_PORTFOLIO="Referenzen" 9 | TPL_PAULA_POSITION_ACTION="Call to Action" 10 | TPL_PAULA_POSITION_CONTACT="Kontakt" 11 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /paula/language/en-GB/en-GB.tpl_paula.ini: -------------------------------------------------------------------------------- 1 | PAULA="Paula Template" 2 | TPL_PAULA_DESC="My first Joomla! template" 3 | TPL_PAULA_FIELD_THEME="Templatecolor" 4 | TPL_PAULA_FIELD_THEME_DESC="Chose the Templatecolor here" 5 | TPL_PAULA_FIELD_THEME_ORANGE="Orange" 6 | TPL_PAULA_FIELD_THEME_BLUE="Blue" 7 | TPL_PAULA_FIELD_LOGOTYPE="Logostyle" 8 | TPL_PAULA_FIELD_LOGOTYPE_DESC="Chose here if you want to display your logo as text or image" 9 | TPL_PAULA_FIELD_LOGOTYPE_TEXT="Textlogo" 10 | TPL_PAULA_FIELD_LOGOTYPE_IMG="Imagelogo" 11 | TPL_PAULA_FIELD_LOGOTEXT="Logotext" 12 | TPL_PAULA_FIELD_LOGOTEXT_DESC="Type in the Text that should be displayed as your Logo" 13 | TPL_PAULA_FIELD_IMGUPLOAD="Upload Image" 14 | TPL_PAULA_FIELD_IMGUPLOAD_DESC="Upload an image in 200 x 20px" 15 | TPL_PAULA_FIELD_ALT="Logo alt text" 16 | TPL_PAULA_FIELD_ALT_DESC="Type in the alt-tag for the logoimage" 17 | TPL_PAULA_FIELD_MAINOUTPUT= "Output Component-Area" 18 | TPL_PAULA_FIELD_MAINOUTPUT_DESC="Chose if the Component and the right sidebar should be displayed." -------------------------------------------------------------------------------- /paula/language/de-DE/de-DE.tpl_paula.ini: -------------------------------------------------------------------------------- 1 | PAULA="Paula Template" 2 | TPL_PAULA_DESC="Mein erstes Joomla! Template" 3 | TPL_PAULA_FIELD_THEME="Templatefarbe" 4 | TPL_PAULA_FIELD_THEME_DESC="Wählen Sie hier die Templatefarbe aus" 5 | TPL_PAULA_FIELD_THEME_ORANGE="Orange" 6 | TPL_PAULA_FIELD_THEME_BLUE="Blau" 7 | TPL_PAULA_FIELD_LOGOTYPE="Logoart" 8 | TPL_PAULA_FIELD_LOGOTYPE_DESC="Wählen Sie hier aus ob Sie das Logo als Text oder Bild darstellen wollen" 9 | TPL_PAULA_FIELD_LOGOTYPE_TEXT="Textlogo" 10 | TPL_PAULA_FIELD_LOGOTYPE_IMG="Bildlogo" 11 | TPL_PAULA_FIELD_LOGOTEXT="Logotext" 12 | TPL_PAULA_FIELD_LOGOTEXT_DESC="Tragen Sie hier den Text ein, der als Logo erscheinen soll" 13 | TPL_PAULA_FIELD_LOGOIMG="Bild hochladen" 14 | TPL_PAULA_FIELD_LOGOIMG_DESC="Laden Sie hier ein Bild im Format 200 x 20px hoch" 15 | TPL_PAULA_FIELD_LOGOIMG_ALT="Logo Alt Text" 16 | TPL_PAULA_FIELD_IMGUPLOAD_ALT_DESC="Tragen Sie hier den Alt-tag für das Logobild ein" 17 | TPL_PAULA_FIELD_MAINOUTPUT= "Komponentenbereich ausgeben" 18 | TPL_PAULA_FIELD_MAINOUTPUT_DESC="Wählen Sie aus ob die Komponente und die rechte Seitenleiste angezeigt werden sollen." -------------------------------------------------------------------------------- /paula/js/creative.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Creative v1.1.0 (http://startbootstrap.com/template-overviews/creative) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */ 6 | !function(a){"use strict";a("a.page-scroll").bind("click",function(e){var o=a(this);a("html, body").stop().animate({scrollTop:a(o.attr("href")).offset().top-50},1250,"easeInOutExpo"),e.preventDefault()}),a("body").scrollspy({target:".navbar-fixed-top",offset:51}),a(".navbar-collapse ul li a:not(.dropdown-toggle)").click(function(){a(".navbar-toggle:visible").click()}),a("#mainNav").affix({offset:{top:100}}),window.sr=ScrollReveal(),sr.reveal(".sr-icons",{duration:600,scale:.3,distance:"0px"},200),sr.reveal(".sr-button",{duration:1e3,delay:200}),sr.reveal(".sr-contact",{duration:600,scale:.3,distance:"0px"},300),a(".popup-gallery").magnificPopup({delegate:"a",type:"image",tLoading:"Loading image #%curr%...",mainClass:"mfp-img-mobile",gallery:{enabled:!0,navigateByImgClick:!0,preload:[0,1]},image:{tError:'The image #%curr% could not be loaded.'}})}(jQuery); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /paula/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2013-2016 Blackrock Digital LLC. 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # paula-joomla-template 2 | Joomla! Frontend Template basierend auf https://github.com/BlackrockDigital/startbootstrap-creative / 3 | Eine Beschreibung des Templates sowie alle Informationen zur Konfiguration finden Sie im Buch 4 | Joomla! 3: Professionelle Webentwicklung. Aktuell zu Version 3.7 von David Jardin (Autor), Elisa Foltyn (Autor) 5 | Verlag: Carl Hanser Verlag GmbH & Co. KG; Auflage: 2 (11. September 2017) 6 | Sprache: Deutsch 7 | ISBN-10: 3446440151 8 | ISBN-13: 978-3446440159 9 | 10 | Das Kapitel im Buch behandelt in Kürze die Version 1.0 dieses Templates, die "master" Branch dient zur Weiterentwicklung. 11 | 12 | Jeder ist herzlich dazu eingeladen PRs oder Issues zu erstellen. 13 | 14 | Joomla! Frontend Template based on https://github.com/BlackrockDigital/startbootstrap-creative 15 | A description of the Template as well as all informations how to configure it, can be found in the (german) book: 16 | Joomla! 3: Professionelle Webentwicklung. Aktuell zu Version 3.7 von David Jardin (Autor), Elisa Foltyn (Autor) 17 | Verlag: Carl Hanser Verlag GmbH & Co. KG; Auflage: 2 (11. September 2017) 18 | Sprache: Deutsch 19 | ISBN-10: 3446440151 20 | ISBN-13: 978-3446440159 21 | 22 | The bookchapter decribes shortly the version 1.0 of this template. the "master" branch is an extended version. 23 | 24 | Feel free to do PR or to open issues. 25 | -------------------------------------------------------------------------------- /paula/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | 3 | .transition-all() { 4 | -webkit-transition: all 0.35s; 5 | -moz-transition: all 0.35s; 6 | transition: all 0.35s; 7 | } 8 | 9 | .background-cover() { 10 | -webkit-background-size: cover; 11 | -moz-background-size: cover; 12 | background-size: cover; 13 | -o-background-size: cover; 14 | } 15 | 16 | .button-variant(@color; @background; @border) { 17 | color: @color; 18 | background-color: @background; 19 | border-color: @border; 20 | .transition-all; 21 | 22 | &:hover, 23 | &:focus, 24 | &.focus, 25 | &:active, 26 | &.active, 27 | .open > .dropdown-toggle& { 28 | color: @color; 29 | background-color: darken(@background, 5%); 30 | border-color: darken(@border, 7%); 31 | } 32 | &:active, 33 | &.active, 34 | .open > .dropdown-toggle& { 35 | background-image: none; 36 | } 37 | &.disabled, 38 | &[disabled], 39 | fieldset[disabled] & { 40 | &, 41 | &:hover, 42 | &:focus, 43 | &.focus, 44 | &:active, 45 | &.active { 46 | background-color: @background; 47 | border-color: @border; 48 | } 49 | } 50 | 51 | .badge { 52 | color: @background; 53 | background-color: @color; 54 | } 55 | } 56 | 57 | .sans-serif-font() { 58 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 59 | } 60 | 61 | .serif-font() { 62 | font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif; 63 | } -------------------------------------------------------------------------------- /paula/html/mod_articles_news/portfolio.php: -------------------------------------------------------------------------------- 1 | get('module_tag', 'section'); 3 | $moduleId = $module->position . '-' . $module->id; 4 | ?> 5 | 6 | < class="no-padding" id=""> 7 |
get('offline_message'); ?>
82 | get('display_offline_message', 1) == 2) : ?> 83 | 84 | 85 |Der Link ist möglicherweise veraltet oder Sie haben sich vertippt? 74 |
75 | 76 |
Am Besten fangen wir von neuem an:
77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 95 |115 |
_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>
116 | renderBacktrace(); ?> 117 | setError($this->_error->getPrevious()); ?> 118 | 119 | 120 | setError($this->error); ?> 121 | 122 |