iTimeTraveler / hexo-theme-hipaper

A fashional newspaper theme for Hexo.
https://itimetraveler.github.io/hexo-theme-hipaper/
MIT License
249 stars 77 forks source link

Articles preview configuration question #52

Open SSopin opened 3 years ago

SSopin commented 3 years ago

Hi,

I have a question about main page preview. When I use <!--more--> tag it stops displaying pictures in preview and converts headers into regular text, plus removes new line after the header.

For instance, if my page looks like this:

---
title: 'My page title'
date: 2021-01-01 00:00:00
tags: [tag1, tag2]
category: MyCategory 
---
![](main_picture.jpg)

# Intro

Some introductory text here.
<!--more-->
More text.

On the preview picture will be hidden and the text would look like this:

My page title

IntroSome introductory text here.

How can I fix it? On your demo it looks great. Thanks!

pmirek commented 1 year ago

You can use photos for that:

---
title: 'My page title'
date: 2021-01-01 00:00:00
photos:
   - https://url.of.your.photo/some-photo.jpg
tags: [tag1, tag2]
category: MyCategory 
---