添加诗歌引用

错误
——郑愁予

我打江南走过
那等在季节里的容颜如莲花的开落

东风不来,三月的柳絮不飞
你的心如小小的寂寞的城
恰若青石的街道向晚
跫音不响,三月的春帷不揭
你的心是小小的窗扉紧掩

我达达的马蹄是美丽的错误
我不是归人,是个过客……

诗歌引用格式:

首先在:blog\layouts\shortcodes 文件夹下新建文件 quote-center.html,填入以下代码:

1
2
3
4
5
6
7
8
<blockquote class="quote-center">
    {{- $content := .Inner | markdownify -}}
    {{- if not (strings.HasPrefix $content "<p>") }}
        {{ printf `<p>%s</p>` $content | safeHTML }}
    {{- else }}
        {{- $content }}
    {{- end -}}
</blockquote> 

其次在:\themes\meme\assets\scss\custom\ 下的 _custom.scss 填入以下代码:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
blockquote.quote-center{
    position: relative;
    border-left: none;
    padding-left: 0;
    border-top: 0px solid var(--color-contrast-lower);
    border-bottom: 0px solid var(--color-contrast-lower);
    p{
        text-align: left !important;
        margin-left: 3.0em;
        margin-top: 2.0em;
        margin-bottom: 1.5em;
    }
    &::before {
        position: absolute;
        left: 0;
        content: '“';
        color: var(--color-contrast-low);
        font-size: 4.5em;
        font-weight: bold;
        margin-top: -0.75em;
    }
    &::after {
        position: absolute;
        right: 0;
        content: '';
        color: var(--color-contrast-low);
        font-size: 3em;
        font-weight: bold;
        margin-top: -0.74em;
    }
}

语法:

花括号放上去就被直接识别了,无奈只能用文字描述了……

两个花括号< quote-center >两个花括号
诗歌内容
两个花括号< /quote-center >两个花括号

效果: 见本文开头。

加载评论