Move all files to workshop-tailwind-css/demo/florida-drupalcamp/

This commit is contained in:
Oliver Davies 2025-10-02 23:17:29 +01:00
parent d38acd6876
commit 60d3cfc742
41 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Florida DrupalCamp{% endblock %}</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/build/tailwind.css"/>
{% block stylesheets %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js" defer></script>
{% block javascripts %}{% endblock %}
</body>
</html>

View file

@ -0,0 +1,5 @@
<div class="py-12 px-8 text-center sm:max-w-3xl sm:mx-auto">
<p class="text-xl leading-relaxed font-sans text-center text-blue-700 sm:text-3xl sm:leading-normal">Florida DrupalCamp is an annual conference that brings together web developers from all over the world to learn, network and discuss web development and the Drupal content management system.</p>
<a class="my-6 px-5 py-3 inline-block text-xl font-sans text-blue-700 border-2 border-blue-700 transition transition-color duration-200 ease-in-out hover:text-white hover:bg-blue-700 focus:text-white focus:bg-blue-700 sm:text-3xl" href="#0">Learn more</a>
</div>

View file

@ -0,0 +1,16 @@
<div class="xl:w-4/5 xl:mx-auto">
<div class="relative w-full flex flex-col items-center justify-center" style="height: 700px">
<img class="h-full w-full object-cover object-center" src="/images/auditorium_blur-tablet_narrow.jpg" alt="">
<div class="absolute inset-0 bg-blue-600 opacity-60 z-10"></div>
<img class="absolute h-4/6 z-10" src="/images/2020-logo.svg" alt="">
</div>
<div class="-mt-12 flex flex-col items-center lg:-mt-16">
<a class="py-5 px-6 flex items-center space-x-4 font-display relative text-4xl z-10 text-white bg-gradient-to-r from-dandelion to-hit-pink sm:text-5xl" href="#0">
<span>Register now</span>
<span>
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/></svg>
</span>
</a>
</div>
</div>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,7 @@
{% extends 'html.html.twig' %}
{% block body %}
{% include 'includes/navbar.html.twig' %}
{% block content %}{% endblock %}
{% endblock %}

View file

@ -0,0 +1,6 @@
{% extends 'page.html.twig' %}
{% block content %}
{% include 'includes/home/header.html.twig' %}
{% include 'includes/home/description.html.twig' %}
{% endblock %}