12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <div class="w-full flex flex-col min-h-screen bg-black">
- <Head>
- <Link rel="preconnect" href="https://fonts.googleapis.com"/>
- <Link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
- <Link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet"/>
- <Link rel="apple-touch-icon" sizes="180x180" :href="( basePath != '/' ? basePath : '' )+'/images/favicon/apple-touch-icon.png'"/>
- <Link rel="icon" type="image/png" sizes="32x32" :href="( basePath != '/' ? basePath : '' )+'/images/favicon/favicon-32x32.png'"/>
- <Link rel="icon" type="image/png" sizes="16x16" :href="( basePath != '/' ? basePath : '' )+'/images/favicon/favicon-16x16.png'"/>
- <Link rel="manifest" :href="( basePath != '/' ? basePath : '' )+'/images/favicon/site.webmanifest'"/>
- <Link rel="mask-icon" :href="( basePath != '/' ? basePath : '' )+'/images/favicon/safari-pinned-tab.svg'" color="#5bbad5"/>
- <Meta name="msapplication-TileColor" content="#da532c"/>
- <Meta name="theme-color" content="#ffffff"/>
- </Head>
-
- <GlobalServerSideUp
- :fixed="true"/>
- <MarketingHeader
- :fixed="true"/>
-
- <div class="w-full flex flex-col">
- <slot></slot>
- </div>
- <Search/>
- </div>
- </template>
- <script setup>
- useHead({
- htmlAttrs: {
- lang: 'en'
- },
- bodyAttrs: {
- class: 'antialiased'
- },
- title: 'PHP Docker Images (serversideup/php) - Server Side Up',
- script: [
- {
- src: 'https://f.convertkit.com/ckjs/ck.5.js'
- }
- ]
- })
- const route = useRoute();
- const { basePath, domain } = useRuntimeConfig().public;
- useSeoMeta({
- ogLocale: 'en_US',
- ogUrl: domain+basePath+route.path,
- ogType: 'website',
- ogSiteName: 'Server Side Up - Docker PHP',
- ogTitle: 'Server Side Up - Docker PHP',
- ogDescription: 'Supercharge your PHP experience, in seconds. Built upon the official PHP images, our production-ready serversideup/php images take your Docker PHP experience to the next level. Enjoy variable-first configurations, nginx-unit variation, native CloudFlare support, and more.',
- ogImage: domain+basePath+'/images/social-image.jpg',
- ogImageWidth: 1200,
- ogImageHeight: 630,
- ogImageType: 'image/jpg',
- twitterCard: 'summary_large_image',
- twitterDescription: 'Supercharge your PHP experience, in seconds. Built upon the official PHP images, our production-ready serversideup/php images take your Docker PHP experience to the next level. Enjoy variable-first configurations, nginx-unit variation, native CloudFlare support, and more.',
- twitterImage: domain+basePath+'/images/social-image.jpg',
- twitterSite: '@serversideup',
- twitterTitle: 'Server Side Up - Docker PHP'
- })
- </script>
|