15 lines
361 B
Plaintext
15 lines
361 B
Plaintext
{{ if image }}
|
|
<img src="{{ rootUrl }}{{ image }}">
|
|
{{ /if }}
|
|
{{ if content }}
|
|
{{@ content }}
|
|
{{ /if }}
|
|
{{ if video }}
|
|
<video controls><source src="{{ rootUrl }}{{ video }}" type="video/mp4"></video>
|
|
{{ /if }}
|
|
{{ if files }}
|
|
<br><b>下载附件:</b><br>
|
|
{{ each files file }}
|
|
<a href="{{ rootUrl }}{{ file.URL }}">{{ file.FJMC }}</a><br>
|
|
{{ /each }}
|
|
{{ /if }} |