vr-shopxo-source/app/index/view/default/lib/seo_data.html

23 lines
897 B
HTML
Raw Normal View History

2024-07-03 14:46:04 +00:00
{{if !empty($data)}}
<dl class="dl-content">
<dt>{{:MyLang('form_seo_title_title')}}</dt>
<dd>{{if !empty($data['seo_title'])}}{{$data.seo_title}}{{/if}}</dd>
2023-01-29 10:11:08 +00:00
2024-07-03 14:46:04 +00:00
<dt>{{:MyLang('form_seo_keywords_title')}}</dt>
<dd>{{if !empty($data['seo_keywords'])}}{{$data.seo_keywords}}{{/if}}</dd>
2023-01-29 10:11:08 +00:00
2024-07-03 14:46:04 +00:00
<dt>{{:MyLang('form_seo_desc_title')}}</dt>
<dd>{{if !empty($data['seo_desc'])}}{{$data.seo_desc}}{{/if}}</dd>
2025-03-03 09:49:22 +00:00
{{if isset($data['share_images'])}}
<dt>{{:MyLang('form_share_images_title')}}</dt>
<dd>
{{if !empty($data['share_images'])}}
<img src="{{$data.share_images}}" class="am-radius common-annex-view-event" data-value="{{$data.share_images}}" height="30" />
{{/if}}
</dd>
{{/if}}
2024-07-03 14:46:04 +00:00
</dl>
{{else /}}
{{:ModuleInclude('public/not_data')}}
{{/if}}