如何在 Orchard Cms 中编辑博客布局?

How Can to Edit the Blog Layout in Orchard Cms?

我想换个博客layout.I想在标题中订购这个然后发布日期,图片然后description.but我不知道该怎么做this.can你帮帮我请?

请阅读有关 placement, alternates and shapetracing 的一些 Orchard 文档。

您可以做的最简单的事情就是将主题的 placement.info 更改为如下所示:

<Match ContentType="Blog">
    <Place Parts_Title="Content:1" />
    <Place Parts_MetaData="Content:2" />
    <Place Fields_MediaLibraryPicker="Content:3" />
    <Place Parts_Blogs_Blog_Description="Content:4" />
</Match>

如果您想完全控制布局的呈现,您可以创建一个替代方案。使用形状追踪器找到正确的替代品(可能类似于 Content-Blog.cshtml),并在其中调整你的东西。