Silverstripe 创建一个简单的静态 HTML 页面
我如何使用 Silverstrip 创建一个纯 HTML 页面?
我正在尝试添加一个页面,然后编辑 HTML 以放入我自己的脚本标签等,但不允许我这样做。
How do I with Silverstrip just create a plain HTML page ?
I am trying to add a page, then edit HTML to put in my own script tags etc, and won't let me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在谈论编辑页面模板(mysite/templates/Page.ss),对吧?一个常见的错误是每当您更改模板时都没有刷新模板缓存。只需将
?flush=1
添加到您的页面网址即可。另请参阅 URL 变量工具 上的文档,了解有关此内容的更多信息。
此外,如果您不想在 cms 中包含页面,您可能会对 这个关于 ssbits 的教程绕过 cms 并渲染任意 html 代码。
i think you're talking about editing the page templates (mysite/templates/Page.ss), right? a common mistake is not flushing the template cache whenever you change a template. just add
?flush=1
to your page url to do so.also see the docs on URL Variable Tools for further information on this.
additionally, in case you don't want to have pages in the cms, you might be interested in this tutorial on ssbits to bypass the cms and render arbitrary html code.
您可以在 /themes/blackcandy/templates/MyPage.ss 中创建一个简单的页面。
此页面模板将用于呈现同名的任何页面类型。尝试在 /mysite/code/MyPage.php 中创建一个扩展 Page 的新类。然后 dev/build 和 view 在 CMS 中创建一个新的 MyPage 页面对象。该页面应使用 MyPage.ss 模板。
You can create a simple page in /themes/blackcandy/templates/MyPage.ss
This page template will be used to render any page type of the same name. Try creating a new class in /mysite/code/MyPage.php that extends Page. Then dev/build and view create a new MyPage page object in the CMS. That page should use the MyPage.ss template.