We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, we have a build_page function to merge the head, content and foot into a page:
build_page
head
content
foot
build_page(head::String, content::String, pgfoot::String, foot::String) = head * html_div(locvar("div_content"), content * pgfoot) * foot
Though the class attribute is customizable, one may also need to set other attributes, or even change the node name.
class
A not so aggressive solution is to change the html_div function into html_hk, like https://github.com/tlienart/Franklin.jl/pull/519/files
html_div
html_hk
Or can we just provide a whole configurable page like below?:
// page.html {{insert head.html}} {{ content }} {{ insert pgfoot.html }} {{ insert foot.html }}
The text was updated successfully, but these errors were encountered:
Closed with #521
Sorry, something went wrong.
No branches or pull requests
Currently, we have a
build_page
function to merge thehead
,content
andfoot
into a page:Though the
class
attribute is customizable, one may also need to set other attributes, or even change the node name.A not so aggressive solution is to change the
html_div
function intohtml_hk
, like https://github.com/tlienart/Franklin.jl/pull/519/filesOr can we just provide a whole configurable page like below?:
The text was updated successfully, but these errors were encountered: