You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
328B

  1. {% assign width = page.width %}
  2. {% assign height = page.height %}
  3. <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
  4. width="{{ width }}mm" height="{{ height }}mm" viewBox="0 0 {{ width }} {{ height }}">
  5. <g transform="translate({{ width | divided_by: 2.0 }} {{ height | divided_by: 2.0 }})">
  6. {{ content }}
  7. </g>
  8. </svg>