mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
36 lines
931 B
Plaintext
36 lines
931 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= full_title(yield(:title)) %></title>
|
|
<%= favicon_link_tag %>
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
jax: ["input/TeX", "output/HTML-CSS"],
|
|
tex2jax: {
|
|
inlineMath: [ ["$","$"], ["\\(","\\)"] ],
|
|
displayMath: [ ["$$","$$"], ["\\[","\\]"] ],
|
|
processEscapes: true
|
|
},
|
|
"HTML-CSS": { availableFonts: ["TeX"] }
|
|
});
|
|
</script>
|
|
<%= mathjax_tag config: 'TeX-AMS_HTML' %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
<body>
|
|
<%= render 'layouts/header' %>
|
|
<div class="container">
|
|
<%= flash_messages %>
|
|
<div class="row">
|
|
<div class="col-md-12" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render 'layouts/footer' %>
|
|
</body>
|
|
</html>
|