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
<?php | |
namespace App\GraphQL\Queries; | |
use GraphQL\Type\Definition\Type; | |
use Illuminate\Support\Str; | |
use Statamic\Facades\Entry; | |
use Statamic\Facades\GraphQL; | |
use Statamic\GraphQL\Middleware\ResolvePage; | |
use Statamic\GraphQL\Queries\Concerns\FiltersQuery; |
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 ref="el" class="animated-container"> | |
<slot /> | |
</div> | |
</template> | |
<script setup> | |
const props = defineProps({ | |
start: { type: String, default: null }, | |
end: { type: String, default: null }, |
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
<section class="hero-section"> | |
<img class="hero-section__cover-image" src="https://res.cloudinary.com/delicious-cookie/image/upload/v1621503559/eldora/Sushi-Bowls_sst_1177552363_freigestellt-mit-Schatten_lowres_1_dtikls.png" alt=""> | |
<div class="container"> | |
<h1>Oase am See</h1> | |
<p>Willkommen im Quai Café. Willkommen in unserer Oase am See. Wir sind die Anlaufstelle für den perfekten Barista-Kaffee am Morgen, eine entspannte Mittagspause oder den Apéro nach Feierabend. Kommen Sie vorbei und probieren Sie unsere Sushi-Spezialitäten oder gönnen Sie sich ein Apéroplättchen mit einem kühlen Drink.</p> | |
</div> | |
</section> | |
<section class="morning-section"> |
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
<div style="z-index: 1000;" class="fixed right-4 bottom-4 shadow-md rounded-full bg-black w-12 h-12 flex justify-center items-center font-bold pt-1"> | |
<span class="text-center text-white sm:hidden">less</span> | |
<span class="text-center text-white hidden sm:inline md:hidden">sm</span> | |
<span class="text-center text-white hidden md:inline lg:hidden">md</span> | |
<span class="text-center text-white hidden lg:inline xl:hidden">lg</span> | |
<span class="text-center text-white hidden xl:inline 2xl:hidden">xl</span> | |
<span class="text-center text-white hidden 2xl:inline 3xl:hidden">2xl</span> | |
<span class="text-center text-white hidden 3xl:inline 4xl:hidden">3xl</span> | |
<span class="text-center text-white hidden 4xl:inline">4xl</span> | |
</div> |
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
<script> | |
export default { | |
name: `TransitionExpand`, | |
functional: true, | |
render(createElement, context) { | |
const data = { | |
props: { | |
name: `expand`, | |
}, | |
on: { |
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
import {Controller, State, Inject, Init} from "../utils/Decorators" | |
@State({ | |
name: "member.home", | |
as: "homeCtrl", | |
url: "/", | |
templateUrl: "/views/home.html", | |
pageTitle: "Home" | |
}) | |
export class HomeController { |
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
import {Component, Alias, Inject, Init} from "../utils/Decorators" | |
@Alias('filterComp') | |
@Component({ | |
selector: "filterComponent", | |
templateUrl: '/views/components/filter-component.html', | |
bind: { | |
config: '=', | |
changed: '=', | |
user: '=' |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |