41 lines
790 B
Vue
41 lines
790 B
Vue
<template>
|
|
<LayoutMinimal title="Changelog">
|
|
<BaseTitle size="small">
|
|
27.07.2021
|
|
</BaseTitle>
|
|
<ul>
|
|
<li>Added simple statistics</li>
|
|
</ul>
|
|
<BaseTitle size="small">
|
|
21.05.2021
|
|
</BaseTitle>
|
|
<ul>
|
|
<li>Visual tweaks</li>
|
|
</ul>
|
|
<BaseTitle size="small">
|
|
12.04.2021
|
|
</BaseTitle>
|
|
<ul>
|
|
<li>Added toggle to change visibility of single projects and tags</li>
|
|
</ul>
|
|
</LayoutMinimal>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
|
import BaseTitle from "@/components/base/BaseTitle";
|
|
|
|
export default {
|
|
name: "Changelog",
|
|
components: {
|
|
LayoutMinimal,
|
|
BaseTitle
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
ul
|
|
list-style-type: '+ '
|
|
</style>
|