qunabu / silverstripe-htmlblocks
dev-master
2017-11-06 17:25 UTC
Requires
- sheadawson/silverstripe-shortcodable: 3.0.x-dev
This package is auto-updated.
Last update: 2023-03-20 09:49:03 UTC
README
允许将HTML块注入到.SS模板和HTML内容中,作为简码(待完成)。
<% if $HTMLBlockExist('social-links') %> {$HTMLBlock('social-links')} <%-- you can manage this HTML part from the admin panel now --%> <% else %> <ul> <li><a href="https://en-gb.facebook.com/openhouselondon2017" target="_blank" class="social">Facebook</a></li> <li><a href="https://twitter.com/openhouselondon" target="_blank" class="social">Twitter</a></li> <li><a href="https://www.instagram.com/openhouselondon/" target="_blank" class="social">Instagram</a></li> </ul> <% end_if %>