Created
July 30, 2021 07:19
-
-
Save hazho/5a7b6478491beacea51cccfea0dbf9d3 to your computer and use it in GitHub Desktop.
An example for HTML block element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from wagtail.core import blocks | |
class Heading(blocks.StructBlock): | |
text = blocks.CharBlock() | |
level = blocks.IntegerBlock() | |
class Meta: | |
template = 'blocks/heading_block.html' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h{{self.level}}>{{ self.text }}</h{{self.level}}> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment