{% extends "area_base.html" %} {% block title %}{{ page.title if page else 'Botanical Drawing' }} | TheOrganist24{% endblock %} {% block extra_head %} {% endblock %} {% block area_content %} {# Botanical name, correctly styled: genus / species / infraspecific epithets italic; rank abbreviations roman; cultivar roman in single quotes. `crossed` is placed as a hybrid marker between genus and species (the common nothospecies case, e.g. Salix × fragilis) — adjust if it carries a fuller formula. #} {% macro latin_name(p) -%} {%- if p.genus %}{{ p.genus }}{% endif -%} {%- if p.crossed %} {{ p.crossed }}{% endif -%} {%- if p.species %} {{ p.species }}{% endif -%} {%- if p.subspecies %} subsp. {{ p.subspecies }}{% endif -%} {%- if p.variety %} var. {{ p.variety }}{% endif -%} {%- if p.forma %} f. {{ p.forma }}{% endif -%} {%- if p.cultivar %} ‘{{ p.cultivar }}’{% endif -%} {%- endmacro %}
{{ page.body }}
{% endif %} {% if drawings %}No botanical drawings are currently catalogued.
{% endif %}No plant locations are currently recorded.
{% endif %} {% include "_offerings.html" %} {% endblock %}