diff --git a/content/staff/brian-and-julie-fischer/_index.md b/content/staff/brian-and-julie-fischer/_index.md index 8e3a747..da1ea0f 100644 --- a/content/staff/brian-and-julie-fischer/_index.md +++ b/content/staff/brian-and-julie-fischer/_index.md @@ -6,6 +6,6 @@ extra: tags: ["Staff", "Executive Director", "Phillipsburg"] image: "featured.jpg" --- - +{{ img(path="/content/staff/brian-and-julie-fischer/featured.jpg" width=500 height=800) }} As a teenager Brian was a part of the Golden Plains Youth For Christ ministry at Northern Valley and he participated in events like Bible quizzing and monthly rallies. During his high school years he was also a part of the first mission trip teams and attended some of the first years of TFC Camp. In 2010 God called Brian back to Phillipsburg to become the Executive Director for the ministry now called Teens For Christ Connection. God is doing some great things within TFC and he continues to lead us forward into the future as we strive to do whatever it takes to help teenagers become fully devoted followers of Jesus. Brian’s wife Julie is the Office Manager for TFC and she does a great job keeping all of the finances in order. Brian and Julie also help lead the Phillipsburg TFC groups and they are the proud parents of Nathan and Natalie. diff --git a/content/staff/chris-and-abbie-cochrun/_index.md b/content/staff/chris-and-abbie-cochrun/_index.md index 64ef38a..58f0afc 100644 --- a/content/staff/chris-and-abbie-cochrun/_index.md +++ b/content/staff/chris-and-abbie-cochrun/_index.md @@ -6,7 +6,7 @@ extra: image: "featured.jpg" tags: ["Staff", "Northern Valley"] --- - +{{ img(path="/content/staff/chris-and-abbie-cochrun/featured.jpg" width=600 height=500) }} Chris and Abbie Cochrun serve together on TFC Staff! Chris grew up in Agra KS as a part of the Eastern Heights TFC group, Abbie grew up as a part of the Northern Valley TFC group and they got to know each other through TFC! Chris handles a lot of IT and video related things for TFC and Abbie is TFC’s graphic designer. diff --git a/static/css/main.css b/static/css/main.css index cdd0771..68d074d 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -680,6 +680,12 @@ border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); } } + .place-self-center { + place-self: center; + } + .self-center { + align-self: center; + } .truncate { overflow: hidden; text-overflow: ellipsis; @@ -824,6 +830,9 @@ .px-6 { padding-inline: calc(var(--spacing) * 6); } + .px-20 { + padding-inline: calc(var(--spacing) * 20); + } .py-0 { padding-block: calc(var(--spacing) * 0); } diff --git a/static/processed_images/featured.d50b038cf4f10278.jpg b/static/processed_images/featured.d50b038cf4f10278.jpg new file mode 100644 index 0000000..232a167 Binary files /dev/null and b/static/processed_images/featured.d50b038cf4f10278.jpg differ diff --git a/static/processed_images/featured.e222df5dd0df816d.jpg b/static/processed_images/featured.e222df5dd0df816d.jpg new file mode 100644 index 0000000..270ed3a Binary files /dev/null and b/static/processed_images/featured.e222df5dd0df816d.jpg differ diff --git a/templates/shortcodes/img.html b/templates/shortcodes/img.html index 002d35d..fa4f5d8 100644 --- a/templates/shortcodes/img.html +++ b/templates/shortcodes/img.html @@ -1,8 +1,12 @@ {% if not op %} {% set op = "fill" -%} {% endif %} {% if not height %} {% set height = 450 -%} {% endif %} {% if not width %} {% set width = 600 -%} {% endif %} +{% if page.colocated_path %} {% set image = resize_image(path=page.colocated_path ~ path, width=width, height=height, op=op) %} -