html lang attribute

This commit is contained in:
Evert Prants 2022-10-15 18:35:55 +03:00
parent d469f88baf
commit b04fb7f381
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
2 changed files with 127 additions and 122 deletions

View File

@ -12,6 +12,9 @@ export default defineNuxtConfig({
}, },
app: { app: {
head: { head: {
htmlAttrs: {
lang: 'en',
},
charset: 'utf-8', charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1.0', viewport: 'width=device-width, initial-scale=1.0',
title: 'lunasqu.ee', title: 'lunasqu.ee',

View File

@ -1,4 +1,5 @@
<template> <template>
<main>
<Section> <Section>
<template v-slot:header> <template v-slot:header>
<h1>About me</h1> <h1>About me</h1>
@ -55,8 +56,8 @@
<ul> <ul>
<li>User accounts with display names and avatars</li> <li>User accounts with display names and avatars</li>
<li> <li>
Administration panel created using Vue.js for managing users and OAuth Administration panel created using Vue.js for managing users and
clients OAuth clients
</li> </li>
<li>A news outlet</li> <li>A news outlet</li>
</ul> </ul>
@ -98,8 +99,8 @@
<a href="https://github.com/arut/nginx-rtmp-module" target="_blank" <a href="https://github.com/arut/nginx-rtmp-module" target="_blank"
>nginx-rtmp-module</a >nginx-rtmp-module</a
> >
as the livestream server and channels are created for select Icy Network as the livestream server and channels are created for select Icy
users only. Network users only.
</p> </p>
<h3>Features</h3> <h3>Features</h3>
<ul> <ul>
@ -126,6 +127,7 @@
</p> </p>
<p>&copy; 2018 - {{ currentYear }} Evert Prants</p> <p>&copy; 2018 - {{ currentYear }} Evert Prants</p>
</footer> </footer>
</main>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">