Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 pelican 构建了我的个人博客,但我不知道如何在我的页面中添加标题菜单。默认菜单是“评论”,我想添加一个类似“关于我”的菜单,但我不知道在哪里添加代码才能使我的页面正常工作。一些例子可能对我有帮助。
如果您在内容文件夹中创建一个名为 pages 的文件夹,则其中的所有文件都将用于生成静态页面,例如 About 或 Contact 页面。
引用Pelican Page 文档。
在您的情况下about.md,在 content/pages 文件夹中添加文件(pages如果不存在则创建文件夹)并设置文章标题Title: About Me。
about.md
pages
Title: About Me
可以base.html从模板文件夹覆盖菜单行为。
base.html