This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if entry ?? null and entry.entryImage.one() ?? null and watermark.globalWatermark.one() ?? null %} | |
{% set watermarkField = watermark.globalWatermark.one() %} | |
{# -- Check if Watermark Using active -- #} | |
{% if watermarkField.useWatermark %} | |
{# -- Watermark Image -- #} | |
{% if watermarkField.image.one() ?? null %} | |
{% set watermarkImage = watermarkField.image.one() %} | |
{% set watermarkWidth = watermarkField.width %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if entry ?? null and entry.entryImage.one() ?? null and watermark.globalWatermark.one() ?? null %} | |
{% set watermarkField = watermark.globalWatermark.one() %} | |
{# -- Check if Watermark Using active -- #} | |
{% if watermarkField.useWatermark %} | |
{# -- Watermark Image -- #} | |
{% if watermarkField.image.one() ?? null %} | |
{% set watermarkImage = watermarkField.image.one() %} | |
{% set watermarkWidth = watermarkField.width %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019-08-06 00:20:22 [-][-][-][info][yii\db\Connection::open] Opening DB connection: mysql:host=localhost;dbname=craft3_local;port=3306; | |
2019-08-06 00:20:22 [-][-][-][profile begin][yii\db\Connection::open] Opening DB connection: mysql:host=localhost;dbname=craft3_local;port=3306; | |
2019-08-06 00:20:22 [-][-][-][profile end][yii\db\Connection::open] Opening DB connection: mysql:host=localhost;dbname=craft3_local;port=3306; | |
2019-08-06 00:20:22 [-][-][-][info][yii\db\Command::query] SHOW TABLES | |
2019-08-06 00:20:22 [-][-][-][profile begin][yii\db\Command::query] SHOW TABLES | |
2019-08-06 00:20:22 [-][-][-][profile end][yii\db\Command::query] SHOW TABLES | |
2019-08-06 00:20:22 [-][-][-][info][yii\web\Session::open] Session started | |
2019-08-06 00:20:22 [-][-][-][trace][craft\web\Application::_processActionRequest] Route requested: 'install/validate-site' | |
2019-08-06 00:20:22 [-][-][-][trace][yii\base\Controller::runAction] Route to run: install/validate-site | |
2019-08-06 00:20:22 [-][-][-][trace][yii\base\InlineAction::runWith |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
An Error occurred while handling another error: | |
craft\errors\SiteNotFoundException: No primary site exists in /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/craftcms/cms/src/services/Sites.php:496 | |
Stack trace: | |
#0 /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/craftcms/cms/src/web/Request.php(1194): craft\services\Sites->getPrimarySite() | |
#1 /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/craftcms/cms/src/web/Request.php(191): craft\web\Request->_requestedSite(Object(craft\services\Sites)) | |
#2 /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/yiisoft/yii2/base/BaseObject.php(109): craft\web\Request->init() | |
#3 [internal function]: yii\base\BaseObject->__construct(Array) | |
#4 /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/yiisoft/yii2/di/Container.php(384): ReflectionClass->newInstanceArgs(Array) | |
#5 /Users/davidhellmann/___DEV/___Private/craft3/___dist/vendor/yiisoft/yii2/di/Container.php(156): yii\di\Container->build('craft\\web\\Reque...', Array, Ar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Webpack Config | |
* | |
* @package generator-baukasten | |
* @author David Hellmann <[email protected]> | |
*/ | |
import {BundleAnalyzerPlugin} from 'webpack-bundle-analyzer'; | |
import {getIfUtils, removeEmpty} from 'webpack-config-utils'; | |
import ExtractTextPlugin from 'extract-text-webpack-plugin'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Countdown | |
--> | |
<template> | |
<div :class="rootClass"> | |
<div :class="`${cn}__col`"> | |
<span :class="`${cn}__number`">{{ days }}</span> | |
<div :class="`${cn}__format`">{{ days === 1 ? 'Day' : 'Days' }}</div> | |
</div> | |
<div :class="`${cn}__col`"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# @var craft \craft\web\twig\variables\CraftVariable #} | |
{# @var entry \craft\elements\Entry #} | |
{# | |
Description of what this file is for | |
@package baukasten | |
@author David Hellmann [[email protected]] | |
o-contactForm | |
------------------------------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# -- Block: Event Highlights -- #} | |
{% block eventHighlights %} | |
{% set currentDateString = now.format('Y-m-d') %} | |
{% set nextEvents = craft.entries() | |
.section('events') | |
.orderBy('startDate asc') | |
.limit(4) | |
.where('content.field_requiresParticipationFromBeginning = FALSE AND content.field_endDate IS NULL AND content.field_startDate >="' ~ currentDateString ~ '"') | |
.orWhere('content.field_requiresParticipationFromBeginning = FALSE AND content.field_endDate >= "' ~ currentDateString ~ '"') | |
.orWhere('content.field_requiresParticipationFromBeginning = TRUE AND content.field_startDate >"' ~ currentDateString ~ '"') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# @var craft \craft\web\twig\variables\CraftVariable #} | |
{# @var entry \craft\elements\Entry #} | |
{# | |
Description of what this file is for | |
@package de.bistum-passau.www | |
@author David Hellmann [[email protected]] | |
e-boxArticlesAside |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div :class="`${cn}`"> | |
<div :class="`${cn}__slider`" ref="sliderWrapper" @mousemove="setCursor"> | |
<Navigation :class="`${cn}__navigation`"> | |
asd | |
</Navigation> | |
<div :class="`${cn}__sliderSlide`" | |
ref="sliderSlide" | |
:style="`transform: translateX(${getLastXPosition}px);`"> | |
<!-- Slider Content --> |