recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<div style="font-size:16px; font-family:Arial, Helvetica, sans-serif; color:#333;">
<p style="margin:0 0 12px 0;line-height:1.5;">
Dear <?= esc($parent_name ?? 'Parent/Guardian') ?>,
</p>
<p style="margin:0 0 12px 0;line-height:1.5;">
This is a <strong>final warning</strong> concerning the attendance of
<strong><?= esc($student_name ?? 'your student') ?></strong>
<?php if (!empty($class_section_name)): ?>(<?= esc($class_section_name) ?>)<?php endif; ?>
<?php if (!empty($date_fmt)): ?> as of <?= esc($date_fmt) ?><?php endif; ?>.
Continued unexcused absences<?php if (!empty($semester) && !empty($school_year)): ?> during
<?= esc($semester) ?> <?= esc($school_year) ?><?php endif; ?> may result in dismissal from the program.
</p>
<p style="margin:0 0 12px 0;line-height:1.5;">
If there are special circumstances we should be aware of, please contact the school at
<a href="mailto:alrahma.isgl@gmail.com">school email</a>.
</p>
<p style="margin:0 0 12px 0;line-height:1.5;">
Sincerely,<br>
Al Rahma Sunday School
</p>
</div>
<?= $this->endSection() ?>