Skip to content

Commit

Permalink
Merge pull request #374 from scalamatsuri/fix-cfp-page-bugs
Browse files Browse the repository at this point in the history
fix cfp page bugs
  • Loading branch information
omiend committed Jun 11, 2024
2 parents 14f0025 + 288d207 commit 4303a7f
Showing 1 changed file with 45 additions and 43 deletions.
88 changes: 45 additions & 43 deletions pages/call-for-proposals/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,49 +123,51 @@ ja:

<template>
<MainVisual :title="t('title')" />
<div class="section">
<p class="section_text">
<span v-html="t('section1_body', { coc_link: localePath('code-of-conduct') })" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section3_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section3_body')" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section4_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section4_body')" />
</p>
<p class="section_text">
<br />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section2_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section2_body')" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section5_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section5_body')" />
</p>
<p class="section_text">
<br />
</p>
</div>
<ClientOnly>
<div class="section">
<p class="section_text">
<span v-html="t('section1_body', { coc_link: localePath('code-of-conduct') })" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section3_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section3_body')" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section4_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section4_body')" />
</p>
<p class="section_text">
<br />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section2_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section2_body')" />
</p>
</div>
<div class="section">
<h2 class="section_title">
<span class="section_title_inner">{{ t('section5_title') }}</span>
</h2>
<p class="section_text">
<span v-html="t('section5_body')" />
</p>
<p class="section_text">
<br />
</p>
</div>
</ClientOnly>
</template>

<script setup lang="ts">
Expand Down

0 comments on commit 4303a7f

Please sign in to comment.