[Add] add link

- home page mailing list group
- home page sitcon 2021 hackmd
- header sitcon 2021 kktix
This commit is contained in:
mysper 2021-03-31 15:39:22 +08:00
parent add1f3bc82
commit 1547c730b3
2 changed files with 216 additions and 181 deletions

View File

@ -4,7 +4,10 @@
<div class="header__left">
<div class="header-logo">
<a href="/2021/">
<img src="~@/assets/images/home/home-headerIcon.svg" width="100%" />
<img
src="~@/assets/images/home/home-headerIcon.svg"
width="100%"
/>
</a>
</div>
</div>
@ -20,42 +23,55 @@
/>
<a
href="/2021/agenda"
v-bind:class="onRoute('Agenda') ? 'header-link--active' : ''"
v-bind:class="
onRoute('Agenda') ? 'header-link--active' : ''
"
>議程與活動</a
>
</li>
<li>
<a
href="/2021/traffic"
v-bind:class="onRoute('Traffic') ? 'header-link--active' : ''"
v-bind:class="
onRoute('Traffic') ? 'header-link--active' : ''
"
>交通方式</a
>
</li>
<li>
<a
href="/2021/venue"
v-bind:class="onRoute('Venue') ? 'header-link--active' : ''"
v-bind:class="
onRoute('Venue') ? 'header-link--active' : ''
"
>會場地圖</a
>
</li>
<li>
<a
href="/2021/sponsor"
v-bind:class="onRoute('Sponsor') ? 'header-link--active' : ''"
v-bind:class="
onRoute('Sponsor') ? 'header-link--active' : ''
"
>贊助資訊</a
>
</li>
<li>
<a
href="/2021/team"
v-bind:class="onRoute('Team') ? 'header-link--active' : ''"
v-bind:class="
onRoute('Team') ? 'header-link--active' : ''
"
>籌備團隊</a
>
</li>
</ul>
</div>
<div class="header-apply">
<a href="">
<a
href="https://sitcon.kktix.cc/events/sitcon2021"
target="_blank"
>
報名去
</a>
</div>
@ -64,10 +80,10 @@
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import { Component, Vue } from 'vue-property-decorator';
@Component({
props: ["route"],
props: ['route']
})
export default class Header extends Vue {
mounted() {
@ -80,5 +96,5 @@ export default class Header extends Vue {
</script>
<style lang="scss">
@import "@/assets/scss/header";
@import '@/assets/scss/header';
</style>

View File

@ -6,7 +6,10 @@
<p>SITCON 學生計算機年會 2021</p>
</div>
<div class="home__title-topic">
<img src="~@/assets/images/home/home-topic.svg" width="100%" />
<img
src="~@/assets/images/home/home-topic.svg"
width="100%"
/>
</div>
<div class="home__title-box2">
<p>
@ -24,7 +27,9 @@
src="~@/assets/images/home/home-icon-square.svg"
/>
<h1>算盤的後裔</h1>
<h2 class="home__info-title-h2--big">Descendants of the abacus</h2>
<h2 class="home__info-title-h2--big">
Descendants of the abacus
</h2>
</div>
<div class="home__info-paragraph">
<p>
@ -62,7 +67,9 @@
<div class="home__info-container">
<div class="home__info-title">
<h1>行為準則</h1>
<h2 class="home__info-title-h2--mid">Code of Conduct</h2>
<h2 class="home__info-title-h2--mid">
Code of Conduct
</h2>
</div>
<div class="home__info-paragraph">
<p>
@ -79,7 +86,9 @@
<div class="home__info-container">
<div class="home__info-title">
<h1>參與討論</h1>
<h2 class="home__info-title-h2--mid">Join the community</h2>
<h2 class="home__info-title-h2--mid">
Join the community
</h2>
</div>
<div class="home__info-paragraph">
<p>
@ -88,13 +97,23 @@
SITCON 的郵件論壇並貢獻你的想法
<br />
<br />
若你想進一步了解過往討論的內容也歡迎在 HackMD 上查看 SITCON 2021
的會議記錄
若你想進一步了解過往討論的內容也歡迎在 HackMD
上查看 SITCON 2021 的會議記錄
</p>
</div>
<div class="home__info-buttonsBox">
<a href="" class="home-button">郵件論壇</a>
<a href="" class="home-button">會議記錄</a>
<a
href="https://groups.google.com/g/sitcon-general"
class="home-button"
target="_blank"
>郵件論壇</a
>
<a
href="https://hackmd.io/@SITCON/SITCON2021"
class="home-button"
target="_blank"
>會議記錄</a
>
</div>
</div>
</section>
@ -108,10 +127,10 @@
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component({
components: {},
components: {}
})
export default class CFP extends Vue {
@Prop() private msg!: string;
@ -119,5 +138,5 @@ export default class CFP extends Vue {
</script>
<style lang="scss">
@import "@/assets/scss/home/home";
@import '@/assets/scss/home/home';
</style>