不显示导演的图像
Images from director not displayed
我最近开始尝试使用 Bolt-cms 并且一切进展顺利,但是这个:我正在尝试向我的模板添加一些硬编码图像,但它们没有显示。路径好像错了
<img src="img/test.jpg" >
或
<img src="{{root}}/img/test.jpg" >
好像不行。
有人知道正确的做法是吗?
我们使用 Symfony 资产,docs here。
但是简短的版本:
<script src="{{ asset('js/jquery.min.js', 'theme') }}"></script>
# Include jquery.min.js from the js folder in your theme.
<img src="{{ asset('kitten.jpg', 'files') }}"></script>
# Display the kitten.jpg image, that was uploaded to the `files/` folder.
我最近开始尝试使用 Bolt-cms 并且一切进展顺利,但是这个:我正在尝试向我的模板添加一些硬编码图像,但它们没有显示。路径好像错了
<img src="img/test.jpg" >
或
<img src="{{root}}/img/test.jpg" >
好像不行。
有人知道正确的做法是吗?
我们使用 Symfony 资产,docs here。
但是简短的版本:
<script src="{{ asset('js/jquery.min.js', 'theme') }}"></script>
# Include jquery.min.js from the js folder in your theme.
<img src="{{ asset('kitten.jpg', 'files') }}"></script>
# Display the kitten.jpg image, that was uploaded to the `files/` folder.