概要
ショートブレッド(shortbread)とはバター・砂糖・小麦粉を主原料として作られる、スコットランド起源の焼き菓子です。
強い甘味よりも、バターの香りと崩れるような食感に特徴があります。
名称の short は「短い」ではなく、「グルテンが短く切れる(=さくっと崩れる)生地」を意味します。これは製菓用語の short pastry と同系統の語です。
紅茶文化における位置
ショートブレッドは単なる菓子ではありません。英国圏では
など、「少しだけ丁寧な時間」に添えられる菓子です。
スコットランドでは特に「家庭性と歓待の象徴」として扱われます。
濃いめの紅茶との相性がよく、アッサムや濃い目のブレンドティーと合わせられることが多いとされています。
文化メモ
かつてショートブレッドは日常菓子ではなく、祝祭用の特別な焼き菓子でした。
代表的な形
代表的な形には以下のようなものがあります。
- fingers(指状)
- rounds
- petticoat tails(ペチコートの裾)
最後の名称は、スコットランドの民族衣装に由来すると言われています。
🔗リンク
ホグマネイ・ティー
バノック
/* 1) 関連用語(辞典用のパーツ名に合わせて) */
get_template_part('parts/related-dictionary', null, ['post_id' => get_the_ID()]); /* 2) 「辞典カテゴリ」:公開&階層のタクソノミーを1種類だけ出す
- post_tag / category / post_format / dictionary_tag は除外 */
$dict_cat_tax = null;
$tx_objs = get_object_taxonomies( get_post_type(), 'objects' );
if ( $tx_objs ) {
foreach ( $tx_objs as $tx ) {
if ( ! $tx->public || ! $tx->hierarchical ) continue;
if ( in_array($tx->name, ['post_tag','category','post_format','dictionary_tag'], true) ) continue;
if ( stripos($tx->name,'dictionary') !== false
|| stripos($tx->labels->name,'辞典') !== false
|| stripos($tx->labels->name,'Tea Term') !== false ) {
$dict_cat_tax = $tx->name; break;
}
}
}
if ( $dict_cat_tax ) {
$terms = get_the_terms( get_the_ID(), $dict_cat_tax );
if ( $terms && ! is_wp_error($terms) ) {
echo '';
}
} /* 3) 「辞書タグ」:dictionary_tag をピルで出す(無ければ何も出さない) */
$tags = get_the_terms( get_the_ID(), 'dictionary_tag' );
if ( $tags && ! is_wp_error($tags) ) {
echo '';
} /* 4) 前/次ナビ(安全版の parts/adjacent.php を使っていればそのままでOK) */
get_template_part('parts/adjacent', null, [
'post_id' => get_the_ID(),
'post_type' => get_post_type()
]);
?>