在哪里可以找到适用于 Django 的可插入博客应用程序?
在哪里可以找到适用于 Django 的开源可插入博客应用程序?
它应该支持:
- RSS/Atom
- 评论
- 内置的 Django 身份验证系统
- Markdown (可选)
- Akismet 或其他垃圾邮件防护(可选)
另外,我希望能够将博客首页嵌入到另一个页面中,也许在另一个页面中应用程序。
我希望它尽可能简单 - 没有不必要的功能,最多 2-3 个应用程序。
谢谢。
Where can I find an open source pluggable blog app for Django?
It should support:
- RSS/Atom
- Comments
- the built-in Django authentication system
- Markdown (optional)
- Akismet or other spam protection (optional)
Plus, I'd like to have to ability to embed the blog front page into another page, maybe in another app.
I'd like it to be as simple as possible - no unneccsary features, and 2-3 apps max.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
查看
django 包的
网格用于博客应用程序。我会找到一个看起来接近您正在寻找的内容并对其进行编辑以满足您的需求。这就是 django 的伟大之处,即定制能力。
Check out
django packages'
grid for blog applications.I would find find one that looks close to what you are looking for and edit it to fit your needs. That's the great thing about django, the ability to customize.
我使用 Django Basic Blog 作为基础,并对其进行了定制以满足我的需求,它是 的一部分Django 基本应用
I've used Django Basic Blog as the base, and customized it to suit my needs, it is part of Django Basic Apps
django-zinnia-blog 有 RSS feed、traceback/pingback 和通过 django-comments 的评论。您可以使用信号通过 akismet 检查您的评论。要支持 Markdown,您可以使用模板过滤器。
django-zinnia-blog has RSS feeds, traceback/pingback and comments via django-comments. You can use signals to have your comments checked via akismet. To support markdown you can use a template filter.
你应该知道的十一个 django 博客引擎< /a>
Eleven django blog engines you should know