init
This commit is contained in:
commit
652e8ad917
22
package.json
Executable file
22
package.json
Executable file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "bassket.band",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"authors": {
|
||||
"name": "",
|
||||
"email": ""
|
||||
},
|
||||
"repository": "/bassket.band",
|
||||
"scripts": {
|
||||
"dev": "vuepress dev src",
|
||||
"build": "vuepress build src"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"vuepress": "^1.9.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vuepress/theme-default": "^1.9.7"
|
||||
}
|
||||
}
|
27
src/.vuepress/components/HomeImages.vue
Normal file
27
src/.vuepress/components/HomeImages.vue
Normal file
@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="HomeImages">
|
||||
<img alt="cover-image" src="/images/cover-1.jpg">
|
||||
<img alt="cover-image" src="/images/cover-2.jpg">
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "HomeImages"
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.HomeImages {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
img {
|
||||
flex-grow: 1;
|
||||
max-width: 20rem !important;
|
||||
margin: 1rem;
|
||||
border-radius: .25rem;
|
||||
}
|
||||
</style>
|
21
src/.vuepress/config.js
Executable file
21
src/.vuepress/config.js
Executable file
@ -0,0 +1,21 @@
|
||||
const { defaultTheme } = require('@vuepress/theme-default');
|
||||
|
||||
module.exports = {
|
||||
title: 'Bassket Band',
|
||||
description: '',
|
||||
head: [],
|
||||
theme: defaultTheme,
|
||||
themeConfig: {
|
||||
repo: '',
|
||||
editLinks: false,
|
||||
docsDir: '',
|
||||
editLinkText: '',
|
||||
lastUpdated: false,
|
||||
colorMode: 'dark',
|
||||
colorModeSwitch: true,
|
||||
},
|
||||
plugins: [
|
||||
'@vuepress/plugin-back-to-top',
|
||||
'@vuepress/plugin-medium-zoom',
|
||||
]
|
||||
}
|
14
src/.vuepress/enhanceApp.js
Executable file
14
src/.vuepress/enhanceApp.js
Executable file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Client app enhancement file.
|
||||
*
|
||||
* https://v1.vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements
|
||||
*/
|
||||
|
||||
export default ({
|
||||
Vue, // the version of Vue being used in the VuePress app
|
||||
options, // the options for the root Vue instance
|
||||
router, // the router instance for the app
|
||||
siteData // site metadata
|
||||
}) => {
|
||||
// ...apply enhancements for the site.
|
||||
}
|
BIN
src/.vuepress/public/images/cover-1.jpg
Normal file
BIN
src/.vuepress/public/images/cover-1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 197 KiB |
BIN
src/.vuepress/public/images/cover-2.jpg
Normal file
BIN
src/.vuepress/public/images/cover-2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
8
src/.vuepress/styles/index.styl
Executable file
8
src/.vuepress/styles/index.styl
Executable file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Custom Styles here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/config/#index-styl
|
||||
*/
|
||||
|
||||
.home .hero img
|
||||
max-width 450px!important
|
10
src/.vuepress/styles/palette.styl
Executable file
10
src/.vuepress/styles/palette.styl
Executable file
@ -0,0 +1,10 @@
|
||||
/**
|
||||
* Custom palette here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/zh/config/#palette-styl
|
||||
*/
|
||||
|
||||
$accentColor = #af7a3e
|
||||
$textColor = #222222
|
||||
$borderColor = #eaecef
|
||||
$codeBgColor = #282c34
|
15
src/config/README.md
Executable file
15
src/config/README.md
Executable file
@ -0,0 +1,15 @@
|
||||
---
|
||||
sidebar: auto
|
||||
---
|
||||
|
||||
# Config
|
||||
|
||||
## foo
|
||||
|
||||
- Type: `string`
|
||||
- Default: `/`
|
||||
|
||||
## bar
|
||||
|
||||
- Type: `string`
|
||||
- Default: `/`
|
5
src/guide/README.md
Executable file
5
src/guide/README.md
Executable file
@ -0,0 +1,5 @@
|
||||
# Introduction
|
||||
|
||||
VuePress is composed of two parts: a [minimalistic static site generator](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/core) with a Vue-powered [theming system](https://v1.vuepress.vuejs.org/theme/) and [Plugin API](https://v1.vuepress.vuejs.org/plugin/), and a [default theme](https://v1.vuepress.vuejs.org/theme/default-theme-config.html) optimized for writing technical documentation. It was created to support the documentation needs of Vue's own sub projects.
|
||||
|
||||
Each page generated by VuePress has its own pre-rendered static HTML, providing great loading performance and is SEO-friendly. Once the page is loaded, however, Vue takes over the static content and turns it into a full Single-Page Application (SPA). Additional pages are fetched on demand as the user navigates around the site.
|
9
src/guide/using-vue.md
Executable file
9
src/guide/using-vue.md
Executable file
@ -0,0 +1,9 @@
|
||||
# Using Vue in Markdown
|
||||
|
||||
## Browser API Access Restrictions
|
||||
|
||||
Because VuePress applications are server-rendered in Node.js when generating static builds, any Vue usage must conform to the [universal code requirements](https://ssr.vuejs.org/en/universal.html). In short, make sure to only access Browser / DOM APIs in `beforeMount` or `mounted` hooks.
|
||||
|
||||
If you are using or demoing components that are not SSR friendly (for example containing custom directives), you can wrap them inside the built-in `<ClientOnly>` component:
|
||||
|
||||
##
|
18
src/impressum.md
Normal file
18
src/impressum.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
sidebar: auto
|
||||
---
|
||||
# Impressum
|
||||
## Angaben gemäß § 5 TMG
|
||||
|
||||
**Jakob Kößler**<br>
|
||||
Vogelholz 6<br>
|
||||
74523 Schwäbisch Hall
|
||||
|
||||
Vertreten durch:<br>
|
||||
Jakob Kößler
|
||||
|
||||
## Haftungsausschluss:
|
||||
|
||||
### Haftung für Links
|
||||
|
||||
Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.
|
29
src/index.md
Executable file
29
src/index.md
Executable file
@ -0,0 +1,29 @@
|
||||
---
|
||||
sidebar: auto
|
||||
---
|
||||
# Bassket Band
|
||||
|
||||
Hey wir sind Bassket - Definitiv keine Schülerband
|
||||
|
||||
<HomeImages />
|
||||
|
||||
Wir sind Anna-Sophie, Jakob, Leif, Elena und haben uns Anfang 2022 gegründet.
|
||||
|
||||
|
||||
## Aktuelles
|
||||
- Interview auf [sthoerfunk.de](http://www.sthoerfunk.de/blog/post.php?s=2022-03-30-die-haller-band-bassket-im-interview)
|
||||
|
||||
## Socials
|
||||
|
||||
### Instagram
|
||||
|
||||
[@bassket.band](https://instagram.com/bassket.band)
|
||||
|
||||
**Mitglieder:**
|
||||
- Leif: [@Leif.jsk](https://instagram.com/leif.jsk)
|
||||
- Elena: [@elena.vonloe](https://instagram.com/elena.vonloe)
|
||||
- Anna-Sophie: [@annnasophie_](https://instagram.com/annnasophie_)
|
||||
- Jakob: [@der.\_wahre\_jakob](https://instagram.com/der._wahre_jakob)
|
||||
|
||||
---
|
||||
[impressum](/impressum.html)
|
Loading…
Reference in New Issue
Block a user