From c4afe667db7734f41de3fca9d1c18e309abcc1d8 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 14 Jul 2025 08:56:53 -0700 Subject: import my website under `src` This does not import the history of the previous repository. --- src/fcuny.net/templates/base.html | 18 ++++++++++++++++++ src/fcuny.net/templates/index.html | 7 +++++++ src/fcuny.net/templates/resume.html | 1 + 3 files changed, 26 insertions(+) create mode 100644 src/fcuny.net/templates/base.html create mode 100644 src/fcuny.net/templates/index.html create mode 100644 src/fcuny.net/templates/resume.html (limited to 'src/fcuny.net/templates') diff --git a/src/fcuny.net/templates/base.html b/src/fcuny.net/templates/base.html new file mode 100644 index 0000000..5537a36 --- /dev/null +++ b/src/fcuny.net/templates/base.html @@ -0,0 +1,18 @@ + + + + + + + + + + + + {% block title %}{{- config.title -}}{% endblock title %} + + + +
{% block content %}{% endblock content %}
+ + diff --git a/src/fcuny.net/templates/index.html b/src/fcuny.net/templates/index.html new file mode 100644 index 0000000..bb5a86c --- /dev/null +++ b/src/fcuny.net/templates/index.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{%- block content -%} + +{% if section.content %} {{ section.content | safe }}{% endif %} + +{%- endblock content -%} diff --git a/src/fcuny.net/templates/resume.html b/src/fcuny.net/templates/resume.html new file mode 100644 index 0000000..84449c5 --- /dev/null +++ b/src/fcuny.net/templates/resume.html @@ -0,0 +1 @@ +{% extends "base.html" %} {% block content %} {{ section.content | safe }} {% endblock %} -- cgit v1.2.3