@use super::statics::*;
@use super::google_analytics_html;
@use super::syntax_highlight_html;
@use crate::blog::Blog;
@(title: &str, blog: &Blog, content: Content)
@title
@if let Some(syntax_highlight) = blog.get_blog_conf().get_syntax_highlight() {
@if syntax_highlight {
}
}
☗
@:content()
@:syntax_highlight_html(blog)
@:google_analytics_html(blog)