[update] update header and nav information in ocfp

This commit is contained in:
mysper 2021-03-03 15:14:33 +08:00
parent 529b0fc9dc
commit d630fe7b4c
4 changed files with 13 additions and 13 deletions

View File

@ -86,7 +86,7 @@
<br />
若有任何問題或投稿建議 E-mail SITCON 議程組信箱 session[at]sitcon.org
</p>
<article class="info-section__content--sub">
<article class="info-section__content--sub" id="record">
<h2>錄影與紀錄</h2>
<p>
@ -128,7 +128,7 @@
</ul>
</p>
</article>
<article class="info-section__content--sub info-section__content--sub-extend">
<article class="info-section__content--sub info-section__content--sub-extend" id="QA">
<h2>Q&A</h2>
<div class="info-qa">
<div class="info-qa__itemBox">

View File

@ -30,7 +30,7 @@
<div class="time-wrapper">
<div class="start-time-wrapper">
<h2>投稿開始</h2>
<p>2021/01/20</p>
<p>現在</p>
</div>
<div class="tilde-wrapper">
<h2><!-- pseudo element --></h2>
@ -41,8 +41,8 @@
<div class="end-time-wrapper">
<h2>投稿結束</h2>
<p>
2021/02/22日出<small class="d-inline-block"
>清晨 0623</small
2021/04/06日出<small class="d-inline-block"
>清晨 0641</small
>
</p>
</div>
@ -55,7 +55,7 @@
import { Component, Prop, Vue } from 'vue-property-decorator';
const DEAD_LINE = Math.floor(
new Date('22 Feb 2021 06:24:00 GMT+8').getTime() / 1000
new Date('06 Apr 2021 06:41:00 GMT+8').getTime() / 1000
);
interface Countdown {

View File

@ -7,13 +7,13 @@
v-scrollspy="{ selectors: navbarItems }"
>
<a class="news-nav-item" href="#schedule">重要時程</a>
<a class="news-nav-item" href="#example">投稿主題範例</a>
<a class="news-nav-item" href="#example">投稿主題</a>
<a class="news-nav-item" href="#code-of-conduct">Code of Conduct</a>
<a class="news-nav-item" href="#info-section">議程種類</a>
<a class="news-nav-item" href="#process">流程</a>
<a class="news-nav-item" href="#methods">投稿方式</a>
<a class="news-nav-item" href="#methods">投稿格式</a>
<a class="news-nav-item" href="#review">審稿方式</a>
<a class="news-nav-item" href="#precautions">投稿注意事項</a>
<a class="news-nav-item" href="#record">錄影與紀錄</a>
<a class="news-nav-item" href="#QA">QA</a>
<a class="news-nav-contribute-button" target="_blank" rel="noopener" href="https://forms.gle/XoXJSD2P8dL8X8s2A" v-show="!isMobileView">我要投稿</a>
<button class="news-nav-button" @click="(e)=>navVisible=!navVisible" v-show="isMobileView">&#9650;</button>
</div>
@ -47,7 +47,9 @@ export default class Navbar extends Vue {
'#process',
'#methods',
'#review',
'#precautions'
'#precautions',
'#record',
'#QA'
];
public created () {

View File

@ -39,7 +39,6 @@
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
import AgendaCard from './AgendaCard.vue';
import Topic from './Topic.vue';
import Navbar from './Navbar.vue';
@ -50,7 +49,6 @@ import presentation from '../../../template/presentation.cfp';
@Component({
components: {
AgendaCard,
Topic,
Navbar
}