reuixiy / hugo-theme-meme

😝 You can’t spell awesome without MemE!

Home Page:https://io-oi.me/hugo-theme-meme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Awesome MemE!

reuixiy opened this issue · comments

This is a special issue for MemE users. Feel free to add your blog here! 😝

一休儿的哲学博客:https://yixiuer.me/

commented

awesome reuixiy 👍

commented

Is there any way to translate the date of the home page into Chinese?i18n translation file only take effect on the classification and tag pages!I really like this theme, is the home page display time can not be translated into Chinese, Google search did not answer!😳

主页的时间月份日期,有没有方法可以翻译成为中文?i18n文件只能对分类页和标签页生效。😳这个主题很合我胃口,就是主页的日期显示还不满意,搜索了一遍也不知道从哪里下手。

Screenshot_20190918-024839

Hi @wangxiaoerYah,

Thank you for trying MemE! 😄

Date format can be easily customized in Hugo and it’s quite interesting (see here). MemE also has a setting called postMetaDateFormat in config.toml to customize that.

For example:

  1. If you want to set the date format to 2019 年 9 月 17 日, just set postMetaDateFormat = "2006 年 1 月 2 日"
  2. If you want to set the date format to 2019-9-17, just set postMetaDateFormat = "2006-1-2"
  3. If you want to set the date format to 2019-09-17, just set postMetaDateFormat = "2006-01-02"

BTW, if you have any questions, please submit a new issue instead of asking questions here.

commented

wow, it is very beautiful, thank you!😜

Screenshot_20190918-140553

Looking forward ur an easy-to-understand tutorial🥺

@yixiuer 这个博客好漂亮,像纸质书的感觉。但不是直接使用这个主题就可以达到这个效果吧?

@yixiuer 谢谢,这个是真的漂亮,是我见过最好看的博客页面了。

commented

@yixiuer 谢谢,这个是真的漂亮,是我见过最好看的博客页面了。

我也这么认为,他们非觉得侧边栏的好看,我就觉得这种tab栏的更加简洁明快,而且特别适合移动端访问。

Tim's Blog
一直都没怎么弄,所以还很空荡荡,先占个坑吧😂。

我也贴一个:Zander Hsueh 欢迎互踩~~👣hhhh

As Me,a coder=SEE=GGHosts

Thank for your awesome work @reuixiy . Mine is here, almost completed.

我也贴一下我的,欢迎互踩倚窗,听雨

MemE主题很漂亮!跟着博主从Hexo到Hugo。顺便贴一下我的博客

鄙人的blog地址 疯言疯语刚刚建立,内容约等于零,欢迎来踩 🙈

新增了技术类博客(其实是踩坑记录):HE-SB-技术栈,welcome~ 😄

MemE主题很漂亮!跟着博主从Hexo到Hugo。顺便贴一下我的博客

哇!你的博客还有音乐播放⏯功能呢!?求教程呀!

@ZhaoTim 在meme/layouts/partials/custom/head.html中加入下面内容:

<!-- require APlayer -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css">
<script src="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
<!-- require MetingJS -->
<script src="https://cdn.jsdelivr.net/npm/meting@2/dist/Meting.min.js"></script>

然后在你需要加歌单的.md文件中加入:

<meting-js
	server="netease"
	type="playlist"
	id="2318328820">
</meting-js>

把其中的id的值改为你自己的歌单的id~。

详细见: https://github.com/metowolf/MetingJS

@he-sb 主题已支持了,且完全适配深色模式~

@Wjiajie 建议新建 ~/blog/layouts/partials/custom/head.html,这样能直接覆盖主题的文件。建议不要直接编辑主题的文件,不利于主题的更新。

@reuixiy 好的,学习了

@he-sb 主题已支持了,且完全适配深色模式~

@Wjiajie 建议新建 ~/blog/layouts/partials/custom/head.html,这样能直接覆盖主题的文件。建议不要直接编辑主题的文件,不利于主题的更新。

为你点赞!这两天考研,明晚更新一下 👍

@he-sb 主题已支持了,且完全适配深色模式~
@Wjiajie 建议新建 ~/blog/layouts/partials/custom/head.html,这样能直接覆盖主题的文件。建议不要直接编辑主题的文件,不利于主题的更新。

为你点赞!这两天考研,明晚更新一下 👍

打扰了,加油💪

@he-sb 主题已支持了,且完全适配深色模式~
@Wjiajie 建议新建 ~/blog/layouts/partials/custom/head.html,这样能直接覆盖主题的文件。建议不要直接编辑主题的文件,不利于主题的更新。

为你点赞!这两天考研,明晚更新一下 +1

打扰了,加油

没事没事,我就一陪跑的哈哈,谢谢你~

贴上我的博客地址:https://muhosia.xyz/

@CurtainTears

看了下,应该是 APlayerSmooth Scroll 的兼容问题,怎么解决我也不知道……

一个 Workaround,添加一层逻辑控制 APlayer 的加载:

{{ if .Params.aplayer }}
    <!-- require APlayer -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css">
    <script src="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
    <!-- require MetingJS -->
    <script src="https://cdn.jsdelivr.net/npm/meting@2/dist/Meting.min.js"></script>
{{ end }}

这样只有在需要添加音乐的文章的 Front Matter 中加上 aplayer: true,才会加载 APlayer。

@reuixiy 在config.toml里 displayTOCTitle 设置为了true 但是并没有显示标题。

我的:
image
希望的:
image

@CurtainTears

请移步 #57

声明:这条 Issue 的目的是供大家分享自己的博客的,请不要在这里提问。如果有问题,请新建一个 Issue,这样更有利于问题的追踪。

commented

我也贴一个:Zander Hsueh 欢迎互踩~~hhhh

那个渐变色上面的文字在哪里修改啊

My homepage: zealscott.com
My tech blog: tech.zealscott.com
My life blog: life.zealscott.com
Thanks for the wonderful theme, I use it in my two blogs.
Hope to know more interesting bloggers!

commented

My personal blog website:Dawner
Welcome!

commented

分享一下我的博客,主要内容是各种踩坑和学习记录:vchv的网络日志

$ hugo server -t meme -buildDrafts
Building sites … Built in 53 ms
Error: Error building site: TOCSS: failed to transform "en/styles/main-rendered.scss" (text/x-scss): resource "scss/scss/main.scss_3166784b08e375d0eb80cb97d69bdac9" not found in file cache
请问出现这种错误如何解决呀?

@OldHuang-C 你好,

请安装最新版的扩展版(extended version) Hugo。

另如有问题,请移步 Issues 区,谢谢。

zhix.co

感谢 MemE 主题和 @reuixiy,MemE 功能很强大,最近集成的 mermaid 棒极了。

@NImnahc #2 (comment)

你好,我已经按照配置将博客部署到了 IPFS,但是无法使用 Lighthouse 

我的博客 matnoble.me 可以正常访问

我知道这并不是 MEME 主题的问题,应该是 Cloudflare 某处没有设置好,我 google 了好多也没找到解决方案,不知道您是否了解,大致哪个设置会影响,谢谢

@MatNoble 网络问题

2020-04-05-10-27-54

@reuixiy 谢谢了,现在 work 了。也许是因为我昨天刚迁移到 IPFS ...

acuario.xyz

很喜欢一休做的 MemE 主题,希望越来越完善!

MemE 好美,简洁,清爽,阅读感觉很好,我的博客~https://blog.hkvim.com/

commented

非常感谢作者开发出这个主题,美观简洁但又功能丰富。期待作者能完善一下tutorial,形成类似 NexT 主题那样完善的文档,方便我这样的小白进行配置。这是我的博客:XEON CHOW

Thanks @reuixiy for the amazing theme!

Here's mine https://tokenbrice.xyz

I am not a dev and I was able to figure it out thanks to your theme, ty for commenting a lot! If you have a minute, there is still one thing I can't figure out - the multilingual menu, but I have a few things left to try. :)

Cheers.

@TokenBrice Glad to hear that!

Your site looks great to me, can you submit a new issue to describe the problem you encountered?

So as expected it turned out that I was doing something wrong - so I don't think is an issue.

I initially defined my FR menu inside the [menu] in the config.toml, instead of on their own. Code speaks more than words.

I was doing this:

[menu]
    [[menu.main]]
        url = "/posts/"
        name = "Archive"
        weight = 2
        pre = "internal"
        post = ""
    # etc
    [[languages.fr.menu.main]]
        url = "/fr/posts/"
        name = "Archives"
        weight = 2
        pre = "internal"
        post = ""
        # etc

Instead of:

[menu]
    [[menu.main]]
        url = "/posts/"
        name = "Archive"
        weight = 2
        pre = "internal"
        post = ""
    # etc

[[languages.fr.menu.main]]
    url = "/fr/posts/"
    name = "Archives"
    weight = 2
    pre = "internal"
    post = ""
    # etc

Awesome MemE!
This is mine: https://yuhi.xyz

https://dustinspecker.com/ Thank you for this theme! It's amazing! Very easy to use!

The theme switch is finally live: https://palant.info/

commented

You can't spell "awesome" without "ME" 霉粉来报个道 🙋‍♂️

My blog: https://blog.imfing.com

The website of my PfP: Pain-free Passwords project is now using MemE as well: https://pfp.works/

commented

我的博客:https://gears233.github.io
欢迎来踩踩!

喜欢这个主题~
My Blog: Evergarden

BORBER 欢迎来访

MemE主题的 Hugo博客: https://uuatm.com

Awesome theme! Thanks!!
My blog is using meme theme now.

This theme is great!
My tech blog and personal homepage FineConstant

commented

I just launched my blog with meme! Check out Quasi Engineer!

Simple yet beautiful theme!
Proudly using MemE, my blog is DEROOCE

很棒的主题 👍 ,贴一下我的博客地址 Shall We Code?,内容主要是 Python 和一些工具的分享。

My blog using Meme template p3n7a90n

这个主题真的很不错,可定制性也可以,不过我不太会css什么的,也改不了什么,哈哈

我也贴一下我的博客地址吧,qarks,记录的都是一些学习心得或生活琐事

I love this theme❤️ .
Rochefort.dev

感谢作者,主题很好看,非常喜欢。❤️
我的博客:Changxv's Blog

感谢作者,我很喜欢这个主题,特地从 hexo 的 next 主题换成 hugo 的 MemE,就是要这种简约的风格。
blog.fstars.wang

commented

从 hexo next 迁移过来,很喜欢这种风格
https://zpyg.github.io/

My blog: https://akshayg.in/
Thanks for wonderful theme. ❤️

我的博客,欢迎访问:https://jyan.wang/

不是博客,魔改成了个人主页 https://irislucent.github.io/
真的是宝藏主题!!

MemE主题很漂亮!跟着博主从Hexo到Hugo。顺便贴一下我的博客

您好,我能请教一下你的相册功能是怎么实现的吗?拜托了

MemE主题很漂亮!跟着博主从Hexo到Hugo。顺便贴一下我的博客

您好,我能请教一下你的相册功能是怎么实现的吗?拜托了

https://nanogallery2.nanostudio.org/ 可以看看这个

Welcome to visit my site:
http://luajit.io/

It focuses on luajit, openresty, debugging, nginx, rust, and other interesting topics.