我正在尝试使用一个组件在 ColdFusion 中组合一个页脚。我希望能够在整个应用程序中重复使用页脚,但只需编写一次页脚 HTML。
这是我到目前为止所拥有的,但我无法输出内容。
<cfcomponent>
<cffunction name="getFooter" access="public" returntype="string" output="yes">
<footer>
<div class="row text-center">
<div class="col-sm-12">
Copyright © 2020 Company Name | <a href="#" data-toggle="modal" data-target="#msgPrivacy"> Security and Privacy </a>
</div>
</div>
</footer>
</cffunction>
</cfcomponent>
<cfoutput>
#getFooter#
</cfoutput>