{{ $type := "text" }}
{{ with .Type }}
    {{ $type = . }}
{{ end }}
<div class="code-block">
    <div class="code-header">
        <span class="code-type">{{ $type }}</span>
        <a href="javascript:void(0)" class="code-copy-button">
            {{ i18n "copy_to_clipboard" }}
        </a>
    </div>

    {{/* a div.highlight is already created by highlight function */}}
    {{ highlight .Inner $type }}
</div>