我正在使用OctoberCMS DynamicPDF插件,根据我的要求,该插件可以正常工作。
但是,我有动态的PDF标头文本内容,并且我试图覆盖标头内容,但是它无法正常工作。到目前为止,这是我尝试过的。
模板文件
{% set headerTExt = 'asdf' %}
布局文件
<html>
<head>
<style type="text/css" media="screen">
{{ css|raw }}
</style>
<title>Regency Brochure</title>
</head>
<div id="header">
<div style="display: inline-block; position: absolute; left: 2.5%; top: 12px;">
<img src="{{ logo }}" style="width: 60px; height:auto; margin-top:5px;"/>
</div>
<div style="text-align: right; font-size: 20px; color: #b49132; text-transform: uppercase; font-family: 'Montserrat-Bold'; position: absolute; right: 3.5%; top: 25px;">
{{ headerTExt }}
</div>
</div>
<div id="footer">
<div class="footerText">www.regencycorporate.com.au</div>
</div>
{{ content_html|raw }}
</html>
布局文件CSS
@page { margin:25mm 0px 8mm 0px;}
header { position: fixed; left: 0px; top:-25mm; right: 0px; height: 22mm; background-color: #fff; border-bottom: solid 1px #d8d8d8;}
footer { position: fixed; left: 0px; bottom:-8mm; right: 0px; background-color: #b49132; height: 11mm; }
footer .footerText { font-size: 14px; text-align: center; color: white; font-family: 'Montserrat-Medium'; font-weight:400; padding-top:8px; }
content{
height:645px;
padding:0px 30px;
}
如您所见,我正在尝试通过使用{{ headerTExt }}
来放置动态标头文本,方法是将其与变量{% set headerTExt = 'asdf' %}
一起设置在我的模板文件中,但无法正常工作。如果我输入静态文本,则它可以工作,但动态不能。
有人可以指导我如何使其工作
答案 0 :(得分:2)
您正在寻找{% placeholder %}
:https://octobercms.com/docs/markup/tag-placeholder
模板文件:
{% put headerText %}Test{% endput %}
布局文件:
<html>
<head>
// etc
</head>
<body>
<div id="header">
{% placeholder 'headerText' %}
</div>
</body>
</html>