在 ATK4 中,如何使用模板创建除 html 之外的文件类型?
我的原始应用程序中不使用 atk4 的最后剩余部分是在 php 中创建的动态 css 文件并输出 css 标头。宽度是根据 mysql 中的数据确定的,需要确保拖动笔记时屏幕不会不断调整大小。
如果我想创建一个具有类似于 html 模板的模板结构的 .css 文件,我应该从哪里开始,这样我就可以使用像
.fullwidth {
width:<?$width?>;
}
提前感谢这样的 css 定义。
The last remaining part of my original application that doesnt use atk4 is the dynamic css files created in php and outputing a css header. The width is determined based on the data in mysql and is needed to ensure the screen is not constantly resizing when notes are dragged around.
Where should i start if i want to create a .css file that has a template structure similar to the html templates so i can use a css definition like
.fullwidth {
width:<?$width?>;
}
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要通过 .htaccess 重写 CSS 文件。创建一个专门用于在您的系统上创建 CSS 的页面。
接下来在 page/css.php 中创建类
在这种情况下,模板没有太大帮助,但如果您想使用模板,请记住 echo $template->render();并退出。
First, you'll need to re-write your CSS files through .htaccess. Create a page dedicated for creating the CSS on your system.
Next create class inside page/css.php
In this case templates are not much of a help, but if you want to use one, remember to echo $template->render(); and exit.