添加友情链接
This commit is contained in:
parent
06dfbf889d
commit
a2539803c5
@ -76,6 +76,11 @@
|
|||||||
.detail
|
.detail
|
||||||
nuxt-link(:to="'/post/' + hotArticle.ID", :title='hotArticle.post_title') {{ hotArticle.post_title }}
|
nuxt-link(:to="'/post/' + hotArticle.ID", :title='hotArticle.post_title') {{ hotArticle.post_title }}
|
||||||
.meta {{ hotArticle.post_modified }}
|
.meta {{ hotArticle.post_modified }}
|
||||||
|
.widget.links(v-if="$route.path === '/'")
|
||||||
|
.widgetTitle
|
||||||
|
label 友情链接
|
||||||
|
.links
|
||||||
|
a(href="https://johnsonlee.site/" target="_blank") Johnson Blog
|
||||||
#tags.widget.tags
|
#tags.widget.tags
|
||||||
.widgetTitle
|
.widgetTitle
|
||||||
label 标签
|
label 标签
|
||||||
|
@ -204,6 +204,9 @@ input:-moz-placeholder
|
|||||||
.widget
|
.widget
|
||||||
margin-bottom 10px
|
margin-bottom 10px
|
||||||
|
|
||||||
|
.links
|
||||||
|
margin-bottom 20px
|
||||||
|
|
||||||
.widgetTitle
|
.widgetTitle
|
||||||
font-size 18px
|
font-size 18px
|
||||||
line-height 100%
|
line-height 100%
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
const pkg = require('./package')
|
const pkg = require('./package')
|
||||||
|
|
||||||
const DevBaseUrl = 'http://127.0.0.1:65534'
|
// const DevBaseUrl = 'http://127.0.0.1:65534'
|
||||||
|
const DevBaseUrl = 'https://api.wyr.me'
|
||||||
const ProdBashUrl = 'https://api.wyr.me'
|
const ProdBashUrl = 'https://api.wyr.me'
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
@ -21,7 +21,7 @@ export default function (ctx, inject) {
|
|||||||
if (hotTmp >= 1) {
|
if (hotTmp >= 1) {
|
||||||
return 'full'
|
return 'full'
|
||||||
} else if (hotTmp >= 0.75 && hotTmp < 1) {
|
} else if (hotTmp >= 0.75 && hotTmp < 1) {
|
||||||
return 'threeQuarters'
|
return 'three-quarters'
|
||||||
} else if (hotTmp >= 0.5 && hotTmp < 0.75) {
|
} else if (hotTmp >= 0.5 && hotTmp < 0.75) {
|
||||||
return 'half'
|
return 'half'
|
||||||
} else if (hotTmp >= 0.25 && hotTmp < 0.5) {
|
} else if (hotTmp >= 0.25 && hotTmp < 0.5) {
|
||||||
|
Loading…
Reference in New Issue
Block a user