alpha
Login
or
Join now
danielroe.dev
/
roe.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt.
roe.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: update copyright
author
Daniel Roe
date
4 years ago
(Feb 26, 2022, 10:12 PM UTC)
commit
858fa402
858fa40235c93c74b3d998bf6c8099ace696a550
parent
cf27dd60
cf27dd6007d138676ed87e0c27794bada7839879
+7
-1
2 changed files
Expand all
Collapse all
Unified
Split
src
components
layout
TheSiteFooter.vue
stylelint.config.js
+1
-1
src/components/layout/TheSiteFooter.vue
View file
Reviewed
···
1
1
<template>
2
2
<footer :class="$style.footer">
3
3
-
<small>© 2019-2020 Daniel Roe. All rights reserved.</small>
3
3
+
<small>© 2019-2022 Daniel Roe. All rights reserved.</small>
4
4
<ul>
5
5
<li v-for="{ link, name, icon } in links" :key="name">
6
6
<a :href="link">
+6
stylelint.config.js
View file
Reviewed
···
7
7
// add your custom config here
8
8
// https://stylelint.io/user-guide/configuration
9
9
rules: {
10
10
+
'function-no-unknown': [
11
11
+
true,
12
12
+
{
13
13
+
ignoreFunctions: ['theme'],
14
14
+
},
15
15
+
],
10
16
'at-rule-no-unknown': [
11
17
true,
12
18
{