freelancer-theme/_layouts/default.html

25 lines
501 B
HTML
Raw Permalink Normal View History

2014-07-19 22:57:28 +00:00
<!DOCTYPE html>
<html>
2022-09-06 05:20:23 +00:00
{% include head.html %}
2022-09-06 05:20:23 +00:00
<body id="page-top" class="index">
{% include nav.html %}
{% include header.html %}
{% include portfolio_grid.html %}
{% include about.html %}
2022-09-06 05:20:23 +00:00
{% if site.contact == "static" %}
{% include contact_static.html %}
{% elsif site.contact == "disqus" %}
{% include contact_disqus.html %}
{% else %}
{% include contact.html %}
{% endif %}
{% include footer.html %}
{% include modals.html %}
{% include js.html %}
</body>
</html>