This commit is contained in:
2
frontend/.gitignore
vendored
2
frontend/.gitignore
vendored
@@ -22,3 +22,5 @@ logs
|
|||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
!.env.production
|
!.env.production
|
||||||
|
|
||||||
|
content/
|
||||||
@@ -36,14 +36,14 @@ function getToPath(targetKey: string): string {
|
|||||||
<span class="tab-sep">│</span>
|
<span class="tab-sep">│</span>
|
||||||
<span class="tab-label">/{{ $t('header.links.blog') }}</span>
|
<span class="tab-label">/{{ $t('header.links.blog') }}</span>
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<NuxtLink :to="getToPath('contact')" class="tui-tab" :class="{ 'tui-tab-active': isActive('contact') }">
|
|
||||||
<span class="tab-sep">│</span>
|
|
||||||
<span class="tab-label">/{{ $t('header.links.contact') }}</span>
|
|
||||||
</NuxtLink>
|
|
||||||
<NuxtLink :to="getToPath('art')" class="tui-tab" :class="{ 'tui-tab-active': isActive('art') }">
|
<NuxtLink :to="getToPath('art')" class="tui-tab" :class="{ 'tui-tab-active': isActive('art') }">
|
||||||
<span class="tab-sep">│</span>
|
<span class="tab-sep">│</span>
|
||||||
<span class="tab-label">/{{ $t('header.links.art') }}</span>
|
<span class="tab-label">/{{ $t('header.links.art') }}</span>
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
|
<NuxtLink :to="getToPath('contact')" class="tui-tab" :class="{ 'tui-tab-active': isActive('contact') }">
|
||||||
|
<span class="tab-sep">│</span>
|
||||||
|
<span class="tab-label">/{{ $t('header.links.contact') }}</span>
|
||||||
|
</NuxtLink>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -320,13 +320,6 @@ const sectionTargets = {
|
|||||||
</Container>
|
</Container>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="contact-section" id="scroll-contact">
|
|
||||||
<Container>
|
|
||||||
<h2 class="section-title">{{ t('pages.contact_heading') }}</h2>
|
|
||||||
<ContentRenderer v-if="contactMarkdown" :value="contactMarkdown"></ContentRenderer>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="art-section" id="scroll-art">
|
<section class="art-section" id="scroll-art">
|
||||||
<Container>
|
<Container>
|
||||||
<h2 class="section-title">{{ t('pages.art_heading') }}</h2>
|
<h2 class="section-title">{{ t('pages.art_heading') }}</h2>
|
||||||
@@ -349,6 +342,13 @@ const sectionTargets = {
|
|||||||
</p>
|
</p>
|
||||||
</Container>
|
</Container>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section class="contact-section" id="scroll-contact">
|
||||||
|
<Container>
|
||||||
|
<h2 class="section-title">{{ t('pages.contact_heading') }}</h2>
|
||||||
|
<ContentRenderer v-if="contactMarkdown" :value="contactMarkdown"></ContentRenderer>
|
||||||
|
</Container>
|
||||||
|
</section>
|
||||||
</FixedLayout>
|
</FixedLayout>
|
||||||
<Footer></Footer>
|
<Footer></Footer>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user