mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-25 02:46:39 +07:00
added whole content
This commit is contained in:
parent
1b5df685cb
commit
8b25e0631a
70 changed files with 5962 additions and 19 deletions
48
pages/index.vue
Normal file
48
pages/index.vue
Normal file
|
@ -0,0 +1,48 @@
|
|||
<template>
|
||||
<NuxtLayout name="content">
|
||||
<main :class="$style.main">
|
||||
<HomeHeader />
|
||||
|
||||
<div :class="$style.reference">
|
||||
<h1>Cheatsheet</h1>
|
||||
|
||||
<div :class="$style.grid">
|
||||
<HomeContentList />
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</NuxtLayout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
scrollToTop: true,
|
||||
head() {
|
||||
return {
|
||||
title: "Obsidian Garden",
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
definePageMeta({ layout: false });
|
||||
</script>
|
||||
|
||||
<style lang="scss" module>
|
||||
@import "~~/assets/css/mixins";
|
||||
|
||||
.main {
|
||||
padding-top: 40px;
|
||||
|
||||
@include tablet {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.reference {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.grid {
|
||||
margin: 40px 5px 0;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue