This commit is contained in:
f4ilji
2024-11-03 17:42:10 +05:00
parent 63e760872b
commit 03ff222263
71 changed files with 2916 additions and 2117 deletions
+19
View File
@@ -0,0 +1,19 @@
<script setup>
import { Head } from '@inertiajs/vue3'
defineProps({
title: String,
description: String,
image: String,
})
</script>
<template>
<Head :title="title ? `${title} - Нижнетагильский государственый-педагогический институт` : 'Нижнетагильский государственый-педагогический институт'">
<meta name="description" :content="description">
<meta name="robots" content="index, follow">
<meta property="og:title" :content="title ? `${title} - Нижнетагильский государственый-педагогический институт` : 'Нижнетагильский государственый-педагогический институт'">
<meta property="og:description" :content="description">
<meta property="og:image" content="/img/thumbnail-1.png">
</Head>
</template>