소스 검색

Include Custom CSS and ID in reusable content blocks. See Issue #275, PR #293 (#319)

Russ Ferriday 5 년 전
부모
커밋
de365946bc
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      coderedcms/templates/coderedcms/blocks/reusable_content_block.html

+ 4 - 1
coderedcms/templates/coderedcms/blocks/reusable_content_block.html

@@ -1,2 +1,5 @@
 {% load wagtailcore_tags %}
-{% include_block self.content.content %}
+
+<div {% if self.settings.custom_id %}id="{{self.settings.custom_id}}"{% endif %} class="block-html {{ self.settings.custom_css_class }}">
+  {% include_block self.content %}
+</div>