diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-19 15:54:23 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-19 15:54:23 +0200 |
| commit | 3f5409f79a1b82e09f72930487ca9e42a1175eed (patch) | |
| tree | 2da27b11302a89ea116420cbe91ff39cc82ad490 | |
| parent | db82be80c9479398720e7a72d3ab66a3017ae98c (diff) | |
| download | colitur-3f5409f79a1b82e09f72930487ca9e42a1175eed.tar.gz colitur-3f5409f79a1b82e09f72930487ca9e42a1175eed.zip | |
feat(templates): the ordo booklet, rebuilt
A5, one week per page, with a table of contents, each day in a framed box
and a colour swatch so the page is scannable without reading. Real names
throughout, and every fixed string routed through the term vocabulary so
a translated booklet needs no template edit.
The previous version was A4, printed slugs, ran days together with no
visual separation, had no contents, and gave the liturgical colour only
as the word white. It was not usable as a printed booklet.
lib/render/view.ml already carried month_num/month_name on each week
object from Task 5, so no kernel/view change was needed here -- the
template uses those instead of a parent path the engine cannot express.
Box padding, margins and secondary-line font size were tightened past
the brief's own starting values: at the brief's sizes a week with several
long commemoration names (e.g. Feb 21-27, three of seven days carrying
one) overflowed onto a second physical page, breaking one-week-per-page.
Verified by measuring page count against the known week count (63 weeks
in 2027) until every content page carried exactly one week, not by eye.
The header comments of all six flavours were themselves a trap the brief
warns about: writing double braces to NAME a template field inside a
LaTeX %, groff .\", HTML <!-- -->, or AsciiDoc // comment gets parsed as
a real tag by this brace-only engine, not treated as inert prose. An
early draft's own comments did this and produced 'empty tag path' parse
errors and a silently-unclosed section; every comment in all six
templates is now written without ever typing two braces in a row.
The other five flavours keep their existing structure; only the dead
{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} idiom is replaced with a
plain {{name}} (extended to comms entries too, which carry their own
resolved name), and the fixed labels (Ordo, Epistle, Gospel,
Commemoration) now come from {{term.*}}.
Golden regeneration could not follow the brief's own `colitur table`
shell-out literally: the CLI's current default language is Latin-only
(bin/main.ml's Task-5 bridge), while test_render_golden.ml renders
through Test_view's English-primary/Latin-fallback table, so the two
produce different text for the same slug. The goldens were regenerated
through the test's own render path instead (a temporary env-gated block
in test_render_golden.ml, reverted before this commit), so they agree
with what the suite actually computes.
All six ordo golden tests pass; the three grid ones are Task 9's scope.
make check-templates passes with zero warnings. The CLI-rendered PDF is
A5 (148x210mm), 65 pages -- 2 pages of title/contents plus exactly one
page per week (63), verified with no overflow.
| -rw-r--r-- | templates/ef/ordo.adoc | 23 | ||||
| -rw-r--r-- | templates/ef/ordo.html | 25 | ||||
| -rw-r--r-- | templates/ef/ordo.md | 23 | ||||
| -rw-r--r-- | templates/ef/ordo.ms | 25 | ||||
| -rw-r--r-- | templates/ef/ordo.tex | 99 | ||||
| -rw-r--r-- | templates/ef/ordo.txt | 10 | ||||
| -rw-r--r-- | test/golden/ordo-2027.adoc | 1737 | ||||
| -rw-r--r-- | test/golden/ordo-2027.html | 1725 | ||||
| -rw-r--r-- | test/golden/ordo-2027.md | 1737 | ||||
| -rw-r--r-- | test/golden/ordo-2027.ms | 2469 | ||||
| -rw-r--r-- | test/golden/ordo-2027.tex | 4790 | ||||
| -rw-r--r-- | test/golden/ordo-2027.txt | 2454 |
12 files changed, 8385 insertions, 6732 deletions
diff --git a/templates/ef/ordo.adoc b/templates/ef/ordo.adoc index 13d09ec..3146f2e 100644 --- a/templates/ef/ordo.adoc +++ b/templates/ef/ordo.adoc @@ -4,22 +4,25 @@ // A feast name containing `*` or `_` will render as emphasis. That is a // documented limitation, not a bug to fix. // -// Day label falls back to the slug when the day carries no Latin name (most -// temporal days, and most sanctoral entries, which are Latin-less in the -// shipped data) -- see ordo.tex's own comment for why the fallback is -// written as a name-section wrapping a plain var and its inverse, rather -// than a single dotted lookup and its inverse. -= Ordo {{year}} · {{rite}} +// The observed day's own display name is a PLAIN resolved string +// (View.of_days, Task 5), not a lang-keyed object -- there is no +// dotted-la-with-slug-fallback idiom to write here any more; a +// commemoration entry carries its own resolved display name too, so a +// commemoration line no longer prints the bare slug. Every fixed label +// (Ordo, Epistle, Gospel, Commemoration) comes from the view's term +// vocabulary rather than being written into this file, so a translated +// booklet needs no template edit. += {{term.ordo}} {{year}} · {{rite}} :toc: {{#months}} -== {{name.la}} +== {{name}} {{#days}} -*{{dom}}* {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} + +*{{dom}}* {{name}} + {{rank}} · {{colour}} + -{{#first}}Ep. {{first}} {{/first}}{{#gospel}}Ev. {{gospel}}{{/gospel}} +{{#first}}{{term.epistle}} {{first}} {{/first}}{{#gospel}}{{term.gospel}} {{gospel}}{{/gospel}} {{#comms}} + -Com. {{slug}}{{/comms}} +{{term.commemoration}} {{name}}{{/comms}} {{/days}}{{/months}} diff --git a/templates/ef/ordo.html b/templates/ef/ordo.html index e516816..3353000 100644 --- a/templates/ef/ordo.html +++ b/templates/ef/ordo.html @@ -1,12 +1,15 @@ <!-- colitur ordo booklet -- HTML. flavour: html --> -<!-- Day label falls back to the slug when the day carries no Latin name - (most temporal days, and most sanctoral entries, which are Latin-less - in the shipped data) -- see ordo.tex's own comment for why the fallback - is written as a name-section wrapping a plain var and its inverse, - rather than a single dotted lookup and its inverse. --> +<!-- The observed day's own display name is a PLAIN resolved string + (View.of_days, Task 5), not a lang-keyed object -- there is no + dotted-la-with-slug-fallback idiom to write here any more; a + commemoration entry carries its own resolved display name too, so a + commemoration line no longer prints the bare slug. Every fixed label + (Ordo, Epistle, Gospel, Commemoration) comes from the view's term + vocabulary rather than being written into this file, so a translated + booklet needs no template edit. --> <!doctype html> <html lang="la"><head><meta charset="utf-8"> -<title>Ordo {{year}}</title> +<title>{{term.ordo}} {{year}}</title> <style> body{font-family:serif;max-width:40em;margin:2em auto;line-height:1.4} .day{margin:.6em 0;padding-left:2.5em;text-indent:-2.5em} @@ -17,12 +20,12 @@ .rose{border-left:4px solid #e7a} .black{border-left:4px solid #000} @media print{body{margin:0}} </style></head><body> -<h1>Ordo {{year}} · {{rite}}</h1> -{{#months}}<h2>{{name.la}}</h2> +<h1>{{term.ordo}} {{year}} · {{rite}}</h1> +{{#months}}<h2>{{name}}</h2> {{#days}}<div class="day {{colour}}"> - <span class="dom">{{dom}}</span>{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} - <div class="meta">{{rank}} · {{colour}}{{#first}} · Ep. {{first}}{{/first}}{{#gospel}} · Ev. {{gospel}}{{/gospel}}</div> - {{#comms}}<div class="meta">Com. {{slug}}</div>{{/comms}} + <span class="dom">{{dom}}</span>{{name}} + <div class="meta">{{rank}} · {{colour}}{{#first}} · {{term.epistle}} {{first}}{{/first}}{{#gospel}} · {{term.gospel}} {{gospel}}{{/gospel}}</div> + {{#comms}}<div class="meta">{{term.commemoration}} {{name}}</div>{{/comms}} </div> {{/days}}{{/months}} </body></html> diff --git a/templates/ef/ordo.md b/templates/ef/ordo.md index 606ea01..805bf67 100644 --- a/templates/ef/ordo.md +++ b/templates/ef/ordo.md @@ -3,21 +3,24 @@ so this template's flavour deliberately does NOT escape interpolated values. A feast name containing `*` or `_` will render as emphasis. That is a documented limitation, not a bug to fix. --> -<!-- Day label falls back to the slug when the day carries no Latin name - (most temporal days, and most sanctoral entries, which are Latin-less - in the shipped data) -- see ordo.tex's own comment for why the fallback - is written as a name-section wrapping a plain var and its inverse, - rather than a single dotted lookup and its inverse. --> -# Ordo {{year}} · {{rite}} +<!-- The observed day's own display name is a PLAIN resolved string + (View.of_days, Task 5), not a lang-keyed object -- there is no + dotted-la-with-slug-fallback idiom to write here any more; a + commemoration entry carries its own resolved display name too, so a + commemoration line no longer prints the bare slug. Every fixed label + (Ordo, Epistle, Gospel, Commemoration) comes from the view's term + vocabulary rather than being written into this file, so a translated + booklet needs no template edit. --> +# {{term.ordo}} {{year}} · {{rite}} {{#months}} -## {{name.la}} +## {{name}} {{#days}} -**{{dom}}** {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} -`{{rank}}` · {{colour}}{{#first}} · Ep. {{first}}{{/first}}{{#gospel}} · Ev. {{gospel}}{{/gospel}} +**{{dom}}** {{name}} +`{{rank}}` · {{colour}}{{#first}} · {{term.epistle}} {{first}}{{/first}}{{#gospel}} · {{term.gospel}} {{gospel}}{{/gospel}} {{#comms}} -- Com. {{slug}} +- {{term.commemoration}} {{name}} {{/comms}} {{/days}}{{/months}} diff --git a/templates/ef/ordo.ms b/templates/ef/ordo.ms index db9b9fc..88dcb6c 100644 --- a/templates/ef/ordo.ms +++ b/templates/ef/ordo.ms @@ -1,27 +1,30 @@ .\" colitur ordo booklet -- groff ms. flavour: groff .\" Build: colitur table --year 2027 --template ordo.ms | groff -ms -Tpdf > ordo.pdf .\" -.\" Day label falls back to the slug when the day carries no Latin name (most -.\" temporal days, and most sanctoral entries, which are Latin-less in the -.\" shipped data) -- see ordo.tex's own comment for why the fallback is -.\" written as a name-section wrapping a plain var and its inverse, rather -.\" than a single dotted lookup and its inverse. +.\" The observed day's own display name is a PLAIN resolved string +.\" (View.of_days, Task 5), not a lang-keyed object -- there is no +.\" dotted-la-with-slug-fallback idiom to write here any more; a +.\" commemoration entry carries its own resolved display name too, so a +.\" commemoration line no longer prints the bare slug. Every fixed label +.\" (Ordo, Epistle, Gospel, Commemoration) comes from the view's term +.\" vocabulary rather than being written into this file, so a translated +.\" booklet needs no template edit. .TL -ORDO {{year}} \(bu {{rite}} +{{term.ordo}} {{year}} \(bu {{rite}} {{#months}} .SH -{{name.la}} +{{name}} .LP {{#days}} .IP "{{dom}}" 4 -{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} +{{name}} .br \s-2{{rank}} \(bu {{colour}}\s+2 {{#first}}.br -\s-2Ep. {{first}}\s+2 +\s-2{{term.epistle}} {{first}}\s+2 {{/first}}{{#gospel}}.br -\s-2Ev. {{gospel}}\s+2 +\s-2{{term.gospel}} {{gospel}}\s+2 {{/gospel}}{{#comms}}.br -\s-2Com. {{slug}}\s+2 +\s-2{{term.commemoration}} {{name}}\s+2 {{/comms}}{{/days}} {{/months}} diff --git a/templates/ef/ordo.tex b/templates/ef/ordo.tex index 6012753..c4a15d1 100644 --- a/templates/ef/ordo.tex +++ b/templates/ef/ordo.tex @@ -1,33 +1,90 @@ % colitur ordo booklet -- LaTeX. flavour: latex -% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex +% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex && +% pdflatex ordo.tex (twice, so \pageref in the table of contents settles) % -% Day label falls back to the slug when the day carries no Latin name (most -% temporal days, and most sanctoral entries, which are Latin-less in the -% shipped data). The fallback is written as a name-section wrapping a plain -% var and its inverse, deliberately NOT as a single dotted-path lookup -% followed by its own inverse: a dotted lookup that misses climbs to the -% enclosing scope for the WHOLE path, and the month object also carries a -% same-named key one level up, so the naive form would render the month's -% own Latin name on every day lacking one, and never fall back at all. -\documentclass[10pt,twoside]{article} -\usepackage[a5paper,margin=15mm]{geometry} +% A5, one week per page, each day in a framed box with a colour swatch. Every +% fixed string (headings, the Epistle/Gospel/Commemoration/Week labels) +% comes from the view's term vocabulary rather than being written into this +% file, so a translated booklet needs no template edit -- only a different +% --lang. +% +% The observed day's own display name is a PLAIN resolved string +% (View.of_days, Task 5), never a lang-keyed object -- there is no +% dotted-la-with-slug-fallback idiom to write here at all; a day with no +% name in the shipped data still resolves to something printable (its slug, +% under --raw, or the lang table's own miss-echoes-the-key behaviour), so +% the plain name field alone is always enough. +% +% The engine has no parent-path syntax: nested inside a month's own week +% loop, a bare week-number reference finds the WEEK's own number, and there +% is no way to reach the enclosing month's from there. That is why each +% week object carries its own month number and month name fields +% (lib/render/view.ml, Task 5) -- used throughout below instead of a +% parent-path reference, which this engine cannot express. +% +% This template's own %-comments are plain text to the engine: it has no +% awareness of LaTeX's comment syntax, and a stray double-brace pair inside +% one would still be parsed as a tag -- which is why this whole header is +% deliberately written without ever typing two curly braces next to each +% other, even to name a field. +\documentclass[10pt]{article} +\usepackage[a5paper,top=11mm,bottom=12mm,inner=14mm,outer=10mm]{geometry} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} +\usepackage{xcolor} +\usepackage{tikz} +\usepackage{tcolorbox} \usepackage{fancyhdr} -\pagestyle{fancy} -\fancyhead[C]{ORDO {{year}} \textperiodcentered\ {{rite}}} +\usepackage[hidelinks]{hyperref} +\definecolor{licolwhite}{HTML}{FFFFFF} +\definecolor{licolred}{HTML}{C1272D} +\definecolor{licolgreen}{HTML}{2E7D32} +\definecolor{licolviolet}{HTML}{6A1B9A} +\definecolor{licolrose}{HTML}{E91E8C} +\definecolor{licolblack}{HTML}{000000} +% A framed square, always outlined in black regardless of fill -- so white +% (and, on a black background page, black) still reads as a swatch rather +% than a gap. tikz (a tcolorbox dependency already) draws the border; xcolor +% alone cannot outline a filled rule. +\newcommand{\swatch}[1]{\tikz[baseline=-0.6ex]{\fill[draw=black,line width=0.4pt,fill=#1] (0,0) rectangle (2.4ex,2.4ex);}} +\pagestyle{fancy}\fancyhf{} +\fancyhead[C]{\small {{term.ordo}} {{year}} \textperiodcentered\ {{rite}}} +\fancyfoot[C]{\small\thepage} +\renewcommand{\headrulewidth}{0.4pt} \setlength{\parindent}{0pt} \begin{document} + +\begin{center} +\Large\bfseries {{term.ordo}} {{year}}\\[2pt] +\normalsize\mdseries {{rite}} +\end{center} +\vspace{4mm} +{\bfseries {{term.contents}}}\par\vspace{2mm} +\begin{small} {{#months}} -\section*{ {{name.la}} } -{{#days}} -\textbf{ {{dom}} } \quad {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}}\\ -\small {{rank}} \textperiodcentered\ {{colour}}\\ -{{#first}}\small Ep. {{first}}\quad{{/first}}{{#gospel}}\small Ev. {{gospel}}{{/gospel}}\\ -{{#comms}}\small Com. {{slug}}\\ -{{/comms}} -\medskip +\textbf{ {{name}} }\par +{{#weeks}}\hspace*{4mm}{{term.week}} {{num}}\dotfill\pageref{w{{month_num}}-{{num}}}\par +{{/weeks}} +{{/months}} +\end{small} +\clearpage +{{#months}} +{{#weeks}} +\label{w{{month_num}}-{{num}}} +{\bfseries\large {{month_name}} }\hfill{\small {{term.week}} {{num}}}\par\vspace{0.5mm} +{{#days}} +{{#in_month}} +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries {{dom}} } \;\; {\scriptsize {{weekday}} } \hfill \swatch{licol{{colour}}}\par +{\bfseries {{name}} }\par +{\scriptsize {{rank_name}} \textperiodcentered\ {{colour_name}} }\par +{{#first}}{\scriptsize {{term.epistle}}\ {{first}} }\quad{{/first}}{{#gospel}}{\scriptsize {{term.gospel}}\ {{gospel}} }{{/gospel}} +{{#comms}}\par{\scriptsize {{term.commemoration}}\ {{name}} }{{/comms}} +\end{tcolorbox} +{{/in_month}} {{/days}} +\clearpage +{{/weeks}} {{/months}} \end{document} diff --git a/templates/ef/ordo.txt b/templates/ef/ordo.txt index aba121a..3301652 100644 --- a/templates/ef/ordo.txt +++ b/templates/ef/ordo.txt @@ -1,10 +1,10 @@ {{#months}} -{{name.la}} {{year}} +{{name}} {{year}} {{#days}} -{{dom}} {{slug}} +{{dom}} {{name}} {{rank}} · {{colour}} -{{#first}} Ep. {{first}} -{{/first}}{{#gospel}} Ev. {{gospel}} -{{/gospel}}{{#comms}} Com. {{slug}} +{{#first}} {{term.epistle}} {{first}} +{{/first}}{{#gospel}} {{term.gospel}} {{gospel}} +{{/gospel}}{{#comms}} {{term.commemoration}} {{name}} {{/comms}}{{/days}} {{/months}} diff --git a/test/golden/ordo-2027.adoc b/test/golden/ordo-2027.adoc index 5a8e2f5..59a1c6a 100644 --- a/test/golden/ordo-2027.adoc +++ b/test/golden/ordo-2027.adoc @@ -4,2362 +4,2365 @@ // A feast name containing `*` or `_` will render as emphasis. That is a // documented limitation, not a bug to fix. // -// Day label falls back to the slug when the day carries no Latin name (most -// temporal days, and most sanctoral entries, which are Latin-less in the -// shipped data) -- see ordo.tex's own comment for why the fallback is -// written as a name-section wrapping a plain var and its inverse, rather -// than a single dotted lookup and its inverse. +// The observed day's own display name is a PLAIN resolved string +// (View.of_days, Task 5), not a lang-keyed object -- there is no +// dotted-la-with-slug-fallback idiom to write here any more; a +// commemoration entry carries its own resolved display name too, so a +// commemoration line no longer prints the bare slug. Every fixed label +// (Ordo, Epistle, Gospel, Commemoration) comes from the view's term +// vocabulary rather than being written into this file, so a translated +// booklet needs no template edit. = Ordo 2027 · ef :toc: -== Ianuarius +== January -*1* ef-circumcision + +*1* The Octave Day of the Nativity + class-1 · white + -Ep. Titus 2:11-15 Ev. Luke 2:21 +Epistle Titus 2:11-15 Gospel Luke 2:21 -*2* Officium sanctae Mariae in sabbato + +*2* Our Lady's Saturday Office + class-4 · white + -Ep. Titus 3:4-7 Ev. Luke 2:15-20 +Epistle Titus 3:4-7 Gospel Luke 2:15-20 -*3* Sanctissimi Nominis Iesu + +*3* The Holy Name of Jesus + class-2 · white + -Ep. Acts 4:8-12 Ev. Luke 2:21 +Epistle Acts 4:8-12 Gospel Luke 2:21 -*4* ef-christmas-1-monday + +*4* Monday before Epiphany + class-4 · white + -Ep. Titus 2:11-15 Ev. Luke 2:21 +Epistle Titus 2:11-15 Gospel Luke 2:21 -*5* ef-christmas-1-tuesday + +*5* Tuesday before Epiphany + class-4 · white + -Ep. Titus 2:11-15 Ev. Luke 2:21 +Epistle Titus 2:11-15 Gospel Luke 2:21 + -Com. telesphorus-pope-and-martyr +Commemoration telesphorus-pope-and-martyr -*6* ef-epiphany + +*6* The Epiphany of Our Lord + class-1 · white + -Ep. Isa 60:1-6 Ev. Matt 2:1-12 +Epistle Isa 60:1-6 Gospel Matt 2:1-12 -*7* ef-christmas-2-thursday + +*7* Thursday after Epiphany + class-4 · white + -Ep. Isa 60:1-6 Ev. Matt 2:1-12 +Epistle Isa 60:1-6 Gospel Matt 2:1-12 -*8* ef-christmas-2-friday + +*8* Friday after Epiphany + class-4 · white + -Ep. Isa 60:1-6 Ev. Matt 2:1-12 +Epistle Isa 60:1-6 Gospel Matt 2:1-12 -*9* Officium sanctae Mariae in sabbato + +*9* Our Lady's Saturday Office + class-4 · white + -Ep. Titus 3:4-7 Ev. Luke 2:15-20 +Epistle Titus 3:4-7 Gospel Luke 2:15-20 -*10* Sanctae Familiae Iesu, Mariae, Ioseph + +*10* The Holy Family + class-2 · white + -Ep. Col 3:12-17 Ev. Luke 2:42-52 +Epistle Col 3:12-17 Gospel Luke 2:42-52 -*11* ef-time-after-epiphany-1-monday + +*11* Monday of the 1st Week of the Time after Epiphany + class-4 · white + -Ep. Rom 12:1-5 Ev. Luke 2:42-52 +Epistle Rom 12:1-5 Gospel Luke 2:42-52 + -Com. hyginus-pope-and-martyr +Commemoration hyginus-pope-and-martyr -*12* ef-time-after-epiphany-1-tuesday + +*12* Tuesday of the 1st Week of the Time after Epiphany + class-4 · white + -Ep. Rom 12:1-5 Ev. Luke 2:42-52 +Epistle Rom 12:1-5 Gospel Luke 2:42-52 -*13* commemoration-of-the-baptism-of-the-lord + +*13* Commemoration of the Baptism of the Lord + class-2 · white + -Ep. Isa 60:1-6 Ev. John 1:29-34 +Epistle Isa 60:1-6 Gospel John 1:29-34 -*14* hilary + +*14* St. Hilary + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. felicis +Commemoration felicis -*15* paul-the-first-hermit + +*15* St. Paul, the First Hermit + class-3 · white + -Ep. Phil 3:7-12 Ev. Matt 11:25-30 +Epistle Phil 3:7-12 Gospel Matt 11:25-30 + -Com. maur-abbot +Commemoration maur-abbot -*16* marcellus-i + +*16* St. Marcellus I + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 -*17* ef-time-after-epiphany-sunday-2 + +*17* 2nd Sunday after Epiphany + class-2 · green + -Ep. Rom 12:6-16 Ev. John 2:1-11 +Epistle Rom 12:6-16 Gospel John 2:1-11 -*18* ef-time-after-epiphany-2-monday + +*18* Monday of the 2nd Week of the Time after Epiphany + class-4 · green + -Ep. Rom 12:6-16 Ev. John 2:1-11 +Epistle Rom 12:6-16 Gospel John 2:1-11 + -Com. prisca +Commemoration prisca -*19* ef-time-after-epiphany-2-tuesday + +*19* Tuesday of the 2nd Week of the Time after Epiphany + class-4 · green + -Ep. Rom 12:6-16 Ev. John 2:1-11 +Epistle Rom 12:6-16 Gospel John 2:1-11 + -Com. canute-martyr + -Com. sts-marius-martha-audifax-abachum +Commemoration canute-martyr + +Commemoration sts-marius-martha-audifax-abachum -*20* sts-fabian-sebastian + +*20* Sts. Fabian & Sebastian + class-3 · red + -Ep. Heb 11:33-39 Ev. Luke 6:17-23 +Epistle Heb 11:33-39 Gospel Luke 6:17-23 -*21* agnes + +*21* St. Agnes + class-3 · red + -Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. +Epistle Sir 51:1-8; 51:12 Gospel Matt 25:1-13. -*22* sts-vincent-anastasius + +*22* Sts. Vincent & Anastasius + class-3 · red + -Ep. Wis 3:1-8 Ev. Luke 21:9-19 +Epistle Wis 3:1-8 Gospel Luke 21:9-19 -*23* raymond-of-pe-afort + +*23* St. Raymond of Peñafort + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 + -Com. emerentiana +Commemoration emerentiana -*24* ef-septuagesima-sunday-1 + +*24* Septuagesima Sunday + class-2 · violet + -Ep. 1 Cor. 9:24-27; 10:1-5 Ev. Matt 20:1-16 +Epistle 1 Cor. 9:24-27; 10:1-5 Gospel Matt 20:1-16 -*25* conversion-of-st-paul + +*25* Conversion of St. Paul + class-3 · white + -Ep. Acts 9:1-22 Ev. Matt 19:27-29. +Epistle Acts 9:1-22 Gospel Matt 19:27-29. + -Com. peter +Commemoration peter -*26* polycarp + +*26* St. Polycarp + class-3 · red + -Ep. 1 John 3:10-16 Ev. Matt 10:26-32. +Epistle 1 John 3:10-16 Gospel Matt 10:26-32. -*27* john-chrysostom + +*27* St. John Chrysostom + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*28* peter-nolasco + +*28* St. Peter Nolasco + class-3 · white + -Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 +Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 + -Com. agnes-secundo +Commemoration agnes-secundo -*29* francis-de-sales + +*29* St. Francis de Sales + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*30* martina + +*30* St. Martina + class-3 · red + -Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. +Epistle Sir 51:1-8; 51:12 Gospel Matt 25:1-13. -*31* ef-septuagesima-sunday-2 + +*31* Sexagesima Sunday + class-2 · violet + -Ep. 2 Cor. 11:19-33; 12:1-9 Ev. Luke 8:4-15 +Epistle 2 Cor. 11:19-33; 12:1-9 Gospel Luke 8:4-15 -== Februarius +== February -*1* ignatius-of-antioch + +*1* St. Ignatius of Antioch + class-3 · red + -Ep. Rom 8:35-39 Ev. John 12:24-26 +Epistle Rom 8:35-39 Gospel John 12:24-26 -*2* purification-of-the-blessed-virgin-mary + +*2* Purification of the Blessed Virgin Mary + class-2 · white + -Ep. Mal 3:1-4 Ev. Luke 2:22-32 +Epistle Mal 3:1-4 Gospel Luke 2:22-32 -*3* ef-septuagesima-2-wednesday + +*3* Wednesday of the 2nd Week of Septuagesimatide + class-4 · violet + -Ep. 2 Cor. 11:19-33; 12:1-9 Ev. Luke 8:4-15 +Epistle 2 Cor. 11:19-33; 12:1-9 Gospel Luke 8:4-15 + -Com. blaise +Commemoration blaise -*4* andrew-corsini + +*4* St. Andrew Corsini + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 +Epistle Sir 44:16-27; 45:3-20 Gospel Matt 25:14-23 -*5* agatha + +*5* St. Agatha + class-3 · red + -Ep. 1 Cor. 1:26-31 Ev. Matt 19:3-12. +Epistle 1 Cor. 1:26-31 Gospel Matt 19:3-12. -*6* titus + +*6* St. Titus + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Luke 10:1-9 +Epistle Sir 44:16-27; 45:3-20 Gospel Luke 10:1-9 + -Com. dorothy +Commemoration dorothy -*7* ef-septuagesima-sunday-3 + +*7* Quinquagesima Sunday + class-2 · violet + -Ep. 1 Cor. 13:1-13 Ev. Luke 18:31-43 +Epistle 1 Cor. 13:1-13 Gospel Luke 18:31-43 -*8* john-of-matha + +*8* St. John of Matha + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*9* cyril-of-alexandria + +*9* St. Cyril of Alexandria + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. appollonia +Commemoration appollonia -*10* ef-ash-wednesday + +*10* Ash Wednesday + class-1 · violet + -Ep. Joel 2:12-19 Ev. Matt 6:16-21 +Epistle Joel 2:12-19 Gospel Matt 6:16-21 -*11* ef-lent-after-ashes-thursday + +*11* Thursday after Ash Wednesday + class-3 · violet + -Ep. Isa 38:1-6 Ev. Matt 8:5-13 +Epistle Isa 38:1-6 Gospel Matt 8:5-13 + -Com. our-lady-of-lourdes +Commemoration Our Lady of Lourdes -*12* ef-lent-after-ashes-friday + +*12* Friday after Ash Wednesday + class-3 · violet + -Ep. Isa 58:1-9 Ev. Matt 5:43-48; 6:1-4 +Epistle Isa 58:1-9 Gospel Matt 5:43-48; 6:1-4 + -Com. seven-holy-servite-founders +Commemoration Seven Holy Servite Founders -*13* ef-lent-after-ashes-saturday + +*13* Saturday after Ash Wednesday + class-3 · violet + -Ep. Isa 58:9-14 Ev. Mark 6:47-56 +Epistle Isa 58:9-14 Gospel Mark 6:47-56 -*14* ef-lent-sunday-1 + +*14* 1st Sunday of Lent + class-1 · violet + -Ep. 2 Cor. 6:1-10 Ev. Matt 4:1-11 +Epistle 2 Cor. 6:1-10 Gospel Matt 4:1-11 -*15* ef-lent-1-monday + +*15* Monday of the 1st Week of Lent + class-3 · violet + -Ep. Ezech 34:11-16 Ev. Matt 25:31-46 +Epistle Ezech 34:11-16 Gospel Matt 25:31-46 + -Com. sts-faustinus-jovita +Commemoration sts-faustinus-jovita -*16* ef-lent-1-tuesday + +*16* Tuesday of the 1st Week of Lent + class-3 · violet + -Ep. Isa 55:6-11 Ev. Matt 21:10-17 +Epistle Isa 55:6-11 Gospel Matt 21:10-17 -*17* ef-lent-ember-wed + +*17* Lenten Ember Wednesday + class-2 · violet + -Ep. 3 Kgs. 19:3-8 Ev. Matt 12:38-50 +Epistle 3 Kgs. 19:3-8 Gospel Matt 12:38-50 -*18* ef-lent-1-thursday + +*18* Thursday of the 1st Week of Lent + class-3 · violet + -Ep. Ezech 18:1-9 Ev. Matt 15:21-28 +Epistle Ezech 18:1-9 Gospel Matt 15:21-28 + -Com. simeon +Commemoration simeon -*19* ef-lent-ember-fri + +*19* Lenten Ember Friday + class-2 · violet + -Ep. Ezech 18:20-28 Ev. John 5:1-15 +Epistle Ezech 18:20-28 Gospel John 5:1-15 -*20* ef-lent-ember-sat + +*20* Lenten Ember Saturday + class-2 · violet + -Ep. 1 Thess. 5:14-23 Ev. Matt 17:1-9 +Epistle 1 Thess. 5:14-23 Gospel Matt 17:1-9 -*21* ef-lent-sunday-2 + +*21* 2nd Sunday of Lent + class-1 · violet + -Ep. 1 Thess. 4:1-7 Ev. Matt 17:1-9 +Epistle 1 Thess. 4:1-7 Gospel Matt 17:1-9 -*22* chair-of-st-peter + +*22* Chair of St. Peter + class-2 · white + -Ep. 1 Pet 1:1-7 Ev. Matt 16:13-19 +Epistle 1 Pet 1:1-7 Gospel Matt 16:13-19 + -Com. ef-lent-2-monday + -Com. paul +Commemoration Monday of the 2nd Week of Lent + +Commemoration paul -*23* ef-lent-2-tuesday + +*23* Tuesday of the 2nd Week of Lent + class-3 · violet + -Ep. 3 Kings 17:8-16 Ev. Matt 23:1-12 +Epistle 3 Kings 17:8-16 Gospel Matt 23:1-12 + -Com. peter-damien +Commemoration St. Peter Damien -*24* matthias + +*24* St. Matthias + class-2 · red + -Ep. Acts 1:15-26 Ev. Matt 11:25-30 +Epistle Acts 1:15-26 Gospel Matt 11:25-30 + -Com. ef-lent-2-wednesday +Commemoration Wednesday of the 2nd Week of Lent -*25* ef-lent-2-thursday + +*25* Thursday of the 2nd Week of Lent + class-3 · violet + -Ep. Jer 17:5-10 Ev. Luke 16:19-31 +Epistle Jer 17:5-10 Gospel Luke 16:19-31 -*26* ef-lent-2-friday + +*26* Friday of the 2nd Week of Lent + class-3 · violet + -Ep. Gen 37:6-22 Ev. Matt 21:33-46 +Epistle Gen 37:6-22 Gospel Matt 21:33-46 -*27* ef-lent-2-saturday + +*27* Saturday of the 2nd Week of Lent + class-3 · violet + -Ep. Gen 27:6-40 Ev. Luke 15:11-32 +Epistle Gen 27:6-40 Gospel Luke 15:11-32 + -Com. gabriel-of-our-lady-of-sorrows +Commemoration St. Gabriel of Our Lady of Sorrows -*28* ef-lent-sunday-3 + +*28* 3rd Sunday of Lent + class-1 · violet + -Ep. Eph 5:1-9 Ev. Luke 11:14-28 +Epistle Eph 5:1-9 Gospel Luke 11:14-28 -== Martius +== March -*1* ef-lent-3-monday + +*1* Monday of the 3rd Week of Lent + class-3 · violet + -Ep. 4 Kings 5:1-15 Ev. Luke 4:23-30 +Epistle 4 Kings 5:1-15 Gospel Luke 4:23-30 -*2* ef-lent-3-tuesday + +*2* Tuesday of the 3rd Week of Lent + class-3 · violet + -Ep. 4 Kings 4:1-7 Ev. Matt 18:15-22 +Epistle 4 Kings 4:1-7 Gospel Matt 18:15-22 -*3* ef-lent-3-wednesday + +*3* Wednesday of the 3rd Week of Lent + class-3 · violet + -Ep. Ex 20:12-24 Ev. Matt 15:1-20 +Epistle Ex 20:12-24 Gospel Matt 15:1-20 -*4* ef-lent-3-thursday + +*4* Thursday of the 3rd Week of Lent + class-3 · violet + -Ep. Jer 7:1-7 Ev. Luke 4:38-44. +Epistle Jer 7:1-7 Gospel Luke 4:38-44. + -Com. casimir + -Com. lucius +Commemoration St. Casimir + +Commemoration lucius -*5* ef-lent-3-friday + +*5* Friday of the 3rd Week of Lent + class-3 · violet + -Ep. Num 20:1, 3; 6-13. Ev. John 4:5-42 +Epistle Num 20:1, 3; 6-13. Gospel John 4:5-42 -*6* ef-lent-3-saturday + +*6* Saturday of the 3rd Week of Lent + class-3 · violet + -Ep. Dan 13:1-9, 15-17, 19-30, 33-62. Ev. John 8:1-11 +Epistle Dan 13:1-9, 15-17, 19-30, 33-62. Gospel John 8:1-11 + -Com. sts-felicitas-perpetua +Commemoration Sts. Felicitas & Perpetua -*7* ef-lent-sunday-4 + +*7* 4th Sunday of Lent + class-1 · rose + -Ep. Gal 4:22-31 Ev. John 6:1-15 +Epistle Gal 4:22-31 Gospel John 6:1-15 -*8* ef-lent-4-monday + +*8* Monday of the 4th Week of Lent + class-3 · violet + -Ep. 3 Kings 3:16-28 Ev. John 2:13-25 +Epistle 3 Kings 3:16-28 Gospel John 2:13-25 + -Com. john-of-god +Commemoration St. John of God -*9* ef-lent-4-tuesday + +*9* Tuesday of the 4th Week of Lent + class-3 · violet + -Ep. Ex 32:7-14 Ev. John 7:14-31 +Epistle Ex 32:7-14 Gospel John 7:14-31 + -Com. frances-rome +Commemoration St. Frances Rome -*10* ef-lent-4-wednesday + +*10* Wednesday of the 4th Week of Lent + class-3 · violet + -Ep. Isa. 1:16-19 Ev. John 9:1-38 +Epistle Isa. 1:16-19 Gospel John 9:1-38 + -Com. forty-holy-martyrs-of-sebaste +Commemoration forty-holy-martyrs-of-sebaste -*11* ef-lent-4-thursday + +*11* Thursday of the 4th Week of Lent + class-3 · violet + -Ep. 4 Kings 4:25-38 Ev. Luke 7:11-16 +Epistle 4 Kings 4:25-38 Gospel Luke 7:11-16 -*12* ef-lent-4-friday + +*12* Friday of the 4th Week of Lent + class-3 · violet + -Ep. 3 Kings 17:17-24 Ev. John 11:1-45 +Epistle 3 Kings 17:17-24 Gospel John 11:1-45 + -Com. gregory-the-great +Commemoration gregory-the-great -*13* ef-lent-4-saturday + +*13* Saturday of the 4th Week of Lent + class-3 · violet + -Ep. Isa 49:8-15 Ev. John 8:12-20 +Epistle Isa 49:8-15 Gospel John 8:12-20 -*14* ef-passion-sunday + +*14* Passion Sunday + class-1 · violet + -Ep. Heb 9:11-15. Ev. John 8:46-59. +Epistle Heb 9:11-15. Gospel John 8:46-59. -*15* ef-passiontide-1-monday + +*15* Monday of the 1st Week of Passion Week + class-3 · violet + -Ep. Jonas 3:1-10 Ev. John 7:32-39 +Epistle Jonas 3:1-10 Gospel John 7:32-39 -*16* ef-passiontide-1-tuesday + +*16* Tuesday of the 1st Week of Passion Week + class-3 · violet + -Ep. Dan 14:27, 28-42 Ev. John 7:1-13 +Epistle Dan 14:27, 28-42 Gospel John 7:1-13 -*17* ef-passiontide-1-wednesday + +*17* Wednesday of the 1st Week of Passion Week + class-3 · violet + -Ep. Lev 19:1-2, 11-19, 25 Ev. John 10:22-38 +Epistle Lev 19:1-2, 11-19, 25 Gospel John 10:22-38 + -Com. patrick +Commemoration patrick -*18* ef-passiontide-1-thursday + +*18* Thursday of the 1st Week of Passion Week + class-3 · violet + -Ep. Dan 3:25, 34-45. Ev. Luke 7:36-50 +Epistle Dan 3:25, 34-45. Gospel Luke 7:36-50 + -Com. cyril-of-jerusalem +Commemoration cyril-of-jerusalem -*19* joseph-spouse-of-the-bl-virgin-mary + +*19* St. Joseph, Spouse of the Bl. Virgin Mary + class-1 · white + -Ep. Ecclus 45:1-6 Ev. Matt 1:18-21 +Epistle Ecclus 45:1-6 Gospel Matt 1:18-21 + -Com. ef-passiontide-1-friday +Commemoration Friday of the 1st Week of Passion Week -*20* ef-passiontide-1-saturday + +*20* Saturday of the 1st Week of Passion Week + class-3 · violet + -Ep. Jer 18:18-23 Ev. John 12:10-36 +Epistle Jer 18:18-23 Gospel John 12:10-36 -*21* ef-palm-sunday + +*21* Palm Sunday + class-1 · violet + -Ep. Phil 2:5-11 Ev. Matt. 26:36-75; 27:1-60. +Epistle Phil 2:5-11 Gospel Matt. 26:36-75; 27:1-60. -*22* ef-passiontide-2-monday + +*22* Monday of Holy Week + class-1 · violet + -Ep. Isa 50:5-10 Ev. John 12:1-9 +Epistle Isa 50:5-10 Gospel John 12:1-9 -*23* ef-passiontide-2-tuesday + +*23* Tuesday of Holy Week + class-1 · violet + -Ep. Jer 11:18-20 Ev. Mark 14:32-72; 15, 1-46 +Epistle Jer 11:18-20 Gospel Mark 14:32-72; 15, 1-46 -*24* ef-passiontide-2-wednesday + +*24* Wednesday of Holy Week (Spy Wednesday) + class-1 · violet + -Ep. Isa 53:1-12 Ev. Luke 22:39-71; 23:1-53 +Epistle Isa 53:1-12 Gospel Luke 22:39-71; 23:1-53 -*25* Feria V in Cena Domini + +*25* Holy Thursday (Maundy Thursday) + class-1 · white + -Ep. 1 Cor 11:20-32 Ev. John 13:1-15 +Epistle 1 Cor 11:20-32 Gospel John 13:1-15 -*26* Feria VI in Passione et Morte Domini + +*26* Good Friday + class-1 · black + -Ep. Ex 12:1-11 Ev. John 18:1-40; 19:1-42 +Epistle Ex 12:1-11 Gospel John 18:1-40; 19:1-42 -*27* Sabbato sancto + +*27* Holy Saturday + class-1 · violet + -Ep. Col 3:1-4 Ev. Matt 28:1-7 +Epistle Col 3:1-4 Gospel Matt 28:1-7 -*28* ef-easter-sunday + +*28* Easter Sunday + class-1 · white + -Ep. 1 Cor 5:7-8 Ev. Mark 16:1-7 +Epistle 1 Cor 5:7-8 Gospel Mark 16:1-7 -*29* ef-easter-1-monday + +*29* Monday of Easter Week + class-1 · white + -Ep. Acts 10:37-43. Ev. Luke 24:13-35 +Epistle Acts 10:37-43. Gospel Luke 24:13-35 -*30* ef-easter-1-tuesday + +*30* Tuesday of Easter Week + class-1 · white + -Ep. Acts 13:16; 13:26-33 Ev. Luke 24:36-47 +Epistle Acts 13:16; 13:26-33 Gospel Luke 24:36-47 -*31* ef-easter-1-wednesday + +*31* Wednesday of Easter Week + class-1 · white + -Ep. Acts 3:13-15; 3:17-19 Ev. John 21:1-14 +Epistle Acts 3:13-15; 3:17-19 Gospel John 21:1-14 -== Aprilis +== April -*1* ef-easter-1-thursday + +*1* Thursday of Easter Week + class-1 · white + -Ep. Acts 8:26-40 Ev. John 20:11-18 +Epistle Acts 8:26-40 Gospel John 20:11-18 -*2* ef-easter-1-friday + +*2* Friday of Easter Week + class-1 · white + -Ep. 1 Pet 3:18-22 Ev. Matt 28:16-20 +Epistle 1 Pet 3:18-22 Gospel Matt 28:16-20 -*3* ef-easter-1-saturday + +*3* Saturday of Easter Week + class-1 · white + -Ep. 1 Pet 2:1-10 Ev. John 20:1-9 +Epistle 1 Pet 2:1-10 Gospel John 20:1-9 -*4* ef-low-sunday + +*4* Low Sunday (Sunday in Easter Octave) + class-1 · white + -Ep. 1 John 5:4-10 Ev. John 20:19-31 +Epistle 1 John 5:4-10 Gospel John 20:19-31 -*5* annunciation-of-the-blessed-virgin-mary + +*5* Annunciation of the Blessed Virgin Mary + class-1 · white + -Ep. Isa 7:10-15 Ev. Luke 1:26-38 +Epistle Isa 7:10-15 Gospel Luke 1:26-38 -*6* ef-easter-2-tuesday + +*6* Tuesday of the 2nd Week of Eastertide + class-4 · white + -Ep. 1 John 5:4-10 Ev. John 20:19-31 +Epistle 1 John 5:4-10 Gospel John 20:19-31 -*7* ef-easter-2-wednesday + +*7* Wednesday of the 2nd Week of Eastertide + class-4 · white + -Ep. 1 John 5:4-10 Ev. John 20:19-31 +Epistle 1 John 5:4-10 Gospel John 20:19-31 -*8* ef-easter-2-thursday + +*8* Thursday of the 2nd Week of Eastertide + class-4 · white + -Ep. 1 John 5:4-10 Ev. John 20:19-31 +Epistle 1 John 5:4-10 Gospel John 20:19-31 -*9* ef-easter-2-friday + +*9* Friday of the 2nd Week of Eastertide + class-4 · white + -Ep. 1 John 5:4-10 Ev. John 20:19-31 +Epistle 1 John 5:4-10 Gospel John 20:19-31 -*10* Officium sanctae Mariae in sabbato + +*10* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. John 19:25-27 +Epistle Ecclus 24:14-16 Gospel John 19:25-27 -*11* ef-easter-sunday-3 + +*11* 2nd Sunday after Easter + class-2 · white + -Ep. 1 Pet 2:21-25 Ev. John 10:11-16 +Epistle 1 Pet 2:21-25 Gospel John 10:11-16 -*12* ef-easter-3-monday + +*12* Monday of the 3rd Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:21-25 Ev. John 10:11-16 +Epistle 1 Pet 2:21-25 Gospel John 10:11-16 -*13* hermenegild + +*13* St. Hermenegild + class-3 · red + -Ep. Wis 10:10-14 Ev. Luke 14:26-33. +Epistle Wis 10:10-14 Gospel Luke 14:26-33. -*14* justin + +*14* St. Justin + class-3 · red + -Ep. 1 Cor 1:18-25; 1:30; Ev. Luke 12:2-8 +Epistle 1 Cor 1:18-25; 1:30; Gospel Luke 12:2-8 + -Com. sts-tiburtius-valerian-et-maximus-martyrs +Commemoration sts-tiburtius-valerian-et-maximus-martyrs -*15* ef-easter-3-thursday + +*15* Thursday of the 3rd Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:21-25 Ev. John 10:11-16 +Epistle 1 Pet 2:21-25 Gospel John 10:11-16 -*16* ef-easter-3-friday + +*16* Friday of the 3rd Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:21-25 Ev. John 10:11-16 +Epistle 1 Pet 2:21-25 Gospel John 10:11-16 -*17* Officium sanctae Mariae in sabbato + +*17* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. John 19:25-27 +Epistle Ecclus 24:14-16 Gospel John 19:25-27 + -Com. anicetus +Commemoration anicetus -*18* ef-easter-sunday-4 + +*18* 3rd Sunday after Easter + class-2 · white + -Ep. 1 Pet 2:11-19 Ev. John 16:16-22 +Epistle 1 Pet 2:11-19 Gospel John 16:16-22 -*19* ef-easter-4-monday + +*19* Monday of the 4th Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:11-19 Ev. John 16:16-22 +Epistle 1 Pet 2:11-19 Gospel John 16:16-22 -*20* ef-easter-4-tuesday + +*20* Tuesday of the 4th Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:11-19 Ev. John 16:16-22 +Epistle 1 Pet 2:11-19 Gospel John 16:16-22 -*21* anselm + +*21* St. Anselm + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*22* sts-soter-caius + +*22* Sts. Soter & Caius + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 -*23* ef-easter-4-friday + +*23* Friday of the 4th Week of Eastertide + class-4 · white + -Ep. 1 Pet 2:11-19 Ev. John 16:16-22 +Epistle 1 Pet 2:11-19 Gospel John 16:16-22 + -Com. george +Commemoration george -*24* fidelis-of-sigmaringen + +*24* St. Fidelis of Sigmaringen + class-3 · red + -Ep. Wis 5:1-5 Ev. John 15:1-7 +Epistle Wis 5:1-5 Gospel John 15:1-7 -*25* ef-easter-sunday-5 + +*25* 4th Sunday after Easter + class-2 · white + -Ep. Jas 1:17-21 Ev. John 16:5-14 +Epistle Jas 1:17-21 Gospel John 16:5-14 + -Com. major-litanies +Commemoration major-litanies -*26* sts-cletus-marcellinus + +*26* Sts. Cletus & Marcellinus + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 -*27* peter-canisius + +*27* St. Peter Canisius + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*28* paul-of-the-cross + +*28* St. Paul of the Cross + class-3 · white + -Ep. 1 Cor 1:17-25. Ev. Luke 10:1-9 +Epistle 1 Cor 1:17-25. Gospel Luke 10:1-9 -*29* peter-of-verona + +*29* St. Peter of Verona + class-3 · red + -Ep. 2 Tim. 2:8-10; 3:10-12. Ev. Matt 10:34-42 +Epistle 2 Tim. 2:8-10; 3:10-12. Gospel Matt 10:34-42 -*30* catherine-of-siena + +*30* St. Catherine of Siena + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -== Maius +== May -*1* joseph-the-workman + +*1* St. Joseph the Workman + class-1 · white + -Ep. Col. 3:14-15, 17, 23-24 Ev. Matt 13:54-58 +Epistle Col. 3:14-15, 17, 23-24 Gospel Matt 13:54-58 -*2* ef-easter-sunday-6 + +*2* 5th Sunday after Easter + class-2 · white + -Ep. Jas 1:22-27 Ev. John 16:23-30 +Epistle Jas 1:22-27 Gospel John 16:23-30 -*3* ef-rogation-monday + +*3* Rogation Monday + class-4 · violet + -Ep. Jas 1:22-27 Ev. John 16:23-30 +Epistle Jas 1:22-27 Gospel John 16:23-30 + -Com. sts-alexander-companions +Commemoration sts-alexander-companions -*4* monica + +*4* St. Monica + class-3 · white + -Ep. 1 Tim. 5:3-10. Ev. Luke 7:11-16 +Epistle 1 Tim. 5:3-10. Gospel Luke 7:11-16 -*5* ef-ascension-vigil + +*5* Vigil of the Ascension + class-2 · white + -Ep. Eph. 4:7-13. Ev. John 17:1-11. +Epistle Eph. 4:7-13. Gospel John 17:1-11. + -Com. pius-v +Commemoration St. Pius V -*6* ef-ascension + +*6* The Ascension of Our Lord + class-1 · white + -Ep. Acts 1:1-11 Ev. Mark 16:14-20 +Epistle Acts 1:1-11 Gospel Mark 16:14-20 -*7* stanislaus + +*7* St. Stanislaus + class-3 · red + -Ep. Wis 5:1-5 Ev. John 15:1-7 +Epistle Wis 5:1-5 Gospel John 15:1-7 -*8* Officium sanctae Mariae in sabbato + +*8* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. John 19:25-27 +Epistle Ecclus 24:14-16 Gospel John 19:25-27 -*9* ef-easter-sunday-7 + +*9* Sunday after the Ascension + class-2 · white + -Ep. 1 Pet 4:7-11. Ev. John 15:26-27; 16:1-4. +Epistle 1 Pet 4:7-11. Gospel John 15:26-27; 16:1-4. -*10* antoninus + +*10* St. Antoninus + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 +Epistle Sir 44:16-27; 45:3-20 Gospel Matt 25:14-23 + -Com. gordiano-and-epimacho +Commemoration gordiano-and-epimacho -*11* sts-philip-james + +*11* Sts. Philip & James + class-2 · red + -Ep. Wis. 5:1-5 Ev. John 14:1-13 +Epistle Wis. 5:1-5 Gospel John 14:1-13 -*12* sts-nereus-achilleus-domitilla-pancras + +*12* Sts. Nereus, Achilleus, Domitilla, & Pancras + class-3 · red + -Ep. Wis. 5:1-5 Ev. John 4:46-53 +Epistle Wis. 5:1-5 Gospel John 4:46-53 -*13* robert-bellarmine + +*13* St. Robert Bellarmine + class-3 · white + -Ep. Wis 7:7-14. Ev. Matt 5:13-19 +Epistle Wis 7:7-14. Gospel Matt 5:13-19 -*14* ef-easter-7-friday + +*14* Friday of the 7th Week of Eastertide + class-4 · white + -Ep. 1 Pet 4:7-11. Ev. John 15:26-27; 16:1-4. +Epistle 1 Pet 4:7-11. Gospel John 15:26-27; 16:1-4. + -Com. boniface-martyr +Commemoration boniface-martyr -*15* ef-pentecost-vigil + +*15* Vigil of Pentecost + class-1 · red + -Ep. Acts 19:1-8. Ev. John 14:15-21. +Epistle Acts 19:1-8. Gospel John 14:15-21. -*16* ef-pentecost + +*16* Pentecost Sunday (Whitsunday) + class-1 · red + -Ep. Acts 2:1-11. Ev. John 14:23-31. +Epistle Acts 2:1-11. Gospel John 14:23-31. -*17* ef-easter-8-monday + +*17* Monday of Pentecost Week + class-1 · red + -Ep. Acts 10:34, 42-48 Ev. John 3:16-21 +Epistle Acts 10:34, 42-48 Gospel John 3:16-21 -*18* ef-easter-8-tuesday + +*18* Tuesday of Pentecost Week + class-1 · red + -Ep. Acts 8:14-17. Ev. John 10:1-10. +Epistle Acts 8:14-17. Gospel John 10:1-10. -*19* ef-pentecost-ember-wed + +*19* Pentecost Ember Wednesday + class-1 · red + -Ep. Acts 5:12-16 Ev. John 6:44-52. +Epistle Acts 5:12-16 Gospel John 6:44-52. -*20* ef-easter-8-thursday + +*20* Thursday of Pentecost Week + class-1 · red + -Ep. Acts 8:5-8 Ev. Luke 9:1-6 +Epistle Acts 8:5-8 Gospel Luke 9:1-6 -*21* ef-pentecost-ember-fri + +*21* Pentecost Ember Friday + class-1 · red + -Ep. Joel 2:23-24; 26-27 Ev. Luke 5:17-26 +Epistle Joel 2:23-24; 26-27 Gospel Luke 5:17-26 -*22* ef-pentecost-ember-sat + +*22* Pentecost Ember Saturday + class-1 · red + -Ep. Rom 5:1-5. Ev. Luke 4:38-44. +Epistle Rom 5:1-5. Gospel Luke 4:38-44. -*23* ef-trinity + +*23* Trinity Sunday + class-1 · white + -Ep. Rom 11:33-36. Ev. Matt 28:18-20 +Epistle Rom 11:33-36. Gospel Matt 28:18-20 -*24* ef-time-after-pentecost-1-monday + +*24* Monday of the 1st Week of the Time after Pentecost + class-4 · green + -Ep. 1 John 4:8-21 Ev. Luke 6:36-42 +Epistle 1 John 4:8-21 Gospel Luke 6:36-42 -*25* gregory-vii + +*25* St. Gregory VII + class-3 · white + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 + -Com. urban-pope-and-martyr +Commemoration urban-pope-and-martyr -*26* philip-neri + +*26* St. Philip Neri + class-3 · white + -Ep. Wis 7:7-14. Ev. Luke 12:35-40 +Epistle Wis 7:7-14. Gospel Luke 12:35-40 + -Com. eleutherius +Commemoration eleutherius -*27* ef-corpus-christi + +*27* Corpus Christi + class-1 · white + -Ep. 1 Cor 11:23-29 Ev. John 6:56-59 +Epistle 1 Cor 11:23-29 Gospel John 6:56-59 -*28* augustine-of-canterbury + +*28* St. Augustine of Canterbury + class-3 · white + -Ep. 1 Thess 2:2-9 Ev. Luke 10:1-9 +Epistle 1 Thess 2:2-9 Gospel Luke 10:1-9 -*29* mary-magdalene-de-pazzi + +*29* St. Mary Magdalene de Pazzi + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -*30* ef-time-after-pentecost-sunday-2 + +*30* 2nd Sunday after Pentecost + class-2 · green + -Ep. 1 John 3:13-18. Ev. Luke 14:16-24. +Epistle 1 John 3:13-18. Gospel Luke 14:16-24. -*31* queenship-of-the-blessed-virgin-mary + +*31* Queenship of the Blessed Virgin Mary + class-2 · white + -Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 Ev. Luke 1:26-33 +Epistle Eccli 24:5; 14:7; 14:9-11; 24:30-31 Gospel Luke 1:26-33 + -Com. petronilla +Commemoration petronilla -== Iunius +== June -*1* angela-merici + +*1* St. Angela Merici + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -*2* ef-time-after-pentecost-2-wednesday + +*2* Wednesday of the 2nd Week of the Time after Pentecost + class-4 · green + -Ep. 1 John 3:13-18. Ev. Luke 14:16-24. +Epistle 1 John 3:13-18. Gospel Luke 14:16-24. + -Com. sts-marcellinus-peter-erasmus +Commemoration sts-marcellinus-peter-erasmus -*3* ef-time-after-pentecost-2-thursday + +*3* Thursday of the 2nd Week of the Time after Pentecost + class-4 · green + -Ep. 1 John 3:13-18. Ev. Luke 14:16-24. +Epistle 1 John 3:13-18. Gospel Luke 14:16-24. -*4* ef-sacred-heart + +*4* The Sacred Heart of Jesus + class-1 · white + -Ep. Eph 3:8-12, 14-19 Ev. John 19:31-37 +Epistle Eph 3:8-12, 14-19 Gospel John 19:31-37 -*5* boniface + +*5* St. Boniface + class-3 · red + -Ep. Ecclus 44:1-15 Ev. Matt 5:1-12 +Epistle Ecclus 44:1-15 Gospel Matt 5:1-12 -*6* ef-time-after-pentecost-sunday-3 + +*6* 3rd Sunday after Pentecost + class-2 · green + -Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 +Epistle 1 Pet. 5:6-11 Gospel Luke 15:1-10 -*7* ef-time-after-pentecost-3-monday + +*7* Monday of the 3rd Week of the Time after Pentecost + class-4 · green + -Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 +Epistle 1 Pet. 5:6-11 Gospel Luke 15:1-10 -*8* ef-time-after-pentecost-3-tuesday + +*8* Tuesday of the 3rd Week of the Time after Pentecost + class-4 · green + -Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 +Epistle 1 Pet. 5:6-11 Gospel Luke 15:1-10 -*9* ef-time-after-pentecost-3-wednesday + +*9* Wednesday of the 3rd Week of the Time after Pentecost + class-4 · green + -Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 +Epistle 1 Pet. 5:6-11 Gospel Luke 15:1-10 + -Com. sts-primus-felicianus +Commemoration sts-primus-felicianus -*10* margaret-of-scotland + +*10* St. Margaret of Scotland + class-3 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. -*11* barnabas + +*11* St. Barnabas + class-3 · red + -Ep. Acts 11:21-26; 13:1-3 Ev. Matt 10:16-22 +Epistle Acts 11:21-26; 13:1-3 Gospel Matt 10:16-22 -*12* john-of-san-fecundo + +*12* St. John of San Fecundo + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 + -Com. basilidus +Commemoration basilidus -*13* ef-time-after-pentecost-sunday-4 + +*13* 4th Sunday after Pentecost + class-2 · green + -Ep. Rom 8:18-23 Ev. Luke 5:1-11 +Epistle Rom 8:18-23 Gospel Luke 5:1-11 -*14* basil-the-great + +*14* St. Basil the Great + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Luke 14:26-35 +Epistle 2 Tim 4:1-8 Gospel Luke 14:26-35 -*15* ef-time-after-pentecost-4-tuesday + +*15* Tuesday of the 4th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 8:18-23 Ev. Luke 5:1-11 +Epistle Rom 8:18-23 Gospel Luke 5:1-11 + -Com. vitus +Commemoration vitus -*16* ef-time-after-pentecost-4-wednesday + +*16* Wednesday of the 4th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 8:18-23 Ev. Luke 5:1-11 +Epistle Rom 8:18-23 Gospel Luke 5:1-11 -*17* gregory-barbarigo + +*17* St. Gregory Barbarigo + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 +Epistle Sir 44:16-27; 45:3-20 Gospel Matt 25:14-23 -*18* ephrem-of-syria + +*18* St. Ephrem of Syria + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. marcus-and-marcellianus +Commemoration marcus-and-marcellianus -*19* julia-of-falconieri + +*19* St. Julia of Falconieri + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. + -Com. sts-gervasius-and-protasius +Commemoration sts-gervasius-and-protasius -*20* ef-time-after-pentecost-sunday-5 + +*20* 5th Sunday after Pentecost + class-2 · green + -Ep. 1 Pet 3:8-15. Ev. Matt 5:20-24. +Epistle 1 Pet 3:8-15. Gospel Matt 5:20-24. -*21* aloysius-gongzaga + +*21* St. Aloysius Gongzaga + class-3 · white + -Ep. Sir 31:8-11 Ev. Matt 22:29-40 +Epistle Sir 31:8-11 Gospel Matt 22:29-40 -*22* paulinus-of-nola + +*22* St. Paulinus of Nola + class-3 · white + -Ep. 2 Cor. 8:9-15 Ev. Luke 12:32-34 +Epistle 2 Cor. 8:9-15 Gospel Luke 12:32-34 -*23* vigil-of-the-nativity-of-st-john-the-baptist + +*23* Vigil of the Nativity of St. John the Baptist + class-2 · violet + -Ep. Jer 1:4-10 Ev. Luke 1:5-17 +Epistle Jer 1:4-10 Gospel Luke 1:5-17 -*24* nativity-of-st-john-the-baptist + +*24* Nativity of St. John the Baptist + class-1 · white + -Ep. Isa 49:1-3, 5-7. Ev. Luke 1:57-68 +Epistle Isa 49:1-3, 5-7. Gospel Luke 1:57-68 -*25* william + +*25* St. William + class-3 · white + -Ep. Ecclus 45:1-6 Ev. Matt 19:27-29. +Epistle Ecclus 45:1-6 Gospel Matt 19:27-29. -*26* sts-john-paul + +*26* Sts. John & Paul + class-3 · red + -Ep. Eccli 44:10-15 Ev. Luke 12:1-8 +Epistle Eccli 44:10-15 Gospel Luke 12:1-8 -*27* ef-time-after-pentecost-sunday-6 + +*27* 6th Sunday after Pentecost + class-2 · green + -Ep. Rom 6:3-11. Ev. Mark 8:1-9 +Epistle Rom 6:3-11. Gospel Mark 8:1-9 -*28* vigil-of-sts-peter-paul + +*28* Vigil of Sts. Peter & Paul + class-2 · violet + -Ep. Acts 3:1-10 Ev. John 21:15-19 +Epistle Acts 3:1-10 Gospel John 21:15-19 -*29* sts-peter-paul + +*29* Sts. Peter & Paul + class-1 · red + -Ep. Acts 12:1-11 Ev. Matt 16:13-19 +Epistle Acts 12:1-11 Gospel Matt 16:13-19 -*30* in-commemoratione-sancti-pauli-apostoli + +*30* In Commemoratione Sancti Pauli Apostoli + class-3 · red + -Ep. Gal 1:11-20 Ev. Matt 10:16-22 +Epistle Gal 1:11-20 Gospel Matt 10:16-22 + -Com. commemoration-of-st-peter +Commemoration commemoration-of-st-peter -== Iulius +== July -*1* precious-blood-of-our-lord-jesus-christ + +*1* The Precious Blood of Our Lord Jesus Christ + class-1 · red + -Ep. Heb 9:11-15. Ev. John 19:30-35 +Epistle Heb 9:11-15. Gospel John 19:30-35 -*2* visitation-of-the-blessed-virgin-mary + +*2* Visitation of the Blessed Virgin Mary + class-2 · white + -Ep. Song 2:8-14 Ev. Luke 1:39-47 +Epistle Song 2:8-14 Gospel Luke 1:39-47 + -Com. processus-and-martinian +Commemoration processus-and-martinian -*3* irenaeus + +*3* St. Irenaeus + class-3 · red + -Ep. 2 Tim. 3:14-17; 4:1-5 Ev. Matt 10:28-33 +Epistle 2 Tim. 3:14-17; 4:1-5 Gospel Matt 10:28-33 -*4* ef-time-after-pentecost-sunday-7 + +*4* 7th Sunday after Pentecost + class-2 · green + -Ep. Rom 6:19-23 Ev. Matt 7:15-21 +Epistle Rom 6:19-23 Gospel Matt 7:15-21 -*5* anthony-mary-zaccariah + +*5* St. Anthony Mary Zaccariah + class-3 · white + -Ep. 1 Tim. 4:8-16 Ev. Mark 10:15-21 +Epistle 1 Tim. 4:8-16 Gospel Mark 10:15-21 -*6* ef-time-after-pentecost-7-tuesday + +*6* Tuesday of the 7th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 6:19-23 Ev. Matt 7:15-21 +Epistle Rom 6:19-23 Gospel Matt 7:15-21 -*7* sts-cyril-methodius + +*7* Sts. Cyril & Methodius + class-3 · white + -Ep. Heb 7:23-27 Ev. Luke 10:1-9 +Epistle Heb 7:23-27 Gospel Luke 10:1-9 -*8* elizabeth-of-portugal + +*8* St. Elizabeth of Portugal + class-3 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. -*9* ef-time-after-pentecost-7-friday + +*9* Friday of the 7th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 6:19-23 Ev. Matt 7:15-21 +Epistle Rom 6:19-23 Gospel Matt 7:15-21 -*10* seven-holy-brothers-and-sts-rufina-secunda + +*10* Seven Holy Brothers and Sts. Rufina & Secunda + class-3 · red + -Ep. Prov 31:10-31 Ev. Matt 12:46-50 +Epistle Prov 31:10-31 Gospel Matt 12:46-50 -*11* ef-time-after-pentecost-sunday-8 + +*11* 8th Sunday after Pentecost + class-2 · green + -Ep. Rom 8:12-17 Ev. Luke 16:1-9 +Epistle Rom 8:12-17 Gospel Luke 16:1-9 -*12* john-gualbert + +*12* St. John Gualbert + class-3 · white + -Ep. Ecclus 45:1-6 Ev. Matt 5:43-48 +Epistle Ecclus 45:1-6 Gospel Matt 5:43-48 + -Com. naboris-et-felicis +Commemoration naboris-et-felicis -*13* ef-time-after-pentecost-8-tuesday + +*13* Tuesday of the 8th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 8:12-17 Ev. Luke 16:1-9 +Epistle Rom 8:12-17 Gospel Luke 16:1-9 -*14* bonaventure + +*14* St. Bonaventure + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*15* henry-the-emperor + +*15* St. Henry the Emperor + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*16* ef-time-after-pentecost-8-friday + +*16* Friday of the 8th Week of the Time after Pentecost + class-4 · green + -Ep. Rom 8:12-17 Ev. Luke 16:1-9 +Epistle Rom 8:12-17 Gospel Luke 16:1-9 + -Com. our-lady-of-mt-carmel +Commemoration our-lady-of-mt-carmel -*17* Officium sanctae Mariae in sabbato + +*17* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + -Com. alexis +Commemoration alexis -*18* ef-time-after-pentecost-sunday-9 + +*18* 9th Sunday after Pentecost + class-2 · green + -Ep. 1 Cor. 10:6-13 Ev. Luke 19:41-47 +Epistle 1 Cor. 10:6-13 Gospel Luke 19:41-47 -*19* vincent-de-paul + +*19* St. Vincent de Paul + class-3 · white + -Ep. 1 Cor. 4:9-14 Ev. Luke 10:1-9 +Epistle 1 Cor. 4:9-14 Gospel Luke 10:1-9 -*20* jerome-emiliani + +*20* St. Jerome Emiliani + class-3 · white + -Ep. Isa 58:7-11 Ev. Matt 19:13-21 +Epistle Isa 58:7-11 Gospel Matt 19:13-21 + -Com. margaret +Commemoration margaret -*21* laurence-of-brindisi + +*21* St. Laurence of Brindisi + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. praxedis-virginis +Commemoration praxedis-virginis -*22* mary-magdalene + +*22* St. Mary Magdalene + class-3 · white + -Ep. Song 3:2-5; 8:6-7 Ev. Luke 7:36-50 +Epistle Song 3:2-5; 8:6-7 Gospel Luke 7:36-50 -*23* apollinaris + +*23* St. Apollinaris + class-3 · red + -Ep. 1 Pet. 5:1-11 Ev. Luke 22:24-30 +Epistle 1 Pet. 5:1-11 Gospel Luke 22:24-30 + -Com. liborii +Commemoration liborii -*24* Officium sanctae Mariae in sabbato + +*24* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + -Com. christina +Commemoration christina -*25* ef-time-after-pentecost-sunday-10 + +*25* 10th Sunday after Pentecost + class-2 · green + -Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 +Epistle 1 Cor. 12:2-11 Gospel Luke 18:9-14 + -Com. james-the-greater +Commemoration St. James the Greater -*26* anne-mother-of-the-blessed-virgin + +*26* St. Anne, Mother of the Blessed Virgin + class-2 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. -*27* ef-time-after-pentecost-10-tuesday + +*27* Tuesday of the 10th Week of the Time after Pentecost + class-4 · green + -Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 +Epistle 1 Cor. 12:2-11 Gospel Luke 18:9-14 + -Com. pantaleon +Commemoration pantaleon -*28* sts-nazarius-celsus-st-victor-i-st-innocent-i + +*28* Sts. Nazarius & Celsus, St. Victor I & St. Innocent I + class-3 · red + -Ep. Wis 10:17-20 Ev. Luke 21:9-19 +Epistle Wis 10:17-20 Gospel Luke 21:9-19 -*29* martha + +*29* St. Martha + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Luke 10:38-42 +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Luke 10:38-42 + -Com. felicis-simplicii-faustini-et-beatricis +Commemoration felicis-simplicii-faustini-et-beatricis -*30* ef-time-after-pentecost-10-friday + +*30* Friday of the 10th Week of the Time after Pentecost + class-4 · green + -Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 +Epistle 1 Cor. 12:2-11 Gospel Luke 18:9-14 + -Com. sts-abdon-sennen +Commemoration sts-abdon-sennen -*31* ignatius-loyola + +*31* St. Ignatius Loyola + class-3 · white + -Ep. 2 Tim. 2:8-10; 3:10-12. Ev. Luke 10:1-9 +Epistle 2 Tim. 2:8-10; 3:10-12. Gospel Luke 10:1-9 -== Augustus +== August -*1* ef-time-after-pentecost-sunday-11 + +*1* 11th Sunday after Pentecost + class-2 · green + -Ep. 1 Cor. 15:1-10 Ev. Mark 7:31-37 +Epistle 1 Cor. 15:1-10 Gospel Mark 7:31-37 -*2* alphonsus-liguori + +*2* St. Alphonsus Liguori + class-3 · white + -Ep. 2 Tim. 2:1-7 Ev. Luke 10:1-9 +Epistle 2 Tim. 2:1-7 Gospel Luke 10:1-9 + -Com. stephen-i-pope-and-martyr +Commemoration stephen-i-pope-and-martyr -*3* ef-time-after-pentecost-11-tuesday + +*3* Tuesday of the 11th Week of the Time after Pentecost + class-4 · green + -Ep. 1 Cor. 15:1-10 Ev. Mark 7:31-37 +Epistle 1 Cor. 15:1-10 Gospel Mark 7:31-37 -*4* dominic + +*4* St. Dominic + class-3 · white + -Ep. 2 Tim. 4:1-8 Ev. Luke 12:35-40 +Epistle 2 Tim. 4:1-8 Gospel Luke 12:35-40 -*5* dedication-of-the-basilica-of-st-mary-major + +*5* Dedication of the Basilica of St. Mary Major + class-3 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 -*6* transfiguration-of-our-lord + +*6* Transfiguration of Our Lord + class-2 · white + -Ep. 2 Pet. 1:16-19 Ev. Matt 17:1-9 +Epistle 2 Pet. 1:16-19 Gospel Matt 17:1-9 + -Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs +Commemoration pope-sixtus-ii-felicissimus-and-agapitus-martyrs -*7* cajetan + +*7* St. Cajetan + class-3 · white + -Ep. Sir 31:8-11 Ev. Matt 6:24-33 +Epistle Sir 31:8-11 Gospel Matt 6:24-33 + -Com. donatus +Commemoration donatus -*8* ef-time-after-pentecost-sunday-12 + +*8* 12th Sunday after Pentecost + class-2 · green + -Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 +Epistle 2 Cor. 3:4-9 Gospel Luke 10:23-37 -*9* vigil-of-st-lawrence + +*9* Vigil of St. Lawrence + class-3 · violet + -Ep. Ecclus 51:1-8, 12 Ev. Matt 16:24-27 +Epistle Ecclus 51:1-8, 12 Gospel Matt 16:24-27 + -Com. romanus +Commemoration romanus -*10* lawrence + +*10* St. Lawrence + class-2 · red + -Ep. 2 Cor. 9:6-10 Ev. John 12:24-26 +Epistle 2 Cor. 9:6-10 Gospel John 12:24-26 -*11* ef-time-after-pentecost-12-wednesday + +*11* Wednesday of the 12th Week of the Time after Pentecost + class-4 · green + -Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 +Epistle 2 Cor. 3:4-9 Gospel Luke 10:23-37 + -Com. sts-tiburtius-susanna +Commemoration sts-tiburtius-susanna -*12* clare + +*12* St. Clare + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -*13* ef-time-after-pentecost-12-friday + +*13* Friday of the 12th Week of the Time after Pentecost + class-4 · green + -Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 +Epistle 2 Cor. 3:4-9 Gospel Luke 10:23-37 + -Com. sts-hippolytus-cassian +Commemoration sts-hippolytus-cassian -*14* vigil-of-the-assumption + +*14* Vigil of the Assumption + class-2 · violet + -Ep. Sir 24:23-31 Ev. Luke 11:27-28 +Epistle Sir 24:23-31 Gospel Luke 11:27-28 + -Com. eusebius-confessor +Commemoration eusebius-confessor -*15* assumption-of-the-blessed-virgin-mary + +*15* Assumption of the Blessed Virgin Mary + class-1 · white + -Ep. Judith 13:22-25; 15:10 Ev. Luke 1:41-50 +Epistle Judith 13:22-25; 15:10 Gospel Luke 1:41-50 + -Com. ef-time-after-pentecost-sunday-13 +Commemoration 13th Sunday after Pentecost -*16* joachim-father-of-the-blessed-virgin + +*16* St. Joachim, Father of the Blessed Virgin + class-2 · white + -Ep. Sir 31:8-11 Ev. Matt 1:1-16 +Epistle Sir 31:8-11 Gospel Matt 1:1-16 -*17* hyacinth + +*17* St. Hyacinth + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*18* ef-time-after-pentecost-13-wednesday + +*18* Wednesday of the 13th Week of the Time after Pentecost + class-4 · green + -Ep. Gal 3:16-22 Ev. Luke 17:11-19 +Epistle Gal 3:16-22 Gospel Luke 17:11-19 + -Com. agapitus +Commemoration agapitus -*19* john-eudes + +*19* St. John Eudes + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*20* bernard-of-clairvaux + +*20* St. Bernard of Clairvaux + class-3 · white + -Ep. Ecclus 39:6-14 Ev. Matt 5:13-19 +Epistle Ecclus 39:6-14 Gospel Matt 5:13-19 -*21* jane-frances-de-chantal + +*21* St. Jane Frances de Chantal + class-3 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. -*22* ef-time-after-pentecost-sunday-14 + +*22* 14th Sunday after Pentecost + class-2 · green + -Ep. Gal 5:16-24 Ev. Matt 6:24-33 +Epistle Gal 5:16-24 Gospel Matt 6:24-33 + -Com. immaculate-heart-of-mary +Commemoration Immaculate Heart of Mary -*23* philip-benizi + +*23* St. Philip Benizi + class-3 · white + -Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 +Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 -*24* bartholomew + +*24* St. Bartholomew + class-2 · red + -Ep. 1 Cor. 12:27-31 Ev. Luke 6:12-19 +Epistle 1 Cor. 12:27-31 Gospel Luke 6:12-19 -*25* louis-ix + +*25* St. Louis IX + class-3 · white + -Ep. Wis 10:10-14 Ev. Luke 19:12-26 +Epistle Wis 10:10-14 Gospel Luke 19:12-26 -*26* ef-time-after-pentecost-14-thursday + +*26* Thursday of the 14th Week of the Time after Pentecost + class-4 · green + -Ep. Gal 5:16-24 Ev. Matt 6:24-33 +Epistle Gal 5:16-24 Gospel Matt 6:24-33 + -Com. zephyrinus +Commemoration zephyrinus -*27* joseph-calasance + +*27* St. Joseph Calasance + class-3 · white + -Ep. Wis 10:10-14 Ev. Matt 18:1-5 +Epistle Wis 10:10-14 Gospel Matt 18:1-5 -*28* augustine + +*28* St. Augustine + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. hermes +Commemoration hermes -*29* ef-time-after-pentecost-sunday-15 + +*29* 15th Sunday after Pentecost + class-2 · green + -Ep. Gal 5:25-26; 6:1-10 Ev. Luke 7:11-16 +Epistle Gal 5:25-26; 6:1-10 Gospel Luke 7:11-16 -*30* rose-of-lima + +*30* St. Rose of Lima + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. + -Com. sts-felix-and-adauctus +Commemoration sts-felix-and-adauctus -*31* raymond-nonnatus + +*31* St. Raymond Nonnatus + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 == September -*1* ef-time-after-pentecost-15-wednesday + +*1* Wednesday of the 15th Week of the Time after Pentecost + class-4 · green + -Ep. Gal 5:25-26; 6:1-10 Ev. Luke 7:11-16 +Epistle Gal 5:25-26; 6:1-10 Gospel Luke 7:11-16 + -Com. giles + -Com. twelve-holy-brothers-martyrs +Commemoration giles + +Commemoration twelve-holy-brothers-martyrs -*2* stephen-of-hungary + +*2* St. Stephen of Hungary + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 19:12-26 +Epistle Sir 31:8-11 Gospel Luke 19:12-26 -*3* pius-x + +*3* St. Pius X + class-3 · white + -Ep. 1 Thess. 2:2-8 Ev. John 21:15-17 +Epistle 1 Thess. 2:2-8 Gospel John 21:15-17 -*4* Officium sanctae Mariae in sabbato + +*4* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 -*5* ef-time-after-pentecost-sunday-16 + +*5* 16th Sunday after Pentecost + class-2 · green + -Ep. Eph 3:13-21 Ev. Luke 14:1-11 +Epistle Eph 3:13-21 Gospel Luke 14:1-11 -*6* ef-time-after-pentecost-16-monday + +*6* Monday of the 16th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 3:13-21 Ev. Luke 14:1-11 +Epistle Eph 3:13-21 Gospel Luke 14:1-11 -*7* ef-time-after-pentecost-16-tuesday + +*7* Tuesday of the 16th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 3:13-21 Ev. Luke 14:1-11 +Epistle Eph 3:13-21 Gospel Luke 14:1-11 -*8* nativity-of-the-blessed-virgin-mary + +*8* Nativity of the Blessed Virgin Mary + class-2 · white + -Ep. Prov 8:22-35 Ev. Matt 1:1-16 +Epistle Prov 8:22-35 Gospel Matt 1:1-16 + -Com. hadriani +Commemoration hadriani -*9* ef-time-after-pentecost-16-thursday + +*9* Thursday of the 16th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 3:13-21 Ev. Luke 14:1-11 +Epistle Eph 3:13-21 Gospel Luke 14:1-11 + -Com. gorgonius +Commemoration gorgonius -*10* nicholas-of-tolentino + +*10* St. Nicholas of Tolentino + class-3 · white + -Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 +Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 -*11* Officium sanctae Mariae in sabbato + +*11* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + -Com. sts-protus-hyacinth +Commemoration sts-protus-hyacinth -*12* ef-time-after-pentecost-sunday-17 + +*12* 17th Sunday after Pentecost + class-2 · green + -Ep. Eph 4:1-6 Ev. Matt 22:34-46 +Epistle Eph 4:1-6 Gospel Matt 22:34-46 -*13* ef-time-after-pentecost-17-monday + +*13* Monday of the 17th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 4:1-6 Ev. Matt 22:34-46 +Epistle Eph 4:1-6 Gospel Matt 22:34-46 -*14* exaltation-of-the-holy-cross + +*14* Exaltation of the Holy Cross + class-2 · red + -Ep. Phil 2:5-11 Ev. John 12:31-36 +Epistle Phil 2:5-11 Gospel John 12:31-36 -*15* seven-sorrows-of-the-blessed-virgin-mary + +*15* Seven Sorrows of the Blessed Virgin Mary + class-2 · white + -Ep. Judith 13:22; 13:23-25 Ev. John 19:25-27 +Epistle Judith 13:22; 13:23-25 Gospel John 19:25-27 + -Com. nicomedes +Commemoration nicomedes -*16* sts-cornelius-cyprian + +*16* Sts. Cornelius & Cyprian + class-3 · red + -Ep. Wis 3:1-8 Ev. Luke 21:9-19 +Epistle Wis 3:1-8 Gospel Luke 21:9-19 + -Com. sts-euphemia-lucy-and-geminianus +Commemoration sts-euphemia-lucy-and-geminianus -*17* ef-time-after-pentecost-17-friday + +*17* Friday of the 17th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 4:1-6 Ev. Matt 22:34-46 +Epistle Eph 4:1-6 Gospel Matt 22:34-46 + -Com. stigmata-of-st-francis +Commemoration stigmata-of-st-francis -*18* joseph-of-cupertino + +*18* St. Joseph of Cupertino + class-3 · white + -Ep. 1 Cor 13:1-8 Ev. Matt 22:1-14 +Epistle 1 Cor 13:1-8 Gospel Matt 22:1-14 -*19* ef-time-after-pentecost-sunday-18 + +*19* 18th Sunday after Pentecost + class-2 · green + -Ep. 1 Cor. 1:4-8 Ev. Matt 9:1-8 +Epistle 1 Cor. 1:4-8 Gospel Matt 9:1-8 -*20* ef-time-after-pentecost-18-monday + +*20* Monday of the 18th Week of the Time after Pentecost + class-4 · green + -Ep. 1 Cor. 1:4-8 Ev. Matt 9:1-8 +Epistle 1 Cor. 1:4-8 Gospel Matt 9:1-8 + -Com. sts-eustace-companions +Commemoration sts-eustace-companions -*21* matthew + +*21* St. Matthew + class-2 · red + -Ep. Ezek 1:10-14 Ev. Matt 9:9-13 +Epistle Ezek 1:10-14 Gospel Matt 9:9-13 -*22* ef-september-ember-wed + +*22* September Ember Wednesday + class-2 · violet + -Ep. 2 Esd. 8:1-10 Ev. Mark 9:16-28 +Epistle 2 Esd. 8:1-10 Gospel Mark 9:16-28 + -Com. thomas-of-villanova +Commemoration St. Thomas of Villanova -*23* linus + +*23* St. Linus + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 + -Com. thecla +Commemoration thecla -*24* ef-september-ember-fri + +*24* September Ember Friday + class-2 · violet + -Ep. Osee 14:2-10 Ev. Luke 7:36-50 +Epistle Osee 14:2-10 Gospel Luke 7:36-50 + -Com. our-lady-of-ransom +Commemoration our-lady-of-ransom -*25* ef-september-ember-sat + +*25* September Ember Saturday + class-2 · violet + -Ep. Heb 9:2-12 Ev. Luke 13:6-17 +Epistle Heb 9:2-12 Gospel Luke 13:6-17 -*26* ef-time-after-pentecost-sunday-19 + +*26* 19th Sunday after Pentecost + class-2 · green + -Ep. Eph 4:23-28 Ev. Matt 22:1-14 +Epistle Eph 4:23-28 Gospel Matt 22:1-14 -*27* sts-cosmas-damian + +*27* Sts. Cosmas & Damian + class-3 · red + -Ep. Wis 5:16-20 Ev. Luke 6:17-23 +Epistle Wis 5:16-20 Gospel Luke 6:17-23 -*28* wenceslaus + +*28* St. Wenceslaus + class-3 · red + -Ep. Wis 10:10-14 Ev. Matt 10:34-42 +Epistle Wis 10:10-14 Gospel Matt 10:34-42 -*29* dedication-of-st-michael-the-archangel + +*29* Dedication of St. Michael the Archangel + class-1 · white + -Ep. Rev 1:1-5 Ev. Matt 18:1-10 +Epistle Rev 1:1-5 Gospel Matt 18:1-10 -*30* jerome + +*30* St. Jerome + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 == October -*1* ef-time-after-pentecost-19-friday + +*1* Friday of the 19th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 4:23-28 Ev. Matt 22:1-14 +Epistle Eph 4:23-28 Gospel Matt 22:1-14 + -Com. remigius +Commemoration remigius -*2* holy-guardian-angels + +*2* Holy Guardian Angels + class-3 · white + -Ep. Exod 23:20-23 Ev. Matt 18:1-10 +Epistle Exod 23:20-23 Gospel Matt 18:1-10 -*3* ef-time-after-pentecost-sunday-20 + +*3* 20th Sunday after Pentecost + class-2 · green + -Ep. Eph 5:15-21 Ev. John 4:46-53 +Epistle Eph 5:15-21 Gospel John 4:46-53 -*4* francis-of-assisi + +*4* St. Francis of Assisi + class-3 · white + -Ep. Gal 6:14-18 Ev. Matt 11:25-30 +Epistle Gal 6:14-18 Gospel Matt 11:25-30 -*5* ef-time-after-pentecost-20-tuesday + +*5* Tuesday of the 20th Week of the Time after Pentecost + class-4 · green + -Ep. Eph 5:15-21 Ev. John 4:46-53 +Epistle Eph 5:15-21 Gospel John 4:46-53 + -Com. placid-companions +Commemoration placid-companions -*6* bruno + +*6* St. Bruno + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*7* our-lady-of-the-rosary + +*7* Our Lady of the Rosary + class-2 · white + -Ep. Prov 8:22-24, 32-35. Ev. Luke 1:26-38 +Epistle Prov 8:22-24, 32-35. Gospel Luke 1:26-38 + -Com. mark-i +Commemoration mark-i -*8* bridget-of-sweden + +*8* St. Bridget of Sweden + class-3 · white + -Ep. 1 Tim. 5:3-10. Ev. Matt 13:44-52. +Epistle 1 Tim. 5:3-10. Gospel Matt 13:44-52. + -Com. sergio-baccho-marcello-and-apulejo-martyrs +Commemoration sergio-baccho-marcello-and-apulejo-martyrs -*9* john-leonardi + +*9* St. John Leonardi + class-3 · white + -Ep. 2 Cor 4:1-6; 4:15-18 Ev. Luke 10:1-9 +Epistle 2 Cor 4:1-6; 4:15-18 Gospel Luke 10:1-9 + -Com. dionysius-and-companions +Commemoration dionysius-and-companions -*10* ef-time-after-pentecost-sunday-21 + +*10* 21st Sunday after Pentecost + class-2 · green + -Ep. Eph 6:10-17 Ev. Matt 18:23-35 +Epistle Eph 6:10-17 Gospel Matt 18:23-35 -*11* maternity-of-the-blessed-virgin-mary + +*11* Maternity of the Blessed Virgin Mary + class-2 · white + -Ep. Sir 24:23-31 Ev. Luke 2:43-51 +Epistle Sir 24:23-31 Gospel Luke 2:43-51 -*12* ef-time-after-pentecost-21-tuesday + +*12* Tuesday of the 21st Week of the Time after Pentecost + class-4 · green + -Ep. Eph 6:10-17 Ev. Matt 18:23-35 +Epistle Eph 6:10-17 Gospel Matt 18:23-35 -*13* edward + +*13* St. Edward + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 -*14* callistus-i + +*14* St. Callistus I + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 -*15* teresa-of-avila + +*15* St. Teresa of Avila + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -*16* hedwig + +*16* St. Hedwig + class-3 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. -*17* ef-time-after-pentecost-sunday-22 + +*17* 22nd Sunday after Pentecost + class-2 · green + -Ep. Phil 1:6-11 Ev. Matt 22:15-21 +Epistle Phil 1:6-11 Gospel Matt 22:15-21 -*18* luke-the-evangelist + +*18* St. Luke the Evangelist + class-2 · red + -Ep. 2 Cor. 8:16-24 Ev. Luke 10:1-9 +Epistle 2 Cor. 8:16-24 Gospel Luke 10:1-9 -*19* peter-of-alcantara + +*19* St. Peter of Alcantara + class-3 · white + -Ep. Phil 3:7-12 Ev. Luke 12:32-34 +Epistle Phil 3:7-12 Gospel Luke 12:32-34 -*20* john-cantius + +*20* St. John Cantius + class-3 · white + -Ep. James 2:12-17 Ev. Luke 12:35-40 +Epistle James 2:12-17 Gospel Luke 12:35-40 -*21* ef-time-after-pentecost-22-thursday + +*21* Thursday of the 22nd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 1:6-11 Ev. Matt 22:15-21 +Epistle Phil 1:6-11 Gospel Matt 22:15-21 + -Com. hilarion + -Com. ursula-and-companions +Commemoration hilarion + +Commemoration ursula-and-companions -*22* ef-time-after-pentecost-22-friday + +*22* Friday of the 22nd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 1:6-11 Ev. Matt 22:15-21 +Epistle Phil 1:6-11 Gospel Matt 22:15-21 -*23* anthony-mary-claret + +*23* St. Anthony Mary Claret + class-3 · white + -Ep. Heb 7:23-27 Ev. Matt 24:42-47 +Epistle Heb 7:23-27 Gospel Matt 24:42-47 -*24* ef-time-after-pentecost-sunday-23 + +*24* 23rd Sunday after Pentecost + class-2 · green + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 -*25* ef-time-after-pentecost-23-monday + +*25* Monday of the 23rd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 + -Com. sts-chrysanthus-daria +Commemoration sts-chrysanthus-daria -*26* ef-time-after-pentecost-23-tuesday + +*26* Tuesday of the 23rd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 + -Com. evaristus +Commemoration evaristus -*27* ef-time-after-pentecost-23-wednesday + +*27* Wednesday of the 23rd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 -*28* sts-simon-jude + +*28* Sts. Simon & Jude + class-2 · red + -Ep. Eph. 4:7-13. Ev. John 15:17-25 +Epistle Eph. 4:7-13. Gospel John 15:17-25 -*29* ef-time-after-pentecost-23-friday + +*29* Friday of the 23rd Week of the Time after Pentecost + class-4 · green + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 -*30* Officium sanctae Mariae in sabbato + +*30* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 -*31* ef-christ-the-king + +*31* Christ the King + class-1 · white + -Ep. Col 1:12-20. Ev. John 18:33-37 +Epistle Col 1:12-20. Gospel John 18:33-37 == November -*1* all-saints + +*1* All Saints + class-1 · white + -Ep. Apoc 7:2-12 Ev. Matt 5:1-12 +Epistle Apoc 7:2-12 Gospel Matt 5:1-12 -*2* commemoration-of-all-souls + +*2* Commemoration of All Souls + class-1 · black + -Ep. 1 Cor. 15:51-57 Ev. John 5:25-29 +Epistle 1 Cor. 15:51-57 Gospel John 5:25-29 -*3* ef-time-after-pentecost-24-wednesday + +*3* Wednesday of the 24th Week of the Time after Pentecost + class-4 · green + -Ep. Col 1:12-20. Ev. John 18:33-37 +Epistle Col 1:12-20. Gospel John 18:33-37 -*4* charles-borromeo + +*4* St. Charles Borromeo + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 +Epistle Sir 44:16-27; 45:3-20 Gospel Matt 25:14-23 + -Com. sts-vitalis-and-agricola-martyrs +Commemoration sts-vitalis-and-agricola-martyrs -*5* ef-time-after-pentecost-24-friday + +*5* Friday of the 24th Week of the Time after Pentecost + class-4 · green + -Ep. Col 1:12-20. Ev. John 18:33-37 +Epistle Col 1:12-20. Gospel John 18:33-37 -*6* Officium sanctae Mariae in sabbato + +*6* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 -*7* ef-time-after-epiphany-sunday-5 + +*7* 5th Sunday after Epiphany + class-2 · green + -Ep. Col 3:12-17 Ev. Matt 13:24-30 +Epistle Col 3:12-17 Gospel Matt 13:24-30 -*8* ef-time-after-pentecost-25-monday + +*8* Monday of the 25th Week of the Time after Pentecost + class-4 · green + -Ep. Col 3:12-17 Ev. Matt 13:24-30 +Epistle Col 3:12-17 Gospel Matt 13:24-30 + -Com. four-holy-crowned-martyrs +Commemoration four-holy-crowned-martyrs -*9* dedication-of-the-archbasilica-of-our-holy-savior + +*9* Dedication of the Archbasilica of Our Holy Savior + class-2 · white + -Ep. Rev 21:2-5 Ev. Luke 19:1-10 +Epistle Rev 21:2-5 Gospel Luke 19:1-10 + -Com. theodore +Commemoration theodore -*10* andrew-avellino + +*10* St. Andrew Avellino + class-3 · white + -Ep. Sir 31:8-11 Ev. Luke 12:35-40 +Epistle Sir 31:8-11 Gospel Luke 12:35-40 + -Com. sts-tryphonis-respicii-et-nymphae +Commemoration sts-tryphonis-respicii-et-nymphae -*11* martin-of-tours + +*11* St. Martin of Tours + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Luke 11:33-36 +Epistle Sir 44:16-27; 45:3-20 Gospel Luke 11:33-36 + -Com. menna +Commemoration menna -*12* martin-i + +*12* St. Martin I + class-3 · red + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 -*13* didacus + +*13* St. Didacus + class-3 · white + -Ep. 1 Cor 4:9-14 Ev. Luke 12:32-34 +Epistle 1 Cor 4:9-14 Gospel Luke 12:32-34 -*14* ef-time-after-epiphany-sunday-6 + +*14* 6th Sunday after Epiphany + class-2 · green + -Ep. 1 Thess 1:2-10 Ev. Matt 13:31-35 +Epistle 1 Thess 1:2-10 Gospel Matt 13:31-35 -*15* albert-the-great + +*15* St. Albert the Great + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 -*16* gertrude-the-great + +*16* St. Gertrude the Great + class-3 · white + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. -*17* gregory-the-wonderworker + +*17* St. Gregory the Wonderworker + class-3 · white + -Ep. Sir 44:16-27; 45:3-20 Ev. Mark 11:22-24 +Epistle Sir 44:16-27; 45:3-20 Gospel Mark 11:22-24 -*18* dedication-of-the-basilicas-of-sts-peter-paul + +*18* Dedication of the Basilicas of Sts. Peter & Paul + class-3 · white + -Ep. Rev 21:2-5 Ev. Luke 19:1-10 +Epistle Rev 21:2-5 Gospel Luke 19:1-10 -*19* elizabeth-of-hungary + +*19* St. Elizabeth of Hungary + class-3 · white + -Ep. Prov 31:10-31 Ev. Matt 13:44-52. +Epistle Prov 31:10-31 Gospel Matt 13:44-52. + -Com. pontian +Commemoration pontian -*20* felix-of-valois + +*20* St. Felix of Valois + class-3 · white + -Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 +Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 -*21* ef-time-after-pentecost-sunday-24 + +*21* 24th and Last Sunday after Pentecost + class-2 · green + -Ep. Col 1:9-14 Ev. Matt 24:15-35 +Epistle Col 1:9-14 Gospel Matt 24:15-35 -*22* cecilia + +*22* St. Cecilia + class-3 · red + -Ep. Sir 51:13-17. Ev. Matt 25:1-13. +Epistle Sir 51:13-17. Gospel Matt 25:1-13. -*23* clement-i + +*23* St. Clement I + class-3 · red + -Ep. Phil 3:17-21; 4:1-3 Ev. Matt 16:13-19 +Epistle Phil 3:17-21; 4:1-3 Gospel Matt 16:13-19 + -Com. felicity +Commemoration felicity -*24* john-of-the-cross + +*24* St. John of the Cross + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. chrysogonus +Commemoration chrysogonus -*25* catherine-of-alexandria + +*25* St. Catherine of Alexandria + class-3 · red + -Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. +Epistle Sir 51:1-8; 51:12 Gospel Matt 25:1-13. -*26* sylvester + +*26* St. Sylvester + class-3 · white + -Ep. Ecclus 45:1-6 Ev. Matt 19:27-29. +Epistle Ecclus 45:1-6 Gospel Matt 19:27-29. + -Com. peter-of-alexandria +Commemoration peter-of-alexandria -*27* Officium sanctae Mariae in sabbato + +*27* Our Lady's Saturday Office + class-4 · white + -Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 +Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 -*28* ef-advent-sunday-1 + +*28* 1st Sunday of Advent + class-1 · violet + -Ep. Rom 13:11-14 Ev. Luke 21:25-33 +Epistle Rom 13:11-14 Gospel Luke 21:25-33 -*29* ef-advent-1-monday + +*29* Monday of the 1st Week of Advent + class-3 · violet + -Ep. Rom 13:11-14 Ev. Luke 21:25-33 +Epistle Rom 13:11-14 Gospel Luke 21:25-33 + -Com. saturninus +Commemoration saturninus -*30* andrew + +*30* St. Andrew + class-2 · red + -Ep. Rom 10:10-18 Ev. Matt 4:18-22 +Epistle Rom 10:10-18 Gospel Matt 4:18-22 + -Com. ef-advent-1-tuesday +Commemoration Tuesday of the 1st Week of Advent == December -*1* ef-advent-1-wednesday + +*1* Wednesday of the 1st Week of Advent + class-3 · violet + -Ep. Rom 13:11-14 Ev. Luke 21:25-33 +Epistle Rom 13:11-14 Gospel Luke 21:25-33 -*2* vivian + +*2* St. Vivian + class-3 · red + -Ep. Sir 51:13-17. Ev. Matt 13:44-52. +Epistle Sir 51:13-17. Gospel Matt 13:44-52. + -Com. ef-advent-1-thursday +Commemoration Thursday of the 1st Week of Advent -*3* francis-xavier + +*3* St. Francis Xavier + class-3 · white + -Ep. Rom 10:10-18 Ev. Mark 16:15-18 +Epistle Rom 10:10-18 Gospel Mark 16:15-18 + -Com. ef-advent-1-friday +Commemoration Friday of the 1st Week of Advent -*4* peter-chrysologus + +*4* St. Peter Chrysologus + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. ef-advent-1-saturday + -Com. barbara +Commemoration Saturday of the 1st Week of Advent + +Commemoration barbara -*5* ef-advent-sunday-2 + +*5* 2nd Sunday of Advent + class-1 · violet + -Ep. Rom 15:4-13 Ev. Matt 11:2-10 +Epistle Rom 15:4-13 Gospel Matt 11:2-10 -*6* nicholas + +*6* St. Nicholas + class-3 · white + -Ep. Heb 13:7-17 Ev. Matt 25:14-23 +Epistle Heb 13:7-17 Gospel Matt 25:14-23 + -Com. ef-advent-2-monday +Commemoration Monday of the 2nd Week of Advent -*7* ambrose + +*7* St. Ambrose + class-3 · white + -Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 +Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 + -Com. ef-advent-2-tuesday +Commemoration Tuesday of the 2nd Week of Advent -*8* immaculate-conception-of-the-blessed-virgin-mary + +*8* Immaculate Conception of the Blessed Virgin Mary + class-1 · white + -Ep. Prov 8:22-35 Ev. Luke 1:26-28 +Epistle Prov 8:22-35 Gospel Luke 1:26-28 + -Com. ef-advent-2-wednesday +Commemoration Wednesday of the 2nd Week of Advent -*9* ef-advent-2-thursday + +*9* Thursday of the 2nd Week of Advent + class-3 · violet + -Ep. Rom 15:4-13 Ev. Matt 11:2-10 +Epistle Rom 15:4-13 Gospel Matt 11:2-10 -*10* ef-advent-2-friday + +*10* Friday of the 2nd Week of Advent + class-3 · violet + -Ep. Rom 15:4-13 Ev. Matt 11:2-10 +Epistle Rom 15:4-13 Gospel Matt 11:2-10 + -Com. melchiades +Commemoration melchiades -*11* damasus-i + +*11* St. Damasus I + class-3 · white + -Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 +Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 + -Com. ef-advent-2-saturday +Commemoration Saturday of the 2nd Week of Advent -*12* ef-advent-sunday-3 + +*12* 3rd Sunday of Advent + class-1 · rose + -Ep. Phil 4:4-7 Ev. John 1:19-28 +Epistle Phil 4:4-7 Gospel John 1:19-28 -*13* lucy + +*13* St. Lucy + class-3 · red + -Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 13:44-52. +Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 13:44-52. + -Com. ef-advent-3-monday +Commemoration Monday of the 3rd Week of Advent -*14* ef-advent-3-tuesday + +*14* Tuesday of the 3rd Week of Advent + class-3 · violet + -Ep. Phil 4:4-7 Ev. John 1:19-28 +Epistle Phil 4:4-7 Gospel John 1:19-28 -*15* ef-advent-ember-wed + +*15* Advent Ember Wednesday + class-2 · violet + -Ep. Isa 7:10-15 Ev. Luke 1:26-38 +Epistle Isa 7:10-15 Gospel Luke 1:26-38 -*16* eusebius + +*16* St. Eusebius + class-3 · red + -Ep. 2 Cor. 1:3-7 Ev. Matt 16:24-27. +Epistle 2 Cor. 1:3-7 Gospel Matt 16:24-27. + -Com. ef-advent-3-thursday +Commemoration Thursday of the 3rd Week of Advent -*17* ef-advent-ember-fri + +*17* Advent Ember Friday + class-2 · violet + -Ep. Isa 11:1-5 Ev. Luke 1:39-47 +Epistle Isa 11:1-5 Gospel Luke 1:39-47 -*18* ef-advent-ember-sat + +*18* Advent Ember Saturday + class-2 · violet + -Ep. 2 Thess 2:1-8 Ev. Luke 3:1-6 +Epistle 2 Thess 2:1-8 Gospel Luke 3:1-6 -*19* ef-advent-sunday-4 + +*19* 4th Sunday of Advent + class-1 · violet + -Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 +Epistle 1 Cor. 4:1-5 Gospel Luke 3:1-6 -*20* ef-advent-4-monday + +*20* Monday of the 4th Week of Advent + class-2 · violet + -Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 +Epistle 1 Cor. 4:1-5 Gospel Luke 3:1-6 -*21* thomas + +*21* St. Thomas + class-2 · red + -Ep. Eph 2:19-22 Ev. John 20:24-29 +Epistle Eph 2:19-22 Gospel John 20:24-29 + -Com. ef-advent-4-tuesday +Commemoration Tuesday of the 4th Week of Advent -*22* ef-advent-4-wednesday + +*22* Wednesday of the 4th Week of Advent + class-2 · violet + -Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 +Epistle 1 Cor. 4:1-5 Gospel Luke 3:1-6 -*23* ef-advent-4-thursday + +*23* Thursday of the 4th Week of Advent + class-2 · violet + -Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 +Epistle 1 Cor. 4:1-5 Gospel Luke 3:1-6 -*24* ef-nativity-vigil + +*24* Vigil of the Nativity (Christmas Eve) + class-1 · violet + -Ep. Rom 1:1-6 Ev. Matt 1:18-21 +Epistle Rom 1:1-6 Gospel Matt 1:18-21 -*25* ef-nativity + +*25* The Nativity of Our Lord (Christmas) + class-1 · white + -Ep. Heb 1:1-12 Ev. John 1:1-14 +Epistle Heb 1:1-12 Gospel John 1:1-14 -*26* ef-christmas-sunday-0 + +*26* Sunday within the Octave of the Nativity + class-2 · white + -Ep. Gal 4:1-7 Ev. Luke 2:33-40 +Epistle Gal 4:1-7 Gospel Luke 2:33-40 + -Com. stephen +Commemoration St. Stephen -*27* john-the-evangelist + +*27* St. John the Evangelist + class-2 · white + -Ep. Ecclus 15:1-6 Ev. John 21:19-24 +Epistle Ecclus 15:1-6 Gospel John 21:19-24 + -Com. ef-nativity-octave-day-3 +Commemoration ef-nativity-octave-day-3 -*28* holy-innocents + +*28* Holy Innocents + class-2 · red + -Ep. Apoc 14:1-5 Ev. Matt 2:13-18 +Epistle Apoc 14:1-5 Gospel Matt 2:13-18 + -Com. ef-nativity-octave-day-4 +Commemoration ef-nativity-octave-day-4 -*29* ef-nativity-octave-day-5 + +*29* 5th Day within the Octave of the Nativity + class-2 · white + -Ep. Titus 3:4-7 Ev. Luke 2:15-20 +Epistle Titus 3:4-7 Gospel Luke 2:15-20 + -Com. thomas-becket +Commemoration thomas-becket -*30* ef-nativity-octave-day-6 + +*30* 6th Day within the Octave of the Nativity + class-2 · white + -Ep. Titus 3:4-7 Ev. Luke 2:15-20 +Epistle Titus 3:4-7 Gospel Luke 2:15-20 -*31* ef-nativity-octave-day-7 + +*31* 7th Day within the Octave of the Nativity + class-2 · white + -Ep. Titus 3:4-7 Ev. Luke 2:15-20 +Epistle Titus 3:4-7 Gospel Luke 2:15-20 + -Com. silvester +Commemoration silvester diff --git a/test/golden/ordo-2027.html b/test/golden/ordo-2027.html index 2f597c4..dd0deca 100644 --- a/test/golden/ordo-2027.html +++ b/test/golden/ordo-2027.html @@ -1,9 +1,12 @@ <!-- colitur ordo booklet -- HTML. flavour: html --> -<!-- Day label falls back to the slug when the day carries no Latin name - (most temporal days, and most sanctoral entries, which are Latin-less - in the shipped data) -- see ordo.tex's own comment for why the fallback - is written as a name-section wrapping a plain var and its inverse, - rather than a single dotted lookup and its inverse. --> +<!-- The observed day's own display name is a PLAIN resolved string + (View.of_days, Task 5), not a lang-keyed object -- there is no + dotted-la-with-slug-fallback idiom to write here any more; a + commemoration entry carries its own resolved display name too, so a + commemoration line no longer prints the bare slug. Every fixed label + (Ordo, Epistle, Gospel, Commemoration) comes from the view's term + vocabulary rather than being written into this file, so a translated + booklet needs no template edit. --> <!doctype html> <html lang="la"><head><meta charset="utf-8"> <title>Ordo 2027</title> @@ -18,1842 +21,1842 @@ @media print{body{margin:0}} </style></head><body> <h1>Ordo 2027 · ef</h1> -<h2>Ianuarius</h2> +<h2>January</h2> <div class="day white"> - <span class="dom">1</span>ef-circumcision - <div class="meta">class-1 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21</div> + <span class="dom">1</span>The Octave Day of the Nativity + <div class="meta">class-1 · white · Epistle Titus 2:11-15 · Gospel Luke 2:21</div> </div> <div class="day white"> - <span class="dom">2</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20</div> + <span class="dom">2</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> </div> <div class="day white"> - <span class="dom">3</span>Sanctissimi Nominis Iesu - <div class="meta">class-2 · white · Ep. Acts 4:8-12 · Ev. Luke 2:21</div> + <span class="dom">3</span>The Holy Name of Jesus + <div class="meta">class-2 · white · Epistle Acts 4:8-12 · Gospel Luke 2:21</div> </div> <div class="day white"> - <span class="dom">4</span>ef-christmas-1-monday - <div class="meta">class-4 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21</div> + <span class="dom">4</span>Monday before Epiphany + <div class="meta">class-4 · white · Epistle Titus 2:11-15 · Gospel Luke 2:21</div> </div> <div class="day white"> - <span class="dom">5</span>ef-christmas-1-tuesday - <div class="meta">class-4 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21</div> - <div class="meta">Com. telesphorus-pope-and-martyr</div> + <span class="dom">5</span>Tuesday before Epiphany + <div class="meta">class-4 · white · Epistle Titus 2:11-15 · Gospel Luke 2:21</div> + <div class="meta">Commemoration telesphorus-pope-and-martyr</div> </div> <div class="day white"> - <span class="dom">6</span>ef-epiphany - <div class="meta">class-1 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12</div> + <span class="dom">6</span>The Epiphany of Our Lord + <div class="meta">class-1 · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12</div> </div> <div class="day white"> - <span class="dom">7</span>ef-christmas-2-thursday - <div class="meta">class-4 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12</div> + <span class="dom">7</span>Thursday after Epiphany + <div class="meta">class-4 · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12</div> </div> <div class="day white"> - <span class="dom">8</span>ef-christmas-2-friday - <div class="meta">class-4 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12</div> + <span class="dom">8</span>Friday after Epiphany + <div class="meta">class-4 · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12</div> </div> <div class="day white"> - <span class="dom">9</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20</div> + <span class="dom">9</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> </div> <div class="day white"> - <span class="dom">10</span>Sanctae Familiae Iesu, Mariae, Ioseph - <div class="meta">class-2 · white · Ep. Col 3:12-17 · Ev. Luke 2:42-52</div> + <span class="dom">10</span>The Holy Family + <div class="meta">class-2 · white · Epistle Col 3:12-17 · Gospel Luke 2:42-52</div> </div> <div class="day white"> - <span class="dom">11</span>ef-time-after-epiphany-1-monday - <div class="meta">class-4 · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52</div> - <div class="meta">Com. hyginus-pope-and-martyr</div> + <span class="dom">11</span>Monday of the 1st Week of the Time after Epiphany + <div class="meta">class-4 · white · Epistle Rom 12:1-5 · Gospel Luke 2:42-52</div> + <div class="meta">Commemoration hyginus-pope-and-martyr</div> </div> <div class="day white"> - <span class="dom">12</span>ef-time-after-epiphany-1-tuesday - <div class="meta">class-4 · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52</div> + <span class="dom">12</span>Tuesday of the 1st Week of the Time after Epiphany + <div class="meta">class-4 · white · Epistle Rom 12:1-5 · Gospel Luke 2:42-52</div> </div> <div class="day white"> - <span class="dom">13</span>commemoration-of-the-baptism-of-the-lord - <div class="meta">class-2 · white · Ep. Isa 60:1-6 · Ev. John 1:29-34</div> + <span class="dom">13</span>Commemoration of the Baptism of the Lord + <div class="meta">class-2 · white · Epistle Isa 60:1-6 · Gospel John 1:29-34</div> </div> <div class="day white"> - <span class="dom">14</span>hilary - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. felicis</div> + <span class="dom">14</span>St. Hilary + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration felicis</div> </div> <div class="day white"> - <span class="dom">15</span>paul-the-first-hermit - <div class="meta">class-3 · white · Ep. Phil 3:7-12 · Ev. Matt 11:25-30</div> - <div class="meta">Com. maur-abbot</div> + <span class="dom">15</span>St. Paul, the First Hermit + <div class="meta">class-3 · white · Epistle Phil 3:7-12 · Gospel Matt 11:25-30</div> + <div class="meta">Commemoration maur-abbot</div> </div> <div class="day red"> - <span class="dom">16</span>marcellus-i - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> + <span class="dom">16</span>St. Marcellus I + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> <div class="day green"> - <span class="dom">17</span>ef-time-after-epiphany-sunday-2 - <div class="meta">class-2 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11</div> + <span class="dom">17</span>2nd Sunday after Epiphany + <div class="meta">class-2 · green · Epistle Rom 12:6-16 · Gospel John 2:1-11</div> </div> <div class="day green"> - <span class="dom">18</span>ef-time-after-epiphany-2-monday - <div class="meta">class-4 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11</div> - <div class="meta">Com. prisca</div> + <span class="dom">18</span>Monday of the 2nd Week of the Time after Epiphany + <div class="meta">class-4 · green · Epistle Rom 12:6-16 · Gospel John 2:1-11</div> + <div class="meta">Commemoration prisca</div> </div> <div class="day green"> - <span class="dom">19</span>ef-time-after-epiphany-2-tuesday - <div class="meta">class-4 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11</div> - <div class="meta">Com. canute-martyr</div><div class="meta">Com. sts-marius-martha-audifax-abachum</div> + <span class="dom">19</span>Tuesday of the 2nd Week of the Time after Epiphany + <div class="meta">class-4 · green · Epistle Rom 12:6-16 · Gospel John 2:1-11</div> + <div class="meta">Commemoration canute-martyr</div><div class="meta">Commemoration sts-marius-martha-audifax-abachum</div> </div> <div class="day red"> - <span class="dom">20</span>sts-fabian-sebastian - <div class="meta">class-3 · red · Ep. Heb 11:33-39 · Ev. Luke 6:17-23</div> + <span class="dom">20</span>Sts. Fabian & Sebastian + <div class="meta">class-3 · red · Epistle Heb 11:33-39 · Gospel Luke 6:17-23</div> </div> <div class="day red"> - <span class="dom">21</span>agnes - <div class="meta">class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.</div> + <span class="dom">21</span>St. Agnes + <div class="meta">class-3 · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13.</div> </div> <div class="day red"> - <span class="dom">22</span>sts-vincent-anastasius - <div class="meta">class-3 · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19</div> + <span class="dom">22</span>Sts. Vincent & Anastasius + <div class="meta">class-3 · red · Epistle Wis 3:1-8 · Gospel Luke 21:9-19</div> </div> <div class="day white"> - <span class="dom">23</span>raymond-of-pe-afort - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> - <div class="meta">Com. emerentiana</div> + <span class="dom">23</span>St. Raymond of Peñafort + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> + <div class="meta">Commemoration emerentiana</div> </div> <div class="day violet"> - <span class="dom">24</span>ef-septuagesima-sunday-1 - <div class="meta">class-2 · violet · Ep. 1 Cor. 9:24-27; 10:1-5 · Ev. Matt 20:1-16</div> + <span class="dom">24</span>Septuagesima Sunday + <div class="meta">class-2 · violet · Epistle 1 Cor. 9:24-27; 10:1-5 · Gospel Matt 20:1-16</div> </div> <div class="day white"> - <span class="dom">25</span>conversion-of-st-paul - <div class="meta">class-3 · white · Ep. Acts 9:1-22 · Ev. Matt 19:27-29.</div> - <div class="meta">Com. peter</div> + <span class="dom">25</span>Conversion of St. Paul + <div class="meta">class-3 · white · Epistle Acts 9:1-22 · Gospel Matt 19:27-29.</div> + <div class="meta">Commemoration peter</div> </div> <div class="day red"> - <span class="dom">26</span>polycarp - <div class="meta">class-3 · red · Ep. 1 John 3:10-16 · Ev. Matt 10:26-32.</div> + <span class="dom">26</span>St. Polycarp + <div class="meta">class-3 · red · Epistle 1 John 3:10-16 · Gospel Matt 10:26-32.</div> </div> <div class="day white"> - <span class="dom">27</span>john-chrysostom - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">27</span>St. John Chrysostom + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">28</span>peter-nolasco - <div class="meta">class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34</div> - <div class="meta">Com. agnes-secundo</div> + <span class="dom">28</span>St. Peter Nolasco + <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34</div> + <div class="meta">Commemoration agnes-secundo</div> </div> <div class="day white"> - <span class="dom">29</span>francis-de-sales - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">29</span>St. Francis de Sales + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day red"> - <span class="dom">30</span>martina - <div class="meta">class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.</div> + <span class="dom">30</span>St. Martina + <div class="meta">class-3 · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13.</div> </div> <div class="day violet"> - <span class="dom">31</span>ef-septuagesima-sunday-2 - <div class="meta">class-2 · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15</div> + <span class="dom">31</span>Sexagesima Sunday + <div class="meta">class-2 · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15</div> </div> -<h2>Februarius</h2> +<h2>February</h2> <div class="day red"> - <span class="dom">1</span>ignatius-of-antioch - <div class="meta">class-3 · red · Ep. Rom 8:35-39 · Ev. John 12:24-26</div> + <span class="dom">1</span>St. Ignatius of Antioch + <div class="meta">class-3 · red · Epistle Rom 8:35-39 · Gospel John 12:24-26</div> </div> <div class="day white"> - <span class="dom">2</span>purification-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Mal 3:1-4 · Ev. Luke 2:22-32</div> + <span class="dom">2</span>Purification of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Mal 3:1-4 · Gospel Luke 2:22-32</div> </div> <div class="day violet"> - <span class="dom">3</span>ef-septuagesima-2-wednesday - <div class="meta">class-4 · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15</div> - <div class="meta">Com. blaise</div> + <span class="dom">3</span>Wednesday of the 2nd Week of Septuagesimatide + <div class="meta">class-4 · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15</div> + <div class="meta">Commemoration blaise</div> </div> <div class="day white"> - <span class="dom">4</span>andrew-corsini - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23</div> + <span class="dom">4</span>St. Andrew Corsini + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23</div> </div> <div class="day red"> - <span class="dom">5</span>agatha - <div class="meta">class-3 · red · Ep. 1 Cor. 1:26-31 · Ev. Matt 19:3-12.</div> + <span class="dom">5</span>St. Agatha + <div class="meta">class-3 · red · Epistle 1 Cor. 1:26-31 · Gospel Matt 19:3-12.</div> </div> <div class="day white"> - <span class="dom">6</span>titus - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 10:1-9</div> - <div class="meta">Com. dorothy</div> + <span class="dom">6</span>St. Titus + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Luke 10:1-9</div> + <div class="meta">Commemoration dorothy</div> </div> <div class="day violet"> - <span class="dom">7</span>ef-septuagesima-sunday-3 - <div class="meta">class-2 · violet · Ep. 1 Cor. 13:1-13 · Ev. Luke 18:31-43</div> + <span class="dom">7</span>Quinquagesima Sunday + <div class="meta">class-2 · violet · Epistle 1 Cor. 13:1-13 · Gospel Luke 18:31-43</div> </div> <div class="day white"> - <span class="dom">8</span>john-of-matha - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">8</span>St. John of Matha + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day white"> - <span class="dom">9</span>cyril-of-alexandria - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. appollonia</div> + <span class="dom">9</span>St. Cyril of Alexandria + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration appollonia</div> </div> <div class="day violet"> - <span class="dom">10</span>ef-ash-wednesday - <div class="meta">class-1 · violet · Ep. Joel 2:12-19 · Ev. Matt 6:16-21</div> + <span class="dom">10</span>Ash Wednesday + <div class="meta">class-1 · violet · Epistle Joel 2:12-19 · Gospel Matt 6:16-21</div> </div> <div class="day violet"> - <span class="dom">11</span>ef-lent-after-ashes-thursday - <div class="meta">class-3 · violet · Ep. Isa 38:1-6 · Ev. Matt 8:5-13</div> - <div class="meta">Com. our-lady-of-lourdes</div> + <span class="dom">11</span>Thursday after Ash Wednesday + <div class="meta">class-3 · violet · Epistle Isa 38:1-6 · Gospel Matt 8:5-13</div> + <div class="meta">Commemoration Our Lady of Lourdes</div> </div> <div class="day violet"> - <span class="dom">12</span>ef-lent-after-ashes-friday - <div class="meta">class-3 · violet · Ep. Isa 58:1-9 · Ev. Matt 5:43-48; 6:1-4</div> - <div class="meta">Com. seven-holy-servite-founders</div> + <span class="dom">12</span>Friday after Ash Wednesday + <div class="meta">class-3 · violet · Epistle Isa 58:1-9 · Gospel Matt 5:43-48; 6:1-4</div> + <div class="meta">Commemoration Seven Holy Servite Founders</div> </div> <div class="day violet"> - <span class="dom">13</span>ef-lent-after-ashes-saturday - <div class="meta">class-3 · violet · Ep. Isa 58:9-14 · Ev. Mark 6:47-56</div> + <span class="dom">13</span>Saturday after Ash Wednesday + <div class="meta">class-3 · violet · Epistle Isa 58:9-14 · Gospel Mark 6:47-56</div> </div> <div class="day violet"> - <span class="dom">14</span>ef-lent-sunday-1 - <div class="meta">class-1 · violet · Ep. 2 Cor. 6:1-10 · Ev. Matt 4:1-11</div> + <span class="dom">14</span>1st Sunday of Lent + <div class="meta">class-1 · violet · Epistle 2 Cor. 6:1-10 · Gospel Matt 4:1-11</div> </div> <div class="day violet"> - <span class="dom">15</span>ef-lent-1-monday - <div class="meta">class-3 · violet · Ep. Ezech 34:11-16 · Ev. Matt 25:31-46</div> - <div class="meta">Com. sts-faustinus-jovita</div> + <span class="dom">15</span>Monday of the 1st Week of Lent + <div class="meta">class-3 · violet · Epistle Ezech 34:11-16 · Gospel Matt 25:31-46</div> + <div class="meta">Commemoration sts-faustinus-jovita</div> </div> <div class="day violet"> - <span class="dom">16</span>ef-lent-1-tuesday - <div class="meta">class-3 · violet · Ep. Isa 55:6-11 · Ev. Matt 21:10-17</div> + <span class="dom">16</span>Tuesday of the 1st Week of Lent + <div class="meta">class-3 · violet · Epistle Isa 55:6-11 · Gospel Matt 21:10-17</div> </div> <div class="day violet"> - <span class="dom">17</span>ef-lent-ember-wed - <div class="meta">class-2 · violet · Ep. 3 Kgs. 19:3-8 · Ev. Matt 12:38-50</div> + <span class="dom">17</span>Lenten Ember Wednesday + <div class="meta">class-2 · violet · Epistle 3 Kgs. 19:3-8 · Gospel Matt 12:38-50</div> </div> <div class="day violet"> - <span class="dom">18</span>ef-lent-1-thursday - <div class="meta">class-3 · violet · Ep. Ezech 18:1-9 · Ev. Matt 15:21-28</div> - <div class="meta">Com. simeon</div> + <span class="dom">18</span>Thursday of the 1st Week of Lent + <div class="meta">class-3 · violet · Epistle Ezech 18:1-9 · Gospel Matt 15:21-28</div> + <div class="meta">Commemoration simeon</div> </div> <div class="day violet"> - <span class="dom">19</span>ef-lent-ember-fri - <div class="meta">class-2 · violet · Ep. Ezech 18:20-28 · Ev. John 5:1-15</div> + <span class="dom">19</span>Lenten Ember Friday + <div class="meta">class-2 · violet · Epistle Ezech 18:20-28 · Gospel John 5:1-15</div> </div> <div class="day violet"> - <span class="dom">20</span>ef-lent-ember-sat - <div class="meta">class-2 · violet · Ep. 1 Thess. 5:14-23 · Ev. Matt 17:1-9</div> + <span class="dom">20</span>Lenten Ember Saturday + <div class="meta">class-2 · violet · Epistle 1 Thess. 5:14-23 · Gospel Matt 17:1-9</div> </div> <div class="day violet"> - <span class="dom">21</span>ef-lent-sunday-2 - <div class="meta">class-1 · violet · Ep. 1 Thess. 4:1-7 · Ev. Matt 17:1-9</div> + <span class="dom">21</span>2nd Sunday of Lent + <div class="meta">class-1 · violet · Epistle 1 Thess. 4:1-7 · Gospel Matt 17:1-9</div> </div> <div class="day white"> - <span class="dom">22</span>chair-of-st-peter - <div class="meta">class-2 · white · Ep. 1 Pet 1:1-7 · Ev. Matt 16:13-19</div> - <div class="meta">Com. ef-lent-2-monday</div><div class="meta">Com. paul</div> + <span class="dom">22</span>Chair of St. Peter + <div class="meta">class-2 · white · Epistle 1 Pet 1:1-7 · Gospel Matt 16:13-19</div> + <div class="meta">Commemoration Monday of the 2nd Week of Lent</div><div class="meta">Commemoration paul</div> </div> <div class="day violet"> - <span class="dom">23</span>ef-lent-2-tuesday - <div class="meta">class-3 · violet · Ep. 3 Kings 17:8-16 · Ev. Matt 23:1-12</div> - <div class="meta">Com. peter-damien</div> + <span class="dom">23</span>Tuesday of the 2nd Week of Lent + <div class="meta">class-3 · violet · Epistle 3 Kings 17:8-16 · Gospel Matt 23:1-12</div> + <div class="meta">Commemoration St. Peter Damien</div> </div> <div class="day red"> - <span class="dom">24</span>matthias - <div class="meta">class-2 · red · Ep. Acts 1:15-26 · Ev. Matt 11:25-30</div> - <div class="meta">Com. ef-lent-2-wednesday</div> + <span class="dom">24</span>St. Matthias + <div class="meta">class-2 · red · Epistle Acts 1:15-26 · Gospel Matt 11:25-30</div> + <div class="meta">Commemoration Wednesday of the 2nd Week of Lent</div> </div> <div class="day violet"> - <span class="dom">25</span>ef-lent-2-thursday - <div class="meta">class-3 · violet · Ep. Jer 17:5-10 · Ev. Luke 16:19-31</div> + <span class="dom">25</span>Thursday of the 2nd Week of Lent + <div class="meta">class-3 · violet · Epistle Jer 17:5-10 · Gospel Luke 16:19-31</div> </div> <div class="day violet"> - <span class="dom">26</span>ef-lent-2-friday - <div class="meta">class-3 · violet · Ep. Gen 37:6-22 · Ev. Matt 21:33-46</div> + <span class="dom">26</span>Friday of the 2nd Week of Lent + <div class="meta">class-3 · violet · Epistle Gen 37:6-22 · Gospel Matt 21:33-46</div> </div> <div class="day violet"> - <span class="dom">27</span>ef-lent-2-saturday - <div class="meta">class-3 · violet · Ep. Gen 27:6-40 · Ev. Luke 15:11-32</div> - <div class="meta">Com. gabriel-of-our-lady-of-sorrows</div> + <span class="dom">27</span>Saturday of the 2nd Week of Lent + <div class="meta">class-3 · violet · Epistle Gen 27:6-40 · Gospel Luke 15:11-32</div> + <div class="meta">Commemoration St. Gabriel of Our Lady of Sorrows</div> </div> <div class="day violet"> - <span class="dom">28</span>ef-lent-sunday-3 - <div class="meta">class-1 · violet · Ep. Eph 5:1-9 · Ev. Luke 11:14-28</div> + <span class="dom">28</span>3rd Sunday of Lent + <div class="meta">class-1 · violet · Epistle Eph 5:1-9 · Gospel Luke 11:14-28</div> </div> -<h2>Martius</h2> +<h2>March</h2> <div class="day violet"> - <span class="dom">1</span>ef-lent-3-monday - <div class="meta">class-3 · violet · Ep. 4 Kings 5:1-15 · Ev. Luke 4:23-30</div> + <span class="dom">1</span>Monday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle 4 Kings 5:1-15 · Gospel Luke 4:23-30</div> </div> <div class="day violet"> - <span class="dom">2</span>ef-lent-3-tuesday - <div class="meta">class-3 · violet · Ep. 4 Kings 4:1-7 · Ev. Matt 18:15-22</div> + <span class="dom">2</span>Tuesday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle 4 Kings 4:1-7 · Gospel Matt 18:15-22</div> </div> <div class="day violet"> - <span class="dom">3</span>ef-lent-3-wednesday - <div class="meta">class-3 · violet · Ep. Ex 20:12-24 · Ev. Matt 15:1-20</div> + <span class="dom">3</span>Wednesday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle Ex 20:12-24 · Gospel Matt 15:1-20</div> </div> <div class="day violet"> - <span class="dom">4</span>ef-lent-3-thursday - <div class="meta">class-3 · violet · Ep. Jer 7:1-7 · Ev. Luke 4:38-44.</div> - <div class="meta">Com. casimir</div><div class="meta">Com. lucius</div> + <span class="dom">4</span>Thursday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle Jer 7:1-7 · Gospel Luke 4:38-44.</div> + <div class="meta">Commemoration St. Casimir</div><div class="meta">Commemoration lucius</div> </div> <div class="day violet"> - <span class="dom">5</span>ef-lent-3-friday - <div class="meta">class-3 · violet · Ep. Num 20:1, 3; 6-13. · Ev. John 4:5-42</div> + <span class="dom">5</span>Friday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle Num 20:1, 3; 6-13. · Gospel John 4:5-42</div> </div> <div class="day violet"> - <span class="dom">6</span>ef-lent-3-saturday - <div class="meta">class-3 · violet · Ep. Dan 13:1-9, 15-17, 19-30, 33-62. · Ev. John 8:1-11</div> - <div class="meta">Com. sts-felicitas-perpetua</div> + <span class="dom">6</span>Saturday of the 3rd Week of Lent + <div class="meta">class-3 · violet · Epistle Dan 13:1-9, 15-17, 19-30, 33-62. · Gospel John 8:1-11</div> + <div class="meta">Commemoration Sts. Felicitas & Perpetua</div> </div> <div class="day rose"> - <span class="dom">7</span>ef-lent-sunday-4 - <div class="meta">class-1 · rose · Ep. Gal 4:22-31 · Ev. John 6:1-15</div> + <span class="dom">7</span>4th Sunday of Lent + <div class="meta">class-1 · rose · Epistle Gal 4:22-31 · Gospel John 6:1-15</div> </div> <div class="day violet"> - <span class="dom">8</span>ef-lent-4-monday - <div class="meta">class-3 · violet · Ep. 3 Kings 3:16-28 · Ev. John 2:13-25</div> - <div class="meta">Com. john-of-god</div> + <span class="dom">8</span>Monday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle 3 Kings 3:16-28 · Gospel John 2:13-25</div> + <div class="meta">Commemoration St. John of God</div> </div> <div class="day violet"> - <span class="dom">9</span>ef-lent-4-tuesday - <div class="meta">class-3 · violet · Ep. Ex 32:7-14 · Ev. John 7:14-31</div> - <div class="meta">Com. frances-rome</div> + <span class="dom">9</span>Tuesday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle Ex 32:7-14 · Gospel John 7:14-31</div> + <div class="meta">Commemoration St. Frances Rome</div> </div> <div class="day violet"> - <span class="dom">10</span>ef-lent-4-wednesday - <div class="meta">class-3 · violet · Ep. Isa. 1:16-19 · Ev. John 9:1-38</div> - <div class="meta">Com. forty-holy-martyrs-of-sebaste</div> + <span class="dom">10</span>Wednesday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle Isa. 1:16-19 · Gospel John 9:1-38</div> + <div class="meta">Commemoration forty-holy-martyrs-of-sebaste</div> </div> <div class="day violet"> - <span class="dom">11</span>ef-lent-4-thursday - <div class="meta">class-3 · violet · Ep. 4 Kings 4:25-38 · Ev. Luke 7:11-16</div> + <span class="dom">11</span>Thursday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle 4 Kings 4:25-38 · Gospel Luke 7:11-16</div> </div> <div class="day violet"> - <span class="dom">12</span>ef-lent-4-friday - <div class="meta">class-3 · violet · Ep. 3 Kings 17:17-24 · Ev. John 11:1-45</div> - <div class="meta">Com. gregory-the-great</div> + <span class="dom">12</span>Friday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle 3 Kings 17:17-24 · Gospel John 11:1-45</div> + <div class="meta">Commemoration gregory-the-great</div> </div> <div class="day violet"> - <span class="dom">13</span>ef-lent-4-saturday - <div class="meta">class-3 · violet · Ep. Isa 49:8-15 · Ev. John 8:12-20</div> + <span class="dom">13</span>Saturday of the 4th Week of Lent + <div class="meta">class-3 · violet · Epistle Isa 49:8-15 · Gospel John 8:12-20</div> </div> <div class="day violet"> - <span class="dom">14</span>ef-passion-sunday - <div class="meta">class-1 · violet · Ep. Heb 9:11-15. · Ev. John 8:46-59.</div> + <span class="dom">14</span>Passion Sunday + <div class="meta">class-1 · violet · Epistle Heb 9:11-15. · Gospel John 8:46-59.</div> </div> <div class="day violet"> - <span class="dom">15</span>ef-passiontide-1-monday - <div class="meta">class-3 · violet · Ep. Jonas 3:1-10 · Ev. John 7:32-39</div> + <span class="dom">15</span>Monday of the 1st Week of Passion Week + <div class="meta">class-3 · violet · Epistle Jonas 3:1-10 · Gospel John 7:32-39</div> </div> <div class="day violet"> - <span class="dom">16</span>ef-passiontide-1-tuesday - <div class="meta">class-3 · violet · Ep. Dan 14:27, 28-42 · Ev. John 7:1-13</div> + <span class="dom">16</span>Tuesday of the 1st Week of Passion Week + <div class="meta">class-3 · violet · Epistle Dan 14:27, 28-42 · Gospel John 7:1-13</div> </div> <div class="day violet"> - <span class="dom">17</span>ef-passiontide-1-wednesday - <div class="meta">class-3 · violet · Ep. Lev 19:1-2, 11-19, 25 · Ev. John 10:22-38</div> - <div class="meta">Com. patrick</div> + <span class="dom">17</span>Wednesday of the 1st Week of Passion Week + <div class="meta">class-3 · violet · Epistle Lev 19:1-2, 11-19, 25 · Gospel John 10:22-38</div> + <div class="meta">Commemoration patrick</div> </div> <div class="day violet"> - <span class="dom">18</span>ef-passiontide-1-thursday - <div class="meta">class-3 · violet · Ep. Dan 3:25, 34-45. · Ev. Luke 7:36-50</div> - <div class="meta">Com. cyril-of-jerusalem</div> + <span class="dom">18</span>Thursday of the 1st Week of Passion Week + <div class="meta">class-3 · violet · Epistle Dan 3:25, 34-45. · Gospel Luke 7:36-50</div> + <div class="meta">Commemoration cyril-of-jerusalem</div> </div> <div class="day white"> - <span class="dom">19</span>joseph-spouse-of-the-bl-virgin-mary - <div class="meta">class-1 · white · Ep. Ecclus 45:1-6 · Ev. Matt 1:18-21</div> - <div class="meta">Com. ef-passiontide-1-friday</div> + <span class="dom">19</span>St. Joseph, Spouse of the Bl. Virgin Mary + <div class="meta">class-1 · white · Epistle Ecclus 45:1-6 · Gospel Matt 1:18-21</div> + <div class="meta">Commemoration Friday of the 1st Week of Passion Week</div> </div> <div class="day violet"> - <span class="dom">20</span>ef-passiontide-1-saturday - <div class="meta">class-3 · violet · Ep. Jer 18:18-23 · Ev. John 12:10-36</div> + <span class="dom">20</span>Saturday of the 1st Week of Passion Week + <div class="meta">class-3 · violet · Epistle Jer 18:18-23 · Gospel John 12:10-36</div> </div> <div class="day violet"> - <span class="dom">21</span>ef-palm-sunday - <div class="meta">class-1 · violet · Ep. Phil 2:5-11 · Ev. Matt. 26:36-75; 27:1-60.</div> + <span class="dom">21</span>Palm Sunday + <div class="meta">class-1 · violet · Epistle Phil 2:5-11 · Gospel Matt. 26:36-75; 27:1-60.</div> </div> <div class="day violet"> - <span class="dom">22</span>ef-passiontide-2-monday - <div class="meta">class-1 · violet · Ep. Isa 50:5-10 · Ev. John 12:1-9</div> + <span class="dom">22</span>Monday of Holy Week + <div class="meta">class-1 · violet · Epistle Isa 50:5-10 · Gospel John 12:1-9</div> </div> <div class="day violet"> - <span class="dom">23</span>ef-passiontide-2-tuesday - <div class="meta">class-1 · violet · Ep. Jer 11:18-20 · Ev. Mark 14:32-72; 15, 1-46</div> + <span class="dom">23</span>Tuesday of Holy Week + <div class="meta">class-1 · violet · Epistle Jer 11:18-20 · Gospel Mark 14:32-72; 15, 1-46</div> </div> <div class="day violet"> - <span class="dom">24</span>ef-passiontide-2-wednesday - <div class="meta">class-1 · violet · Ep. Isa 53:1-12 · Ev. Luke 22:39-71; 23:1-53</div> + <span class="dom">24</span>Wednesday of Holy Week (Spy Wednesday) + <div class="meta">class-1 · violet · Epistle Isa 53:1-12 · Gospel Luke 22:39-71; 23:1-53</div> </div> <div class="day white"> - <span class="dom">25</span>Feria V in Cena Domini - <div class="meta">class-1 · white · Ep. 1 Cor 11:20-32 · Ev. John 13:1-15</div> + <span class="dom">25</span>Holy Thursday (Maundy Thursday) + <div class="meta">class-1 · white · Epistle 1 Cor 11:20-32 · Gospel John 13:1-15</div> </div> <div class="day black"> - <span class="dom">26</span>Feria VI in Passione et Morte Domini - <div class="meta">class-1 · black · Ep. Ex 12:1-11 · Ev. John 18:1-40; 19:1-42</div> + <span class="dom">26</span>Good Friday + <div class="meta">class-1 · black · Epistle Ex 12:1-11 · Gospel John 18:1-40; 19:1-42</div> </div> <div class="day violet"> - <span class="dom">27</span>Sabbato sancto - <div class="meta">class-1 · violet · Ep. Col 3:1-4 · Ev. Matt 28:1-7</div> + <span class="dom">27</span>Holy Saturday + <div class="meta">class-1 · violet · Epistle Col 3:1-4 · Gospel Matt 28:1-7</div> </div> <div class="day white"> - <span class="dom">28</span>ef-easter-sunday - <div class="meta">class-1 · white · Ep. 1 Cor 5:7-8 · Ev. Mark 16:1-7</div> + <span class="dom">28</span>Easter Sunday + <div class="meta">class-1 · white · Epistle 1 Cor 5:7-8 · Gospel Mark 16:1-7</div> </div> <div class="day white"> - <span class="dom">29</span>ef-easter-1-monday - <div class="meta">class-1 · white · Ep. Acts 10:37-43. · Ev. Luke 24:13-35</div> + <span class="dom">29</span>Monday of Easter Week + <div class="meta">class-1 · white · Epistle Acts 10:37-43. · Gospel Luke 24:13-35</div> </div> <div class="day white"> - <span class="dom">30</span>ef-easter-1-tuesday - <div class="meta">class-1 · white · Ep. Acts 13:16; 13:26-33 · Ev. Luke 24:36-47</div> + <span class="dom">30</span>Tuesday of Easter Week + <div class="meta">class-1 · white · Epistle Acts 13:16; 13:26-33 · Gospel Luke 24:36-47</div> </div> <div class="day white"> - <span class="dom">31</span>ef-easter-1-wednesday - <div class="meta">class-1 · white · Ep. Acts 3:13-15; 3:17-19 · Ev. John 21:1-14</div> + <span class="dom">31</span>Wednesday of Easter Week + <div class="meta">class-1 · white · Epistle Acts 3:13-15; 3:17-19 · Gospel John 21:1-14</div> </div> -<h2>Aprilis</h2> +<h2>April</h2> <div class="day white"> - <span class="dom">1</span>ef-easter-1-thursday - <div class="meta">class-1 · white · Ep. Acts 8:26-40 · Ev. John 20:11-18</div> + <span class="dom">1</span>Thursday of Easter Week + <div class="meta">class-1 · white · Epistle Acts 8:26-40 · Gospel John 20:11-18</div> </div> <div class="day white"> - <span class="dom">2</span>ef-easter-1-friday - <div class="meta">class-1 · white · Ep. 1 Pet 3:18-22 · Ev. Matt 28:16-20</div> + <span class="dom">2</span>Friday of Easter Week + <div class="meta">class-1 · white · Epistle 1 Pet 3:18-22 · Gospel Matt 28:16-20</div> </div> <div class="day white"> - <span class="dom">3</span>ef-easter-1-saturday - <div class="meta">class-1 · white · Ep. 1 Pet 2:1-10 · Ev. John 20:1-9</div> + <span class="dom">3</span>Saturday of Easter Week + <div class="meta">class-1 · white · Epistle 1 Pet 2:1-10 · Gospel John 20:1-9</div> </div> <div class="day white"> - <span class="dom">4</span>ef-low-sunday - <div class="meta">class-1 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31</div> + <span class="dom">4</span>Low Sunday (Sunday in Easter Octave) + <div class="meta">class-1 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> </div> <div class="day white"> - <span class="dom">5</span>annunciation-of-the-blessed-virgin-mary - <div class="meta">class-1 · white · Ep. Isa 7:10-15 · Ev. Luke 1:26-38</div> + <span class="dom">5</span>Annunciation of the Blessed Virgin Mary + <div class="meta">class-1 · white · Epistle Isa 7:10-15 · Gospel Luke 1:26-38</div> </div> <div class="day white"> - <span class="dom">6</span>ef-easter-2-tuesday - <div class="meta">class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31</div> + <span class="dom">6</span>Tuesday of the 2nd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> </div> <div class="day white"> - <span class="dom">7</span>ef-easter-2-wednesday - <div class="meta">class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31</div> + <span class="dom">7</span>Wednesday of the 2nd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> </div> <div class="day white"> - <span class="dom">8</span>ef-easter-2-thursday - <div class="meta">class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31</div> + <span class="dom">8</span>Thursday of the 2nd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> </div> <div class="day white"> - <span class="dom">9</span>ef-easter-2-friday - <div class="meta">class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31</div> + <span class="dom">9</span>Friday of the 2nd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> </div> <div class="day white"> - <span class="dom">10</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27</div> + <span class="dom">10</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> </div> <div class="day white"> - <span class="dom">11</span>ef-easter-sunday-3 - <div class="meta">class-2 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16</div> + <span class="dom">11</span>2nd Sunday after Easter + <div class="meta">class-2 · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16</div> </div> <div class="day white"> - <span class="dom">12</span>ef-easter-3-monday - <div class="meta">class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16</div> + <span class="dom">12</span>Monday of the 3rd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16</div> </div> <div class="day red"> - <span class="dom">13</span>hermenegild - <div class="meta">class-3 · red · Ep. Wis 10:10-14 · Ev. Luke 14:26-33.</div> + <span class="dom">13</span>St. Hermenegild + <div class="meta">class-3 · red · Epistle Wis 10:10-14 · Gospel Luke 14:26-33.</div> </div> <div class="day red"> - <span class="dom">14</span>justin - <div class="meta">class-3 · red · Ep. 1 Cor 1:18-25; 1:30; · Ev. Luke 12:2-8</div> - <div class="meta">Com. sts-tiburtius-valerian-et-maximus-martyrs</div> + <span class="dom">14</span>St. Justin + <div class="meta">class-3 · red · Epistle 1 Cor 1:18-25; 1:30; · Gospel Luke 12:2-8</div> + <div class="meta">Commemoration sts-tiburtius-valerian-et-maximus-martyrs</div> </div> <div class="day white"> - <span class="dom">15</span>ef-easter-3-thursday - <div class="meta">class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16</div> + <span class="dom">15</span>Thursday of the 3rd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16</div> </div> <div class="day white"> - <span class="dom">16</span>ef-easter-3-friday - <div class="meta">class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16</div> + <span class="dom">16</span>Friday of the 3rd Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16</div> </div> <div class="day white"> - <span class="dom">17</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27</div> - <div class="meta">Com. anicetus</div> + <span class="dom">17</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> + <div class="meta">Commemoration anicetus</div> </div> <div class="day white"> - <span class="dom">18</span>ef-easter-sunday-4 - <div class="meta">class-2 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22</div> + <span class="dom">18</span>3rd Sunday after Easter + <div class="meta">class-2 · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22</div> </div> <div class="day white"> - <span class="dom">19</span>ef-easter-4-monday - <div class="meta">class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22</div> + <span class="dom">19</span>Monday of the 4th Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22</div> </div> <div class="day white"> - <span class="dom">20</span>ef-easter-4-tuesday - <div class="meta">class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22</div> + <span class="dom">20</span>Tuesday of the 4th Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22</div> </div> <div class="day white"> - <span class="dom">21</span>anselm - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">21</span>St. Anselm + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day red"> - <span class="dom">22</span>sts-soter-caius - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> + <span class="dom">22</span>Sts. Soter & Caius + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> <div class="day white"> - <span class="dom">23</span>ef-easter-4-friday - <div class="meta">class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22</div> - <div class="meta">Com. george</div> + <span class="dom">23</span>Friday of the 4th Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22</div> + <div class="meta">Commemoration george</div> </div> <div class="day red"> - <span class="dom">24</span>fidelis-of-sigmaringen - <div class="meta">class-3 · red · Ep. Wis 5:1-5 · Ev. John 15:1-7</div> + <span class="dom">24</span>St. Fidelis of Sigmaringen + <div class="meta">class-3 · red · Epistle Wis 5:1-5 · Gospel John 15:1-7</div> </div> <div class="day white"> - <span class="dom">25</span>ef-easter-sunday-5 - <div class="meta">class-2 · white · Ep. Jas 1:17-21 · Ev. John 16:5-14</div> - <div class="meta">Com. major-litanies</div> + <span class="dom">25</span>4th Sunday after Easter + <div class="meta">class-2 · white · Epistle Jas 1:17-21 · Gospel John 16:5-14</div> + <div class="meta">Commemoration major-litanies</div> </div> <div class="day red"> - <span class="dom">26</span>sts-cletus-marcellinus - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> + <span class="dom">26</span>Sts. Cletus & Marcellinus + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> <div class="day white"> - <span class="dom">27</span>peter-canisius - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">27</span>St. Peter Canisius + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">28</span>paul-of-the-cross - <div class="meta">class-3 · white · Ep. 1 Cor 1:17-25. · Ev. Luke 10:1-9</div> + <span class="dom">28</span>St. Paul of the Cross + <div class="meta">class-3 · white · Epistle 1 Cor 1:17-25. · Gospel Luke 10:1-9</div> </div> <div class="day red"> - <span class="dom">29</span>peter-of-verona - <div class="meta">class-3 · red · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Matt 10:34-42</div> + <span class="dom">29</span>St. Peter of Verona + <div class="meta">class-3 · red · Epistle 2 Tim. 2:8-10; 3:10-12. · Gospel Matt 10:34-42</div> </div> <div class="day white"> - <span class="dom">30</span>catherine-of-siena - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">30</span>St. Catherine of Siena + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> -<h2>Maius</h2> +<h2>May</h2> <div class="day white"> - <span class="dom">1</span>joseph-the-workman - <div class="meta">class-1 · white · Ep. Col. 3:14-15, 17, 23-24 · Ev. Matt 13:54-58</div> + <span class="dom">1</span>St. Joseph the Workman + <div class="meta">class-1 · white · Epistle Col. 3:14-15, 17, 23-24 · Gospel Matt 13:54-58</div> </div> <div class="day white"> - <span class="dom">2</span>ef-easter-sunday-6 - <div class="meta">class-2 · white · Ep. Jas 1:22-27 · Ev. John 16:23-30</div> + <span class="dom">2</span>5th Sunday after Easter + <div class="meta">class-2 · white · Epistle Jas 1:22-27 · Gospel John 16:23-30</div> </div> <div class="day violet"> - <span class="dom">3</span>ef-rogation-monday - <div class="meta">class-4 · violet · Ep. Jas 1:22-27 · Ev. John 16:23-30</div> - <div class="meta">Com. sts-alexander-companions</div> + <span class="dom">3</span>Rogation Monday + <div class="meta">class-4 · violet · Epistle Jas 1:22-27 · Gospel John 16:23-30</div> + <div class="meta">Commemoration sts-alexander-companions</div> </div> <div class="day white"> - <span class="dom">4</span>monica - <div class="meta">class-3 · white · Ep. 1 Tim. 5:3-10. · Ev. Luke 7:11-16</div> + <span class="dom">4</span>St. Monica + <div class="meta">class-3 · white · Epistle 1 Tim. 5:3-10. · Gospel Luke 7:11-16</div> </div> <div class="day white"> - <span class="dom">5</span>ef-ascension-vigil - <div class="meta">class-2 · white · Ep. Eph. 4:7-13. · Ev. John 17:1-11.</div> - <div class="meta">Com. pius-v</div> + <span class="dom">5</span>Vigil of the Ascension + <div class="meta">class-2 · white · Epistle Eph. 4:7-13. · Gospel John 17:1-11.</div> + <div class="meta">Commemoration St. Pius V</div> </div> <div class="day white"> - <span class="dom">6</span>ef-ascension - <div class="meta">class-1 · white · Ep. Acts 1:1-11 · Ev. Mark 16:14-20</div> + <span class="dom">6</span>The Ascension of Our Lord + <div class="meta">class-1 · white · Epistle Acts 1:1-11 · Gospel Mark 16:14-20</div> </div> <div class="day red"> - <span class="dom">7</span>stanislaus - <div class="meta">class-3 · red · Ep. Wis 5:1-5 · Ev. John 15:1-7</div> + <span class="dom">7</span>St. Stanislaus + <div class="meta">class-3 · red · Epistle Wis 5:1-5 · Gospel John 15:1-7</div> </div> <div class="day white"> - <span class="dom">8</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27</div> + <span class="dom">8</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> </div> <div class="day white"> - <span class="dom">9</span>ef-easter-sunday-7 - <div class="meta">class-2 · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4.</div> + <span class="dom">9</span>Sunday after the Ascension + <div class="meta">class-2 · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4.</div> </div> <div class="day white"> - <span class="dom">10</span>antoninus - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23</div> - <div class="meta">Com. gordiano-and-epimacho</div> + <span class="dom">10</span>St. Antoninus + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23</div> + <div class="meta">Commemoration gordiano-and-epimacho</div> </div> <div class="day red"> - <span class="dom">11</span>sts-philip-james - <div class="meta">class-2 · red · Ep. Wis. 5:1-5 · Ev. John 14:1-13</div> + <span class="dom">11</span>Sts. Philip & James + <div class="meta">class-2 · red · Epistle Wis. 5:1-5 · Gospel John 14:1-13</div> </div> <div class="day red"> - <span class="dom">12</span>sts-nereus-achilleus-domitilla-pancras - <div class="meta">class-3 · red · Ep. Wis. 5:1-5 · Ev. John 4:46-53</div> + <span class="dom">12</span>Sts. Nereus, Achilleus, Domitilla, & Pancras + <div class="meta">class-3 · red · Epistle Wis. 5:1-5 · Gospel John 4:46-53</div> </div> <div class="day white"> - <span class="dom">13</span>robert-bellarmine - <div class="meta">class-3 · white · Ep. Wis 7:7-14. · Ev. Matt 5:13-19</div> + <span class="dom">13</span>St. Robert Bellarmine + <div class="meta">class-3 · white · Epistle Wis 7:7-14. · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">14</span>ef-easter-7-friday - <div class="meta">class-4 · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4.</div> - <div class="meta">Com. boniface-martyr</div> + <span class="dom">14</span>Friday of the 7th Week of Eastertide + <div class="meta">class-4 · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4.</div> + <div class="meta">Commemoration boniface-martyr</div> </div> <div class="day red"> - <span class="dom">15</span>ef-pentecost-vigil - <div class="meta">class-1 · red · Ep. Acts 19:1-8. · Ev. John 14:15-21.</div> + <span class="dom">15</span>Vigil of Pentecost + <div class="meta">class-1 · red · Epistle Acts 19:1-8. · Gospel John 14:15-21.</div> </div> <div class="day red"> - <span class="dom">16</span>ef-pentecost - <div class="meta">class-1 · red · Ep. Acts 2:1-11. · Ev. John 14:23-31.</div> + <span class="dom">16</span>Pentecost Sunday (Whitsunday) + <div class="meta">class-1 · red · Epistle Acts 2:1-11. · Gospel John 14:23-31.</div> </div> <div class="day red"> - <span class="dom">17</span>ef-easter-8-monday - <div class="meta">class-1 · red · Ep. Acts 10:34, 42-48 · Ev. John 3:16-21</div> + <span class="dom">17</span>Monday of Pentecost Week + <div class="meta">class-1 · red · Epistle Acts 10:34, 42-48 · Gospel John 3:16-21</div> </div> <div class="day red"> - <span class="dom">18</span>ef-easter-8-tuesday - <div class="meta">class-1 · red · Ep. Acts 8:14-17. · Ev. John 10:1-10.</div> + <span class="dom">18</span>Tuesday of Pentecost Week + <div class="meta">class-1 · red · Epistle Acts 8:14-17. · Gospel John 10:1-10.</div> </div> <div class="day red"> - <span class="dom">19</span>ef-pentecost-ember-wed - <div class="meta">class-1 · red · Ep. Acts 5:12-16 · Ev. John 6:44-52.</div> + <span class="dom">19</span>Pentecost Ember Wednesday + <div class="meta">class-1 · red · Epistle Acts 5:12-16 · Gospel John 6:44-52.</div> </div> <div class="day red"> - <span class="dom">20</span>ef-easter-8-thursday - <div class="meta">class-1 · red · Ep. Acts 8:5-8 · Ev. Luke 9:1-6</div> + <span class="dom">20</span>Thursday of Pentecost Week + <div class="meta">class-1 · red · Epistle Acts 8:5-8 · Gospel Luke 9:1-6</div> </div> <div class="day red"> - <span class="dom">21</span>ef-pentecost-ember-fri - <div class="meta">class-1 · red · Ep. Joel 2:23-24; 26-27 · Ev. Luke 5:17-26</div> + <span class="dom">21</span>Pentecost Ember Friday + <div class="meta">class-1 · red · Epistle Joel 2:23-24; 26-27 · Gospel Luke 5:17-26</div> </div> <div class="day red"> - <span class="dom">22</span>ef-pentecost-ember-sat - <div class="meta">class-1 · red · Ep. Rom 5:1-5. · Ev. Luke 4:38-44.</div> + <span class="dom">22</span>Pentecost Ember Saturday + <div class="meta">class-1 · red · Epistle Rom 5:1-5. · Gospel Luke 4:38-44.</div> </div> <div class="day white"> - <span class="dom">23</span>ef-trinity - <div class="meta">class-1 · white · Ep. Rom 11:33-36. · Ev. Matt 28:18-20</div> + <span class="dom">23</span>Trinity Sunday + <div class="meta">class-1 · white · Epistle Rom 11:33-36. · Gospel Matt 28:18-20</div> </div> <div class="day green"> - <span class="dom">24</span>ef-time-after-pentecost-1-monday - <div class="meta">class-4 · green · Ep. 1 John 4:8-21 · Ev. Luke 6:36-42</div> + <span class="dom">24</span>Monday of the 1st Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 John 4:8-21 · Gospel Luke 6:36-42</div> </div> <div class="day white"> - <span class="dom">25</span>gregory-vii - <div class="meta">class-3 · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> - <div class="meta">Com. urban-pope-and-martyr</div> + <span class="dom">25</span>St. Gregory VII + <div class="meta">class-3 · white · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> + <div class="meta">Commemoration urban-pope-and-martyr</div> </div> <div class="day white"> - <span class="dom">26</span>philip-neri - <div class="meta">class-3 · white · Ep. Wis 7:7-14. · Ev. Luke 12:35-40</div> - <div class="meta">Com. eleutherius</div> + <span class="dom">26</span>St. Philip Neri + <div class="meta">class-3 · white · Epistle Wis 7:7-14. · Gospel Luke 12:35-40</div> + <div class="meta">Commemoration eleutherius</div> </div> <div class="day white"> - <span class="dom">27</span>ef-corpus-christi - <div class="meta">class-1 · white · Ep. 1 Cor 11:23-29 · Ev. John 6:56-59</div> + <span class="dom">27</span>Corpus Christi + <div class="meta">class-1 · white · Epistle 1 Cor 11:23-29 · Gospel John 6:56-59</div> </div> <div class="day white"> - <span class="dom">28</span>augustine-of-canterbury - <div class="meta">class-3 · white · Ep. 1 Thess 2:2-9 · Ev. Luke 10:1-9</div> + <span class="dom">28</span>St. Augustine of Canterbury + <div class="meta">class-3 · white · Epistle 1 Thess 2:2-9 · Gospel Luke 10:1-9</div> </div> <div class="day white"> - <span class="dom">29</span>mary-magdalene-de-pazzi - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">29</span>St. Mary Magdalene de Pazzi + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> <div class="day green"> - <span class="dom">30</span>ef-time-after-pentecost-sunday-2 - <div class="meta">class-2 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.</div> + <span class="dom">30</span>2nd Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24.</div> </div> <div class="day white"> - <span class="dom">31</span>queenship-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Ev. Luke 1:26-33</div> - <div class="meta">Com. petronilla</div> + <span class="dom">31</span>Queenship of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Gospel Luke 1:26-33</div> + <div class="meta">Commemoration petronilla</div> </div> -<h2>Iunius</h2> +<h2>June</h2> <div class="day white"> - <span class="dom">1</span>angela-merici - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">1</span>St. Angela Merici + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> <div class="day green"> - <span class="dom">2</span>ef-time-after-pentecost-2-wednesday - <div class="meta">class-4 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.</div> - <div class="meta">Com. sts-marcellinus-peter-erasmus</div> + <span class="dom">2</span>Wednesday of the 2nd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24.</div> + <div class="meta">Commemoration sts-marcellinus-peter-erasmus</div> </div> <div class="day green"> - <span class="dom">3</span>ef-time-after-pentecost-2-thursday - <div class="meta">class-4 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.</div> + <span class="dom">3</span>Thursday of the 2nd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24.</div> </div> <div class="day white"> - <span class="dom">4</span>ef-sacred-heart - <div class="meta">class-1 · white · Ep. Eph 3:8-12, 14-19 · Ev. John 19:31-37</div> + <span class="dom">4</span>The Sacred Heart of Jesus + <div class="meta">class-1 · white · Epistle Eph 3:8-12, 14-19 · Gospel John 19:31-37</div> </div> <div class="day red"> - <span class="dom">5</span>boniface - <div class="meta">class-3 · red · Ep. Ecclus 44:1-15 · Ev. Matt 5:1-12</div> + <span class="dom">5</span>St. Boniface + <div class="meta">class-3 · red · Epistle Ecclus 44:1-15 · Gospel Matt 5:1-12</div> </div> <div class="day green"> - <span class="dom">6</span>ef-time-after-pentecost-sunday-3 - <div class="meta">class-2 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10</div> + <span class="dom">6</span>3rd Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10</div> </div> <div class="day green"> - <span class="dom">7</span>ef-time-after-pentecost-3-monday - <div class="meta">class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10</div> + <span class="dom">7</span>Monday of the 3rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10</div> </div> <div class="day green"> - <span class="dom">8</span>ef-time-after-pentecost-3-tuesday - <div class="meta">class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10</div> + <span class="dom">8</span>Tuesday of the 3rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10</div> </div> <div class="day green"> - <span class="dom">9</span>ef-time-after-pentecost-3-wednesday - <div class="meta">class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10</div> - <div class="meta">Com. sts-primus-felicianus</div> + <span class="dom">9</span>Wednesday of the 3rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10</div> + <div class="meta">Commemoration sts-primus-felicianus</div> </div> <div class="day white"> - <span class="dom">10</span>margaret-of-scotland - <div class="meta">class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> + <span class="dom">10</span>St. Margaret of Scotland + <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> <div class="day red"> - <span class="dom">11</span>barnabas - <div class="meta">class-3 · red · Ep. Acts 11:21-26; 13:1-3 · Ev. Matt 10:16-22</div> + <span class="dom">11</span>St. Barnabas + <div class="meta">class-3 · red · Epistle Acts 11:21-26; 13:1-3 · Gospel Matt 10:16-22</div> </div> <div class="day white"> - <span class="dom">12</span>john-of-san-fecundo - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> - <div class="meta">Com. basilidus</div> + <span class="dom">12</span>St. John of San Fecundo + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> + <div class="meta">Commemoration basilidus</div> </div> <div class="day green"> - <span class="dom">13</span>ef-time-after-pentecost-sunday-4 - <div class="meta">class-2 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11</div> + <span class="dom">13</span>4th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11</div> </div> <div class="day white"> - <span class="dom">14</span>basil-the-great - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Luke 14:26-35</div> + <span class="dom">14</span>St. Basil the Great + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Luke 14:26-35</div> </div> <div class="day green"> - <span class="dom">15</span>ef-time-after-pentecost-4-tuesday - <div class="meta">class-4 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11</div> - <div class="meta">Com. vitus</div> + <span class="dom">15</span>Tuesday of the 4th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11</div> + <div class="meta">Commemoration vitus</div> </div> <div class="day green"> - <span class="dom">16</span>ef-time-after-pentecost-4-wednesday - <div class="meta">class-4 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11</div> + <span class="dom">16</span>Wednesday of the 4th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11</div> </div> <div class="day white"> - <span class="dom">17</span>gregory-barbarigo - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23</div> + <span class="dom">17</span>St. Gregory Barbarigo + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23</div> </div> <div class="day white"> - <span class="dom">18</span>ephrem-of-syria - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. marcus-and-marcellianus</div> + <span class="dom">18</span>St. Ephrem of Syria + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration marcus-and-marcellianus</div> </div> <div class="day white"> - <span class="dom">19</span>julia-of-falconieri - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> - <div class="meta">Com. sts-gervasius-and-protasius</div> + <span class="dom">19</span>St. Julia of Falconieri + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> + <div class="meta">Commemoration sts-gervasius-and-protasius</div> </div> <div class="day green"> - <span class="dom">20</span>ef-time-after-pentecost-sunday-5 - <div class="meta">class-2 · green · Ep. 1 Pet 3:8-15. · Ev. Matt 5:20-24.</div> + <span class="dom">20</span>5th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Pet 3:8-15. · Gospel Matt 5:20-24.</div> </div> <div class="day white"> - <span class="dom">21</span>aloysius-gongzaga - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Matt 22:29-40</div> + <span class="dom">21</span>St. Aloysius Gongzaga + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Matt 22:29-40</div> </div> <div class="day white"> - <span class="dom">22</span>paulinus-of-nola - <div class="meta">class-3 · white · Ep. 2 Cor. 8:9-15 · Ev. Luke 12:32-34</div> + <span class="dom">22</span>St. Paulinus of Nola + <div class="meta">class-3 · white · Epistle 2 Cor. 8:9-15 · Gospel Luke 12:32-34</div> </div> <div class="day violet"> - <span class="dom">23</span>vigil-of-the-nativity-of-st-john-the-baptist - <div class="meta">class-2 · violet · Ep. Jer 1:4-10 · Ev. Luke 1:5-17</div> + <span class="dom">23</span>Vigil of the Nativity of St. John the Baptist + <div class="meta">class-2 · violet · Epistle Jer 1:4-10 · Gospel Luke 1:5-17</div> </div> <div class="day white"> - <span class="dom">24</span>nativity-of-st-john-the-baptist - <div class="meta">class-1 · white · Ep. Isa 49:1-3, 5-7. · Ev. Luke 1:57-68</div> + <span class="dom">24</span>Nativity of St. John the Baptist + <div class="meta">class-1 · white · Epistle Isa 49:1-3, 5-7. · Gospel Luke 1:57-68</div> </div> <div class="day white"> - <span class="dom">25</span>william - <div class="meta">class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29.</div> + <span class="dom">25</span>St. William + <div class="meta">class-3 · white · Epistle Ecclus 45:1-6 · Gospel Matt 19:27-29.</div> </div> <div class="day red"> - <span class="dom">26</span>sts-john-paul - <div class="meta">class-3 · red · Ep. Eccli 44:10-15 · Ev. Luke 12:1-8</div> + <span class="dom">26</span>Sts. John & Paul + <div class="meta">class-3 · red · Epistle Eccli 44:10-15 · Gospel Luke 12:1-8</div> </div> <div class="day green"> - <span class="dom">27</span>ef-time-after-pentecost-sunday-6 - <div class="meta">class-2 · green · Ep. Rom 6:3-11. · Ev. Mark 8:1-9</div> + <span class="dom">27</span>6th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Rom 6:3-11. · Gospel Mark 8:1-9</div> </div> <div class="day violet"> - <span class="dom">28</span>vigil-of-sts-peter-paul - <div class="meta">class-2 · violet · Ep. Acts 3:1-10 · Ev. John 21:15-19</div> + <span class="dom">28</span>Vigil of Sts. Peter & Paul + <div class="meta">class-2 · violet · Epistle Acts 3:1-10 · Gospel John 21:15-19</div> </div> <div class="day red"> - <span class="dom">29</span>sts-peter-paul - <div class="meta">class-1 · red · Ep. Acts 12:1-11 · Ev. Matt 16:13-19</div> + <span class="dom">29</span>Sts. Peter & Paul + <div class="meta">class-1 · red · Epistle Acts 12:1-11 · Gospel Matt 16:13-19</div> </div> <div class="day red"> - <span class="dom">30</span>in-commemoratione-sancti-pauli-apostoli - <div class="meta">class-3 · red · Ep. Gal 1:11-20 · Ev. Matt 10:16-22</div> - <div class="meta">Com. commemoration-of-st-peter</div> + <span class="dom">30</span>In Commemoratione Sancti Pauli Apostoli + <div class="meta">class-3 · red · Epistle Gal 1:11-20 · Gospel Matt 10:16-22</div> + <div class="meta">Commemoration commemoration-of-st-peter</div> </div> -<h2>Iulius</h2> +<h2>July</h2> <div class="day red"> - <span class="dom">1</span>precious-blood-of-our-lord-jesus-christ - <div class="meta">class-1 · red · Ep. Heb 9:11-15. · Ev. John 19:30-35</div> + <span class="dom">1</span>The Precious Blood of Our Lord Jesus Christ + <div class="meta">class-1 · red · Epistle Heb 9:11-15. · Gospel John 19:30-35</div> </div> <div class="day white"> - <span class="dom">2</span>visitation-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Song 2:8-14 · Ev. Luke 1:39-47</div> - <div class="meta">Com. processus-and-martinian</div> + <span class="dom">2</span>Visitation of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Song 2:8-14 · Gospel Luke 1:39-47</div> + <div class="meta">Commemoration processus-and-martinian</div> </div> <div class="day red"> - <span class="dom">3</span>irenaeus - <div class="meta">class-3 · red · Ep. 2 Tim. 3:14-17; 4:1-5 · Ev. Matt 10:28-33</div> + <span class="dom">3</span>St. Irenaeus + <div class="meta">class-3 · red · Epistle 2 Tim. 3:14-17; 4:1-5 · Gospel Matt 10:28-33</div> </div> <div class="day green"> - <span class="dom">4</span>ef-time-after-pentecost-sunday-7 - <div class="meta">class-2 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21</div> + <span class="dom">4</span>7th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21</div> </div> <div class="day white"> - <span class="dom">5</span>anthony-mary-zaccariah - <div class="meta">class-3 · white · Ep. 1 Tim. 4:8-16 · Ev. Mark 10:15-21</div> + <span class="dom">5</span>St. Anthony Mary Zaccariah + <div class="meta">class-3 · white · Epistle 1 Tim. 4:8-16 · Gospel Mark 10:15-21</div> </div> <div class="day green"> - <span class="dom">6</span>ef-time-after-pentecost-7-tuesday - <div class="meta">class-4 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21</div> + <span class="dom">6</span>Tuesday of the 7th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21</div> </div> <div class="day white"> - <span class="dom">7</span>sts-cyril-methodius - <div class="meta">class-3 · white · Ep. Heb 7:23-27 · Ev. Luke 10:1-9</div> + <span class="dom">7</span>Sts. Cyril & Methodius + <div class="meta">class-3 · white · Epistle Heb 7:23-27 · Gospel Luke 10:1-9</div> </div> <div class="day white"> - <span class="dom">8</span>elizabeth-of-portugal - <div class="meta">class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> + <span class="dom">8</span>St. Elizabeth of Portugal + <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> <div class="day green"> - <span class="dom">9</span>ef-time-after-pentecost-7-friday - <div class="meta">class-4 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21</div> + <span class="dom">9</span>Friday of the 7th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21</div> </div> <div class="day red"> - <span class="dom">10</span>seven-holy-brothers-and-sts-rufina-secunda - <div class="meta">class-3 · red · Ep. Prov 31:10-31 · Ev. Matt 12:46-50</div> + <span class="dom">10</span>Seven Holy Brothers and Sts. Rufina & Secunda + <div class="meta">class-3 · red · Epistle Prov 31:10-31 · Gospel Matt 12:46-50</div> </div> <div class="day green"> - <span class="dom">11</span>ef-time-after-pentecost-sunday-8 - <div class="meta">class-2 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9</div> + <span class="dom">11</span>8th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9</div> </div> <div class="day white"> - <span class="dom">12</span>john-gualbert - <div class="meta">class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 5:43-48</div> - <div class="meta">Com. naboris-et-felicis</div> + <span class="dom">12</span>St. John Gualbert + <div class="meta">class-3 · white · Epistle Ecclus 45:1-6 · Gospel Matt 5:43-48</div> + <div class="meta">Commemoration naboris-et-felicis</div> </div> <div class="day green"> - <span class="dom">13</span>ef-time-after-pentecost-8-tuesday - <div class="meta">class-4 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9</div> + <span class="dom">13</span>Tuesday of the 8th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9</div> </div> <div class="day white"> - <span class="dom">14</span>bonaventure - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">14</span>St. Bonaventure + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">15</span>henry-the-emperor - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">15</span>St. Henry the Emperor + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day green"> - <span class="dom">16</span>ef-time-after-pentecost-8-friday - <div class="meta">class-4 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9</div> - <div class="meta">Com. our-lady-of-mt-carmel</div> + <span class="dom">16</span>Friday of the 8th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9</div> + <div class="meta">Commemoration our-lady-of-mt-carmel</div> </div> <div class="day white"> - <span class="dom">17</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> - <div class="meta">Com. alexis</div> + <span class="dom">17</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> + <div class="meta">Commemoration alexis</div> </div> <div class="day green"> - <span class="dom">18</span>ef-time-after-pentecost-sunday-9 - <div class="meta">class-2 · green · Ep. 1 Cor. 10:6-13 · Ev. Luke 19:41-47</div> + <span class="dom">18</span>9th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Cor. 10:6-13 · Gospel Luke 19:41-47</div> </div> <div class="day white"> - <span class="dom">19</span>vincent-de-paul - <div class="meta">class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 10:1-9</div> + <span class="dom">19</span>St. Vincent de Paul + <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 10:1-9</div> </div> <div class="day white"> - <span class="dom">20</span>jerome-emiliani - <div class="meta">class-3 · white · Ep. Isa 58:7-11 · Ev. Matt 19:13-21</div> - <div class="meta">Com. margaret</div> + <span class="dom">20</span>St. Jerome Emiliani + <div class="meta">class-3 · white · Epistle Isa 58:7-11 · Gospel Matt 19:13-21</div> + <div class="meta">Commemoration margaret</div> </div> <div class="day white"> - <span class="dom">21</span>laurence-of-brindisi - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. praxedis-virginis</div> + <span class="dom">21</span>St. Laurence of Brindisi + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration praxedis-virginis</div> </div> <div class="day white"> - <span class="dom">22</span>mary-magdalene - <div class="meta">class-3 · white · Ep. Song 3:2-5; 8:6-7 · Ev. Luke 7:36-50</div> + <span class="dom">22</span>St. Mary Magdalene + <div class="meta">class-3 · white · Epistle Song 3:2-5; 8:6-7 · Gospel Luke 7:36-50</div> </div> <div class="day red"> - <span class="dom">23</span>apollinaris - <div class="meta">class-3 · red · Ep. 1 Pet. 5:1-11 · Ev. Luke 22:24-30</div> - <div class="meta">Com. liborii</div> + <span class="dom">23</span>St. Apollinaris + <div class="meta">class-3 · red · Epistle 1 Pet. 5:1-11 · Gospel Luke 22:24-30</div> + <div class="meta">Commemoration liborii</div> </div> <div class="day white"> - <span class="dom">24</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> - <div class="meta">Com. christina</div> + <span class="dom">24</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> + <div class="meta">Commemoration christina</div> </div> <div class="day green"> - <span class="dom">25</span>ef-time-after-pentecost-sunday-10 - <div class="meta">class-2 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14</div> - <div class="meta">Com. james-the-greater</div> + <span class="dom">25</span>10th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14</div> + <div class="meta">Commemoration St. James the Greater</div> </div> <div class="day white"> - <span class="dom">26</span>anne-mother-of-the-blessed-virgin - <div class="meta">class-2 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> + <span class="dom">26</span>St. Anne, Mother of the Blessed Virgin + <div class="meta">class-2 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> <div class="day green"> - <span class="dom">27</span>ef-time-after-pentecost-10-tuesday - <div class="meta">class-4 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14</div> - <div class="meta">Com. pantaleon</div> + <span class="dom">27</span>Tuesday of the 10th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14</div> + <div class="meta">Commemoration pantaleon</div> </div> <div class="day red"> - <span class="dom">28</span>sts-nazarius-celsus-st-victor-i-st-innocent-i - <div class="meta">class-3 · red · Ep. Wis 10:17-20 · Ev. Luke 21:9-19</div> + <span class="dom">28</span>Sts. Nazarius & Celsus, St. Victor I & St. Innocent I + <div class="meta">class-3 · red · Epistle Wis 10:17-20 · Gospel Luke 21:9-19</div> </div> <div class="day white"> - <span class="dom">29</span>martha - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Luke 10:38-42</div> - <div class="meta">Com. felicis-simplicii-faustini-et-beatricis</div> + <span class="dom">29</span>St. Martha + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Luke 10:38-42</div> + <div class="meta">Commemoration felicis-simplicii-faustini-et-beatricis</div> </div> <div class="day green"> - <span class="dom">30</span>ef-time-after-pentecost-10-friday - <div class="meta">class-4 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14</div> - <div class="meta">Com. sts-abdon-sennen</div> + <span class="dom">30</span>Friday of the 10th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14</div> + <div class="meta">Commemoration sts-abdon-sennen</div> </div> <div class="day white"> - <span class="dom">31</span>ignatius-loyola - <div class="meta">class-3 · white · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Luke 10:1-9</div> + <span class="dom">31</span>St. Ignatius Loyola + <div class="meta">class-3 · white · Epistle 2 Tim. 2:8-10; 3:10-12. · Gospel Luke 10:1-9</div> </div> -<h2>Augustus</h2> +<h2>August</h2> <div class="day green"> - <span class="dom">1</span>ef-time-after-pentecost-sunday-11 - <div class="meta">class-2 · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37</div> + <span class="dom">1</span>11th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37</div> </div> <div class="day white"> - <span class="dom">2</span>alphonsus-liguori - <div class="meta">class-3 · white · Ep. 2 Tim. 2:1-7 · Ev. Luke 10:1-9</div> - <div class="meta">Com. stephen-i-pope-and-martyr</div> + <span class="dom">2</span>St. Alphonsus Liguori + <div class="meta">class-3 · white · Epistle 2 Tim. 2:1-7 · Gospel Luke 10:1-9</div> + <div class="meta">Commemoration stephen-i-pope-and-martyr</div> </div> <div class="day green"> - <span class="dom">3</span>ef-time-after-pentecost-11-tuesday - <div class="meta">class-4 · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37</div> + <span class="dom">3</span>Tuesday of the 11th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37</div> </div> <div class="day white"> - <span class="dom">4</span>dominic - <div class="meta">class-3 · white · Ep. 2 Tim. 4:1-8 · Ev. Luke 12:35-40</div> + <span class="dom">4</span>St. Dominic + <div class="meta">class-3 · white · Epistle 2 Tim. 4:1-8 · Gospel Luke 12:35-40</div> </div> <div class="day white"> - <span class="dom">5</span>dedication-of-the-basilica-of-st-mary-major - <div class="meta">class-3 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> + <span class="dom">5</span>Dedication of the Basilica of St. Mary Major + <div class="meta">class-3 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> <div class="day white"> - <span class="dom">6</span>transfiguration-of-our-lord - <div class="meta">class-2 · white · Ep. 2 Pet. 1:16-19 · Ev. Matt 17:1-9</div> - <div class="meta">Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs</div> + <span class="dom">6</span>Transfiguration of Our Lord + <div class="meta">class-2 · white · Epistle 2 Pet. 1:16-19 · Gospel Matt 17:1-9</div> + <div class="meta">Commemoration pope-sixtus-ii-felicissimus-and-agapitus-martyrs</div> </div> <div class="day white"> - <span class="dom">7</span>cajetan - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Matt 6:24-33</div> - <div class="meta">Com. donatus</div> + <span class="dom">7</span>St. Cajetan + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Matt 6:24-33</div> + <div class="meta">Commemoration donatus</div> </div> <div class="day green"> - <span class="dom">8</span>ef-time-after-pentecost-sunday-12 - <div class="meta">class-2 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37</div> + <span class="dom">8</span>12th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37</div> </div> <div class="day violet"> - <span class="dom">9</span>vigil-of-st-lawrence - <div class="meta">class-3 · violet · Ep. Ecclus 51:1-8, 12 · Ev. Matt 16:24-27</div> - <div class="meta">Com. romanus</div> + <span class="dom">9</span>Vigil of St. Lawrence + <div class="meta">class-3 · violet · Epistle Ecclus 51:1-8, 12 · Gospel Matt 16:24-27</div> + <div class="meta">Commemoration romanus</div> </div> <div class="day red"> - <span class="dom">10</span>lawrence - <div class="meta">class-2 · red · Ep. 2 Cor. 9:6-10 · Ev. John 12:24-26</div> + <span class="dom">10</span>St. Lawrence + <div class="meta">class-2 · red · Epistle 2 Cor. 9:6-10 · Gospel John 12:24-26</div> </div> <div class="day green"> - <span class="dom">11</span>ef-time-after-pentecost-12-wednesday - <div class="meta">class-4 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37</div> - <div class="meta">Com. sts-tiburtius-susanna</div> + <span class="dom">11</span>Wednesday of the 12th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37</div> + <div class="meta">Commemoration sts-tiburtius-susanna</div> </div> <div class="day white"> - <span class="dom">12</span>clare - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">12</span>St. Clare + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> <div class="day green"> - <span class="dom">13</span>ef-time-after-pentecost-12-friday - <div class="meta">class-4 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37</div> - <div class="meta">Com. sts-hippolytus-cassian</div> + <span class="dom">13</span>Friday of the 12th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37</div> + <div class="meta">Commemoration sts-hippolytus-cassian</div> </div> <div class="day violet"> - <span class="dom">14</span>vigil-of-the-assumption - <div class="meta">class-2 · violet · Ep. Sir 24:23-31 · Ev. Luke 11:27-28</div> - <div class="meta">Com. eusebius-confessor</div> + <span class="dom">14</span>Vigil of the Assumption + <div class="meta">class-2 · violet · Epistle Sir 24:23-31 · Gospel Luke 11:27-28</div> + <div class="meta">Commemoration eusebius-confessor</div> </div> <div class="day white"> - <span class="dom">15</span>assumption-of-the-blessed-virgin-mary - <div class="meta">class-1 · white · Ep. Judith 13:22-25; 15:10 · Ev. Luke 1:41-50</div> - <div class="meta">Com. ef-time-after-pentecost-sunday-13</div> + <span class="dom">15</span>Assumption of the Blessed Virgin Mary + <div class="meta">class-1 · white · Epistle Judith 13:22-25; 15:10 · Gospel Luke 1:41-50</div> + <div class="meta">Commemoration 13th Sunday after Pentecost</div> </div> <div class="day white"> - <span class="dom">16</span>joachim-father-of-the-blessed-virgin - <div class="meta">class-2 · white · Ep. Sir 31:8-11 · Ev. Matt 1:1-16</div> + <span class="dom">16</span>St. Joachim, Father of the Blessed Virgin + <div class="meta">class-2 · white · Epistle Sir 31:8-11 · Gospel Matt 1:1-16</div> </div> <div class="day white"> - <span class="dom">17</span>hyacinth - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">17</span>St. Hyacinth + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day green"> - <span class="dom">18</span>ef-time-after-pentecost-13-wednesday - <div class="meta">class-4 · green · Ep. Gal 3:16-22 · Ev. Luke 17:11-19</div> - <div class="meta">Com. agapitus</div> + <span class="dom">18</span>Wednesday of the 13th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Gal 3:16-22 · Gospel Luke 17:11-19</div> + <div class="meta">Commemoration agapitus</div> </div> <div class="day white"> - <span class="dom">19</span>john-eudes - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">19</span>St. John Eudes + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day white"> - <span class="dom">20</span>bernard-of-clairvaux - <div class="meta">class-3 · white · Ep. Ecclus 39:6-14 · Ev. Matt 5:13-19</div> + <span class="dom">20</span>St. Bernard of Clairvaux + <div class="meta">class-3 · white · Epistle Ecclus 39:6-14 · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">21</span>jane-frances-de-chantal - <div class="meta">class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> + <span class="dom">21</span>St. Jane Frances de Chantal + <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> <div class="day green"> - <span class="dom">22</span>ef-time-after-pentecost-sunday-14 - <div class="meta">class-2 · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33</div> - <div class="meta">Com. immaculate-heart-of-mary</div> + <span class="dom">22</span>14th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33</div> + <div class="meta">Commemoration Immaculate Heart of Mary</div> </div> <div class="day white"> - <span class="dom">23</span>philip-benizi - <div class="meta">class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34</div> + <span class="dom">23</span>St. Philip Benizi + <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34</div> </div> <div class="day red"> - <span class="dom">24</span>bartholomew - <div class="meta">class-2 · red · Ep. 1 Cor. 12:27-31 · Ev. Luke 6:12-19</div> + <span class="dom">24</span>St. Bartholomew + <div class="meta">class-2 · red · Epistle 1 Cor. 12:27-31 · Gospel Luke 6:12-19</div> </div> <div class="day white"> - <span class="dom">25</span>louis-ix - <div class="meta">class-3 · white · Ep. Wis 10:10-14 · Ev. Luke 19:12-26</div> + <span class="dom">25</span>St. Louis IX + <div class="meta">class-3 · white · Epistle Wis 10:10-14 · Gospel Luke 19:12-26</div> </div> <div class="day green"> - <span class="dom">26</span>ef-time-after-pentecost-14-thursday - <div class="meta">class-4 · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33</div> - <div class="meta">Com. zephyrinus</div> + <span class="dom">26</span>Thursday of the 14th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33</div> + <div class="meta">Commemoration zephyrinus</div> </div> <div class="day white"> - <span class="dom">27</span>joseph-calasance - <div class="meta">class-3 · white · Ep. Wis 10:10-14 · Ev. Matt 18:1-5</div> + <span class="dom">27</span>St. Joseph Calasance + <div class="meta">class-3 · white · Epistle Wis 10:10-14 · Gospel Matt 18:1-5</div> </div> <div class="day white"> - <span class="dom">28</span>augustine - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. hermes</div> + <span class="dom">28</span>St. Augustine + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration hermes</div> </div> <div class="day green"> - <span class="dom">29</span>ef-time-after-pentecost-sunday-15 - <div class="meta">class-2 · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16</div> + <span class="dom">29</span>15th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16</div> </div> <div class="day white"> - <span class="dom">30</span>rose-of-lima - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> - <div class="meta">Com. sts-felix-and-adauctus</div> + <span class="dom">30</span>St. Rose of Lima + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> + <div class="meta">Commemoration sts-felix-and-adauctus</div> </div> <div class="day white"> - <span class="dom">31</span>raymond-nonnatus - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">31</span>St. Raymond Nonnatus + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <h2>September</h2> <div class="day green"> - <span class="dom">1</span>ef-time-after-pentecost-15-wednesday - <div class="meta">class-4 · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16</div> - <div class="meta">Com. giles</div><div class="meta">Com. twelve-holy-brothers-martyrs</div> + <span class="dom">1</span>Wednesday of the 15th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16</div> + <div class="meta">Commemoration giles</div><div class="meta">Commemoration twelve-holy-brothers-martyrs</div> </div> <div class="day white"> - <span class="dom">2</span>stephen-of-hungary - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 19:12-26</div> + <span class="dom">2</span>St. Stephen of Hungary + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 19:12-26</div> </div> <div class="day white"> - <span class="dom">3</span>pius-x - <div class="meta">class-3 · white · Ep. 1 Thess. 2:2-8 · Ev. John 21:15-17</div> + <span class="dom">3</span>St. Pius X + <div class="meta">class-3 · white · Epistle 1 Thess. 2:2-8 · Gospel John 21:15-17</div> </div> <div class="day white"> - <span class="dom">4</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> + <span class="dom">4</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> <div class="day green"> - <span class="dom">5</span>ef-time-after-pentecost-sunday-16 - <div class="meta">class-2 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11</div> + <span class="dom">5</span>16th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11</div> </div> <div class="day green"> - <span class="dom">6</span>ef-time-after-pentecost-16-monday - <div class="meta">class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11</div> + <span class="dom">6</span>Monday of the 16th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11</div> </div> <div class="day green"> - <span class="dom">7</span>ef-time-after-pentecost-16-tuesday - <div class="meta">class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11</div> + <span class="dom">7</span>Tuesday of the 16th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11</div> </div> <div class="day white"> - <span class="dom">8</span>nativity-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Prov 8:22-35 · Ev. Matt 1:1-16</div> - <div class="meta">Com. hadriani</div> + <span class="dom">8</span>Nativity of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Prov 8:22-35 · Gospel Matt 1:1-16</div> + <div class="meta">Commemoration hadriani</div> </div> <div class="day green"> - <span class="dom">9</span>ef-time-after-pentecost-16-thursday - <div class="meta">class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11</div> - <div class="meta">Com. gorgonius</div> + <span class="dom">9</span>Thursday of the 16th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11</div> + <div class="meta">Commemoration gorgonius</div> </div> <div class="day white"> - <span class="dom">10</span>nicholas-of-tolentino - <div class="meta">class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34</div> + <span class="dom">10</span>St. Nicholas of Tolentino + <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34</div> </div> <div class="day white"> - <span class="dom">11</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> - <div class="meta">Com. sts-protus-hyacinth</div> + <span class="dom">11</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> + <div class="meta">Commemoration sts-protus-hyacinth</div> </div> <div class="day green"> - <span class="dom">12</span>ef-time-after-pentecost-sunday-17 - <div class="meta">class-2 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46</div> + <span class="dom">12</span>17th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46</div> </div> <div class="day green"> - <span class="dom">13</span>ef-time-after-pentecost-17-monday - <div class="meta">class-4 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46</div> + <span class="dom">13</span>Monday of the 17th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46</div> </div> <div class="day red"> - <span class="dom">14</span>exaltation-of-the-holy-cross - <div class="meta">class-2 · red · Ep. Phil 2:5-11 · Ev. John 12:31-36</div> + <span class="dom">14</span>Exaltation of the Holy Cross + <div class="meta">class-2 · red · Epistle Phil 2:5-11 · Gospel John 12:31-36</div> </div> <div class="day white"> - <span class="dom">15</span>seven-sorrows-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Judith 13:22; 13:23-25 · Ev. John 19:25-27</div> - <div class="meta">Com. nicomedes</div> + <span class="dom">15</span>Seven Sorrows of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Judith 13:22; 13:23-25 · Gospel John 19:25-27</div> + <div class="meta">Commemoration nicomedes</div> </div> <div class="day red"> - <span class="dom">16</span>sts-cornelius-cyprian - <div class="meta">class-3 · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19</div> - <div class="meta">Com. sts-euphemia-lucy-and-geminianus</div> + <span class="dom">16</span>Sts. Cornelius & Cyprian + <div class="meta">class-3 · red · Epistle Wis 3:1-8 · Gospel Luke 21:9-19</div> + <div class="meta">Commemoration sts-euphemia-lucy-and-geminianus</div> </div> <div class="day green"> - <span class="dom">17</span>ef-time-after-pentecost-17-friday - <div class="meta">class-4 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46</div> - <div class="meta">Com. stigmata-of-st-francis</div> + <span class="dom">17</span>Friday of the 17th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46</div> + <div class="meta">Commemoration stigmata-of-st-francis</div> </div> <div class="day white"> - <span class="dom">18</span>joseph-of-cupertino - <div class="meta">class-3 · white · Ep. 1 Cor 13:1-8 · Ev. Matt 22:1-14</div> + <span class="dom">18</span>St. Joseph of Cupertino + <div class="meta">class-3 · white · Epistle 1 Cor 13:1-8 · Gospel Matt 22:1-14</div> </div> <div class="day green"> - <span class="dom">19</span>ef-time-after-pentecost-sunday-18 - <div class="meta">class-2 · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8</div> + <span class="dom">19</span>18th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8</div> </div> <div class="day green"> - <span class="dom">20</span>ef-time-after-pentecost-18-monday - <div class="meta">class-4 · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8</div> - <div class="meta">Com. sts-eustace-companions</div> + <span class="dom">20</span>Monday of the 18th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8</div> + <div class="meta">Commemoration sts-eustace-companions</div> </div> <div class="day red"> - <span class="dom">21</span>matthew - <div class="meta">class-2 · red · Ep. Ezek 1:10-14 · Ev. Matt 9:9-13</div> + <span class="dom">21</span>St. Matthew + <div class="meta">class-2 · red · Epistle Ezek 1:10-14 · Gospel Matt 9:9-13</div> </div> <div class="day violet"> - <span class="dom">22</span>ef-september-ember-wed - <div class="meta">class-2 · violet · Ep. 2 Esd. 8:1-10 · Ev. Mark 9:16-28</div> - <div class="meta">Com. thomas-of-villanova</div> + <span class="dom">22</span>September Ember Wednesday + <div class="meta">class-2 · violet · Epistle 2 Esd. 8:1-10 · Gospel Mark 9:16-28</div> + <div class="meta">Commemoration St. Thomas of Villanova</div> </div> <div class="day red"> - <span class="dom">23</span>linus - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> - <div class="meta">Com. thecla</div> + <span class="dom">23</span>St. Linus + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> + <div class="meta">Commemoration thecla</div> </div> <div class="day violet"> - <span class="dom">24</span>ef-september-ember-fri - <div class="meta">class-2 · violet · Ep. Osee 14:2-10 · Ev. Luke 7:36-50</div> - <div class="meta">Com. our-lady-of-ransom</div> + <span class="dom">24</span>September Ember Friday + <div class="meta">class-2 · violet · Epistle Osee 14:2-10 · Gospel Luke 7:36-50</div> + <div class="meta">Commemoration our-lady-of-ransom</div> </div> <div class="day violet"> - <span class="dom">25</span>ef-september-ember-sat - <div class="meta">class-2 · violet · Ep. Heb 9:2-12 · Ev. Luke 13:6-17</div> + <span class="dom">25</span>September Ember Saturday + <div class="meta">class-2 · violet · Epistle Heb 9:2-12 · Gospel Luke 13:6-17</div> </div> <div class="day green"> - <span class="dom">26</span>ef-time-after-pentecost-sunday-19 - <div class="meta">class-2 · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14</div> + <span class="dom">26</span>19th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14</div> </div> <div class="day red"> - <span class="dom">27</span>sts-cosmas-damian - <div class="meta">class-3 · red · Ep. Wis 5:16-20 · Ev. Luke 6:17-23</div> + <span class="dom">27</span>Sts. Cosmas & Damian + <div class="meta">class-3 · red · Epistle Wis 5:16-20 · Gospel Luke 6:17-23</div> </div> <div class="day red"> - <span class="dom">28</span>wenceslaus - <div class="meta">class-3 · red · Ep. Wis 10:10-14 · Ev. Matt 10:34-42</div> + <span class="dom">28</span>St. Wenceslaus + <div class="meta">class-3 · red · Epistle Wis 10:10-14 · Gospel Matt 10:34-42</div> </div> <div class="day white"> - <span class="dom">29</span>dedication-of-st-michael-the-archangel - <div class="meta">class-1 · white · Ep. Rev 1:1-5 · Ev. Matt 18:1-10</div> + <span class="dom">29</span>Dedication of St. Michael the Archangel + <div class="meta">class-1 · white · Epistle Rev 1:1-5 · Gospel Matt 18:1-10</div> </div> <div class="day white"> - <span class="dom">30</span>jerome - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">30</span>St. Jerome + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <h2>October</h2> <div class="day green"> - <span class="dom">1</span>ef-time-after-pentecost-19-friday - <div class="meta">class-4 · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14</div> - <div class="meta">Com. remigius</div> + <span class="dom">1</span>Friday of the 19th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14</div> + <div class="meta">Commemoration remigius</div> </div> <div class="day white"> - <span class="dom">2</span>holy-guardian-angels - <div class="meta">class-3 · white · Ep. Exod 23:20-23 · Ev. Matt 18:1-10</div> + <span class="dom">2</span>Holy Guardian Angels + <div class="meta">class-3 · white · Epistle Exod 23:20-23 · Gospel Matt 18:1-10</div> </div> <div class="day green"> - <span class="dom">3</span>ef-time-after-pentecost-sunday-20 - <div class="meta">class-2 · green · Ep. Eph 5:15-21 · Ev. John 4:46-53</div> + <span class="dom">3</span>20th Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Eph 5:15-21 · Gospel John 4:46-53</div> </div> <div class="day white"> - <span class="dom">4</span>francis-of-assisi - <div class="meta">class-3 · white · Ep. Gal 6:14-18 · Ev. Matt 11:25-30</div> + <span class="dom">4</span>St. Francis of Assisi + <div class="meta">class-3 · white · Epistle Gal 6:14-18 · Gospel Matt 11:25-30</div> </div> <div class="day green"> - <span class="dom">5</span>ef-time-after-pentecost-20-tuesday - <div class="meta">class-4 · green · Ep. Eph 5:15-21 · Ev. John 4:46-53</div> - <div class="meta">Com. placid-companions</div> + <span class="dom">5</span>Tuesday of the 20th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 5:15-21 · Gospel John 4:46-53</div> + <div class="meta">Commemoration placid-companions</div> </div> <div class="day white"> - <span class="dom">6</span>bruno - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">6</span>St. Bruno + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day white"> - <span class="dom">7</span>our-lady-of-the-rosary - <div class="meta">class-2 · white · Ep. Prov 8:22-24, 32-35. · Ev. Luke 1:26-38</div> - <div class="meta">Com. mark-i</div> + <span class="dom">7</span>Our Lady of the Rosary + <div class="meta">class-2 · white · Epistle Prov 8:22-24, 32-35. · Gospel Luke 1:26-38</div> + <div class="meta">Commemoration mark-i</div> </div> <div class="day white"> - <span class="dom">8</span>bridget-of-sweden - <div class="meta">class-3 · white · Ep. 1 Tim. 5:3-10. · Ev. Matt 13:44-52.</div> - <div class="meta">Com. sergio-baccho-marcello-and-apulejo-martyrs</div> + <span class="dom">8</span>St. Bridget of Sweden + <div class="meta">class-3 · white · Epistle 1 Tim. 5:3-10. · Gospel Matt 13:44-52.</div> + <div class="meta">Commemoration sergio-baccho-marcello-and-apulejo-martyrs</div> </div> <div class="day white"> - <span class="dom">9</span>john-leonardi - <div class="meta">class-3 · white · Ep. 2 Cor 4:1-6; 4:15-18 · Ev. Luke 10:1-9</div> - <div class="meta">Com. dionysius-and-companions</div> + <span class="dom">9</span>St. John Leonardi + <div class="meta">class-3 · white · Epistle 2 Cor 4:1-6; 4:15-18 · Gospel Luke 10:1-9</div> + <div class="meta">Commemoration dionysius-and-companions</div> </div> <div class="day green"> - <span class="dom">10</span>ef-time-after-pentecost-sunday-21 - <div class="meta">class-2 · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35</div> + <span class="dom">10</span>21st Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35</div> </div> <div class="day white"> - <span class="dom">11</span>maternity-of-the-blessed-virgin-mary - <div class="meta">class-2 · white · Ep. Sir 24:23-31 · Ev. Luke 2:43-51</div> + <span class="dom">11</span>Maternity of the Blessed Virgin Mary + <div class="meta">class-2 · white · Epistle Sir 24:23-31 · Gospel Luke 2:43-51</div> </div> <div class="day green"> - <span class="dom">12</span>ef-time-after-pentecost-21-tuesday - <div class="meta">class-4 · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35</div> + <span class="dom">12</span>Tuesday of the 21st Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35</div> </div> <div class="day white"> - <span class="dom">13</span>edward - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> + <span class="dom">13</span>St. Edward + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> </div> <div class="day red"> - <span class="dom">14</span>callistus-i - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> + <span class="dom">14</span>St. Callistus I + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> <div class="day white"> - <span class="dom">15</span>teresa-of-avila - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">15</span>St. Teresa of Avila + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> <div class="day white"> - <span class="dom">16</span>hedwig - <div class="meta">class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> + <span class="dom">16</span>St. Hedwig + <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> <div class="day green"> - <span class="dom">17</span>ef-time-after-pentecost-sunday-22 - <div class="meta">class-2 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21</div> + <span class="dom">17</span>22nd Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21</div> </div> <div class="day red"> - <span class="dom">18</span>luke-the-evangelist - <div class="meta">class-2 · red · Ep. 2 Cor. 8:16-24 · Ev. Luke 10:1-9</div> + <span class="dom">18</span>St. Luke the Evangelist + <div class="meta">class-2 · red · Epistle 2 Cor. 8:16-24 · Gospel Luke 10:1-9</div> </div> <div class="day white"> - <span class="dom">19</span>peter-of-alcantara - <div class="meta">class-3 · white · Ep. Phil 3:7-12 · Ev. Luke 12:32-34</div> + <span class="dom">19</span>St. Peter of Alcantara + <div class="meta">class-3 · white · Epistle Phil 3:7-12 · Gospel Luke 12:32-34</div> </div> <div class="day white"> - <span class="dom">20</span>john-cantius - <div class="meta">class-3 · white · Ep. James 2:12-17 · Ev. Luke 12:35-40</div> + <span class="dom">20</span>St. John Cantius + <div class="meta">class-3 · white · Epistle James 2:12-17 · Gospel Luke 12:35-40</div> </div> <div class="day green"> - <span class="dom">21</span>ef-time-after-pentecost-22-thursday - <div class="meta">class-4 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21</div> - <div class="meta">Com. hilarion</div><div class="meta">Com. ursula-and-companions</div> + <span class="dom">21</span>Thursday of the 22nd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21</div> + <div class="meta">Commemoration hilarion</div><div class="meta">Commemoration ursula-and-companions</div> </div> <div class="day green"> - <span class="dom">22</span>ef-time-after-pentecost-22-friday - <div class="meta">class-4 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21</div> + <span class="dom">22</span>Friday of the 22nd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21</div> </div> <div class="day white"> - <span class="dom">23</span>anthony-mary-claret - <div class="meta">class-3 · white · Ep. Heb 7:23-27 · Ev. Matt 24:42-47</div> + <span class="dom">23</span>St. Anthony Mary Claret + <div class="meta">class-3 · white · Epistle Heb 7:23-27 · Gospel Matt 24:42-47</div> </div> <div class="day green"> - <span class="dom">24</span>ef-time-after-pentecost-sunday-23 - <div class="meta">class-2 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26</div> + <span class="dom">24</span>23rd Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> </div> <div class="day green"> - <span class="dom">25</span>ef-time-after-pentecost-23-monday - <div class="meta">class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26</div> - <div class="meta">Com. sts-chrysanthus-daria</div> + <span class="dom">25</span>Monday of the 23rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> + <div class="meta">Commemoration sts-chrysanthus-daria</div> </div> <div class="day green"> - <span class="dom">26</span>ef-time-after-pentecost-23-tuesday - <div class="meta">class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26</div> - <div class="meta">Com. evaristus</div> + <span class="dom">26</span>Tuesday of the 23rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> + <div class="meta">Commemoration evaristus</div> </div> <div class="day green"> - <span class="dom">27</span>ef-time-after-pentecost-23-wednesday - <div class="meta">class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26</div> + <span class="dom">27</span>Wednesday of the 23rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> </div> <div class="day red"> - <span class="dom">28</span>sts-simon-jude - <div class="meta">class-2 · red · Ep. Eph. 4:7-13. · Ev. John 15:17-25</div> + <span class="dom">28</span>Sts. Simon & Jude + <div class="meta">class-2 · red · Epistle Eph. 4:7-13. · Gospel John 15:17-25</div> </div> <div class="day green"> - <span class="dom">29</span>ef-time-after-pentecost-23-friday - <div class="meta">class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26</div> + <span class="dom">29</span>Friday of the 23rd Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> </div> <div class="day white"> - <span class="dom">30</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> + <span class="dom">30</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> <div class="day white"> - <span class="dom">31</span>ef-christ-the-king - <div class="meta">class-1 · white · Ep. Col 1:12-20. · Ev. John 18:33-37</div> + <span class="dom">31</span>Christ the King + <div class="meta">class-1 · white · Epistle Col 1:12-20. · Gospel John 18:33-37</div> </div> <h2>November</h2> <div class="day white"> - <span class="dom">1</span>all-saints - <div class="meta">class-1 · white · Ep. Apoc 7:2-12 · Ev. Matt 5:1-12</div> + <span class="dom">1</span>All Saints + <div class="meta">class-1 · white · Epistle Apoc 7:2-12 · Gospel Matt 5:1-12</div> </div> <div class="day black"> - <span class="dom">2</span>commemoration-of-all-souls - <div class="meta">class-1 · black · Ep. 1 Cor. 15:51-57 · Ev. John 5:25-29</div> + <span class="dom">2</span>Commemoration of All Souls + <div class="meta">class-1 · black · Epistle 1 Cor. 15:51-57 · Gospel John 5:25-29</div> </div> <div class="day green"> - <span class="dom">3</span>ef-time-after-pentecost-24-wednesday - <div class="meta">class-4 · green · Ep. Col 1:12-20. · Ev. John 18:33-37</div> + <span class="dom">3</span>Wednesday of the 24th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Col 1:12-20. · Gospel John 18:33-37</div> </div> <div class="day white"> - <span class="dom">4</span>charles-borromeo - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23</div> - <div class="meta">Com. sts-vitalis-and-agricola-martyrs</div> + <span class="dom">4</span>St. Charles Borromeo + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23</div> + <div class="meta">Commemoration sts-vitalis-and-agricola-martyrs</div> </div> <div class="day green"> - <span class="dom">5</span>ef-time-after-pentecost-24-friday - <div class="meta">class-4 · green · Ep. Col 1:12-20. · Ev. John 18:33-37</div> + <span class="dom">5</span>Friday of the 24th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Col 1:12-20. · Gospel John 18:33-37</div> </div> <div class="day white"> - <span class="dom">6</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> + <span class="dom">6</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> <div class="day green"> - <span class="dom">7</span>ef-time-after-epiphany-sunday-5 - <div class="meta">class-2 · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30</div> + <span class="dom">7</span>5th Sunday after Epiphany + <div class="meta">class-2 · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30</div> </div> <div class="day green"> - <span class="dom">8</span>ef-time-after-pentecost-25-monday - <div class="meta">class-4 · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30</div> - <div class="meta">Com. four-holy-crowned-martyrs</div> + <span class="dom">8</span>Monday of the 25th Week of the Time after Pentecost + <div class="meta">class-4 · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30</div> + <div class="meta">Commemoration four-holy-crowned-martyrs</div> </div> <div class="day white"> - <span class="dom">9</span>dedication-of-the-archbasilica-of-our-holy-savior - <div class="meta">class-2 · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10</div> - <div class="meta">Com. theodore</div> + <span class="dom">9</span>Dedication of the Archbasilica of Our Holy Savior + <div class="meta">class-2 · white · Epistle Rev 21:2-5 · Gospel Luke 19:1-10</div> + <div class="meta">Commemoration theodore</div> </div> <div class="day white"> - <span class="dom">10</span>andrew-avellino - <div class="meta">class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40</div> - <div class="meta">Com. sts-tryphonis-respicii-et-nymphae</div> + <span class="dom">10</span>St. Andrew Avellino + <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> + <div class="meta">Commemoration sts-tryphonis-respicii-et-nymphae</div> </div> <div class="day white"> - <span class="dom">11</span>martin-of-tours - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 11:33-36</div> - <div class="meta">Com. menna</div> + <span class="dom">11</span>St. Martin of Tours + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Luke 11:33-36</div> + <div class="meta">Commemoration menna</div> </div> <div class="day red"> - <span class="dom">12</span>martin-i - <div class="meta">class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> + <span class="dom">12</span>St. Martin I + <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> <div class="day white"> - <span class="dom">13</span>didacus - <div class="meta">class-3 · white · Ep. 1 Cor 4:9-14 · Ev. Luke 12:32-34</div> + <span class="dom">13</span>St. Didacus + <div class="meta">class-3 · white · Epistle 1 Cor 4:9-14 · Gospel Luke 12:32-34</div> </div> <div class="day green"> - <span class="dom">14</span>ef-time-after-epiphany-sunday-6 - <div class="meta">class-2 · green · Ep. 1 Thess 1:2-10 · Ev. Matt 13:31-35</div> + <span class="dom">14</span>6th Sunday after Epiphany + <div class="meta">class-2 · green · Epistle 1 Thess 1:2-10 · Gospel Matt 13:31-35</div> </div> <div class="day white"> - <span class="dom">15</span>albert-the-great - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> + <span class="dom">15</span>St. Albert the Great + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> </div> <div class="day white"> - <span class="dom">16</span>gertrude-the-great - <div class="meta">class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.</div> + <span class="dom">16</span>St. Gertrude the Great + <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> <div class="day white"> - <span class="dom">17</span>gregory-the-wonderworker - <div class="meta">class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Mark 11:22-24</div> + <span class="dom">17</span>St. Gregory the Wonderworker + <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Mark 11:22-24</div> </div> <div class="day white"> - <span class="dom">18</span>dedication-of-the-basilicas-of-sts-peter-paul - <div class="meta">class-3 · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10</div> + <span class="dom">18</span>Dedication of the Basilicas of Sts. Peter & Paul + <div class="meta">class-3 · white · Epistle Rev 21:2-5 · Gospel Luke 19:1-10</div> </div> <div class="day white"> - <span class="dom">19</span>elizabeth-of-hungary - <div class="meta">class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.</div> - <div class="meta">Com. pontian</div> + <span class="dom">19</span>St. Elizabeth of Hungary + <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> + <div class="meta">Commemoration pontian</div> </div> <div class="day white"> - <span class="dom">20</span>felix-of-valois - <div class="meta">class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34</div> + <span class="dom">20</span>St. Felix of Valois + <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34</div> </div> <div class="day green"> - <span class="dom">21</span>ef-time-after-pentecost-sunday-24 - <div class="meta">class-2 · green · Ep. Col 1:9-14 · Ev. Matt 24:15-35</div> + <span class="dom">21</span>24th and Last Sunday after Pentecost + <div class="meta">class-2 · green · Epistle Col 1:9-14 · Gospel Matt 24:15-35</div> </div> <div class="day red"> - <span class="dom">22</span>cecilia - <div class="meta">class-3 · red · Ep. Sir 51:13-17. · Ev. Matt 25:1-13.</div> + <span class="dom">22</span>St. Cecilia + <div class="meta">class-3 · red · Epistle Sir 51:13-17. · Gospel Matt 25:1-13.</div> </div> <div class="day red"> - <span class="dom">23</span>clement-i - <div class="meta">class-3 · red · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 16:13-19</div> - <div class="meta">Com. felicity</div> + <span class="dom">23</span>St. Clement I + <div class="meta">class-3 · red · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 16:13-19</div> + <div class="meta">Commemoration felicity</div> </div> <div class="day white"> - <span class="dom">24</span>john-of-the-cross - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. chrysogonus</div> + <span class="dom">24</span>St. John of the Cross + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration chrysogonus</div> </div> <div class="day red"> - <span class="dom">25</span>catherine-of-alexandria - <div class="meta">class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.</div> + <span class="dom">25</span>St. Catherine of Alexandria + <div class="meta">class-3 · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13.</div> </div> <div class="day white"> - <span class="dom">26</span>sylvester - <div class="meta">class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29.</div> - <div class="meta">Com. peter-of-alexandria</div> + <span class="dom">26</span>St. Sylvester + <div class="meta">class-3 · white · Epistle Ecclus 45:1-6 · Gospel Matt 19:27-29.</div> + <div class="meta">Commemoration peter-of-alexandria</div> </div> <div class="day white"> - <span class="dom">27</span>Officium sanctae Mariae in sabbato - <div class="meta">class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28</div> + <span class="dom">27</span>Our Lady's Saturday Office + <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> <div class="day violet"> - <span class="dom">28</span>ef-advent-sunday-1 - <div class="meta">class-1 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33</div> + <span class="dom">28</span>1st Sunday of Advent + <div class="meta">class-1 · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33</div> </div> <div class="day violet"> - <span class="dom">29</span>ef-advent-1-monday - <div class="meta">class-3 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33</div> - <div class="meta">Com. saturninus</div> + <span class="dom">29</span>Monday of the 1st Week of Advent + <div class="meta">class-3 · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33</div> + <div class="meta">Commemoration saturninus</div> </div> <div class="day red"> - <span class="dom">30</span>andrew - <div class="meta">class-2 · red · Ep. Rom 10:10-18 · Ev. Matt 4:18-22</div> - <div class="meta">Com. ef-advent-1-tuesday</div> + <span class="dom">30</span>St. Andrew + <div class="meta">class-2 · red · Epistle Rom 10:10-18 · Gospel Matt 4:18-22</div> + <div class="meta">Commemoration Tuesday of the 1st Week of Advent</div> </div> <h2>December</h2> <div class="day violet"> - <span class="dom">1</span>ef-advent-1-wednesday - <div class="meta">class-3 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33</div> + <span class="dom">1</span>Wednesday of the 1st Week of Advent + <div class="meta">class-3 · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33</div> </div> <div class="day red"> - <span class="dom">2</span>vivian - <div class="meta">class-3 · red · Ep. Sir 51:13-17. · Ev. Matt 13:44-52.</div> - <div class="meta">Com. ef-advent-1-thursday</div> + <span class="dom">2</span>St. Vivian + <div class="meta">class-3 · red · Epistle Sir 51:13-17. · Gospel Matt 13:44-52.</div> + <div class="meta">Commemoration Thursday of the 1st Week of Advent</div> </div> <div class="day white"> - <span class="dom">3</span>francis-xavier - <div class="meta">class-3 · white · Ep. Rom 10:10-18 · Ev. Mark 16:15-18</div> - <div class="meta">Com. ef-advent-1-friday</div> + <span class="dom">3</span>St. Francis Xavier + <div class="meta">class-3 · white · Epistle Rom 10:10-18 · Gospel Mark 16:15-18</div> + <div class="meta">Commemoration Friday of the 1st Week of Advent</div> </div> <div class="day white"> - <span class="dom">4</span>peter-chrysologus - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. ef-advent-1-saturday</div><div class="meta">Com. barbara</div> + <span class="dom">4</span>St. Peter Chrysologus + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration Saturday of the 1st Week of Advent</div><div class="meta">Commemoration barbara</div> </div> <div class="day violet"> - <span class="dom">5</span>ef-advent-sunday-2 - <div class="meta">class-1 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10</div> + <span class="dom">5</span>2nd Sunday of Advent + <div class="meta">class-1 · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10</div> </div> <div class="day white"> - <span class="dom">6</span>nicholas - <div class="meta">class-3 · white · Ep. Heb 13:7-17 · Ev. Matt 25:14-23</div> - <div class="meta">Com. ef-advent-2-monday</div> + <span class="dom">6</span>St. Nicholas + <div class="meta">class-3 · white · Epistle Heb 13:7-17 · Gospel Matt 25:14-23</div> + <div class="meta">Commemoration Monday of the 2nd Week of Advent</div> </div> <div class="day white"> - <span class="dom">7</span>ambrose - <div class="meta">class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19</div> - <div class="meta">Com. ef-advent-2-tuesday</div> + <span class="dom">7</span>St. Ambrose + <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> + <div class="meta">Commemoration Tuesday of the 2nd Week of Advent</div> </div> <div class="day white"> - <span class="dom">8</span>immaculate-conception-of-the-blessed-virgin-mary - <div class="meta">class-1 · white · Ep. Prov 8:22-35 · Ev. Luke 1:26-28</div> - <div class="meta">Com. ef-advent-2-wednesday</div> + <span class="dom">8</span>Immaculate Conception of the Blessed Virgin Mary + <div class="meta">class-1 · white · Epistle Prov 8:22-35 · Gospel Luke 1:26-28</div> + <div class="meta">Commemoration Wednesday of the 2nd Week of Advent</div> </div> <div class="day violet"> - <span class="dom">9</span>ef-advent-2-thursday - <div class="meta">class-3 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10</div> + <span class="dom">9</span>Thursday of the 2nd Week of Advent + <div class="meta">class-3 · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10</div> </div> <div class="day violet"> - <span class="dom">10</span>ef-advent-2-friday - <div class="meta">class-3 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10</div> - <div class="meta">Com. melchiades</div> + <span class="dom">10</span>Friday of the 2nd Week of Advent + <div class="meta">class-3 · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10</div> + <div class="meta">Commemoration melchiades</div> </div> <div class="day white"> - <span class="dom">11</span>damasus-i - <div class="meta">class-3 · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19</div> - <div class="meta">Com. ef-advent-2-saturday</div> + <span class="dom">11</span>St. Damasus I + <div class="meta">class-3 · white · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> + <div class="meta">Commemoration Saturday of the 2nd Week of Advent</div> </div> <div class="day rose"> - <span class="dom">12</span>ef-advent-sunday-3 - <div class="meta">class-1 · rose · Ep. Phil 4:4-7 · Ev. John 1:19-28</div> + <span class="dom">12</span>3rd Sunday of Advent + <div class="meta">class-1 · rose · Epistle Phil 4:4-7 · Gospel John 1:19-28</div> </div> <div class="day red"> - <span class="dom">13</span>lucy - <div class="meta">class-3 · red · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 13:44-52.</div> - <div class="meta">Com. ef-advent-3-monday</div> + <span class="dom">13</span>St. Lucy + <div class="meta">class-3 · red · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 13:44-52.</div> + <div class="meta">Commemoration Monday of the 3rd Week of Advent</div> </div> <div class="day violet"> - <span class="dom">14</span>ef-advent-3-tuesday - <div class="meta">class-3 · violet · Ep. Phil 4:4-7 · Ev. John 1:19-28</div> + <span class="dom">14</span>Tuesday of the 3rd Week of Advent + <div class="meta">class-3 · violet · Epistle Phil 4:4-7 · Gospel John 1:19-28</div> </div> <div class="day violet"> - <span class="dom">15</span>ef-advent-ember-wed - <div class="meta">class-2 · violet · Ep. Isa 7:10-15 · Ev. Luke 1:26-38</div> + <span class="dom">15</span>Advent Ember Wednesday + <div class="meta">class-2 · violet · Epistle Isa 7:10-15 · Gospel Luke 1:26-38</div> </div> <div class="day red"> - <span class="dom">16</span>eusebius - <div class="meta">class-3 · red · Ep. 2 Cor. 1:3-7 · Ev. Matt 16:24-27.</div> - <div class="meta">Com. ef-advent-3-thursday</div> + <span class="dom">16</span>St. Eusebius + <div class="meta">class-3 · red · Epistle 2 Cor. 1:3-7 · Gospel Matt 16:24-27.</div> + <div class="meta">Commemoration Thursday of the 3rd Week of Advent</div> </div> <div class="day violet"> - <span class="dom">17</span>ef-advent-ember-fri - <div class="meta">class-2 · violet · Ep. Isa 11:1-5 · Ev. Luke 1:39-47</div> + <span class="dom">17</span>Advent Ember Friday + <div class="meta">class-2 · violet · Epistle Isa 11:1-5 · Gospel Luke 1:39-47</div> </div> <div class="day violet"> - <span class="dom">18</span>ef-advent-ember-sat - <div class="meta">class-2 · violet · Ep. 2 Thess 2:1-8 · Ev. Luke 3:1-6</div> + <span class="dom">18</span>Advent Ember Saturday + <div class="meta">class-2 · violet · Epistle 2 Thess 2:1-8 · Gospel Luke 3:1-6</div> </div> <div class="day violet"> - <span class="dom">19</span>ef-advent-sunday-4 - <div class="meta">class-1 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6</div> + <span class="dom">19</span>4th Sunday of Advent + <div class="meta">class-1 · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6</div> </div> <div class="day violet"> - <span class="dom">20</span>ef-advent-4-monday - <div class="meta">class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6</div> + <span class="dom">20</span>Monday of the 4th Week of Advent + <div class="meta">class-2 · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6</div> </div> <div class="day red"> - <span class="dom">21</span>thomas - <div class="meta">class-2 · red · Ep. Eph 2:19-22 · Ev. John 20:24-29</div> - <div class="meta">Com. ef-advent-4-tuesday</div> + <span class="dom">21</span>St. Thomas + <div class="meta">class-2 · red · Epistle Eph 2:19-22 · Gospel John 20:24-29</div> + <div class="meta">Commemoration Tuesday of the 4th Week of Advent</div> </div> <div class="day violet"> - <span class="dom">22</span>ef-advent-4-wednesday - <div class="meta">class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6</div> + <span class="dom">22</span>Wednesday of the 4th Week of Advent + <div class="meta">class-2 · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6</div> </div> <div class="day violet"> - <span class="dom">23</span>ef-advent-4-thursday - <div class="meta">class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6</div> + <span class="dom">23</span>Thursday of the 4th Week of Advent + <div class="meta">class-2 · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6</div> </div> <div class="day violet"> - <span class="dom">24</span>ef-nativity-vigil - <div class="meta">class-1 · violet · Ep. Rom 1:1-6 · Ev. Matt 1:18-21</div> + <span class="dom">24</span>Vigil of the Nativity (Christmas Eve) + <div class="meta">class-1 · violet · Epistle Rom 1:1-6 · Gospel Matt 1:18-21</div> </div> <div class="day white"> - <span class="dom">25</span>ef-nativity - <div class="meta">class-1 · white · Ep. Heb 1:1-12 · Ev. John 1:1-14</div> + <span class="dom">25</span>The Nativity of Our Lord (Christmas) + <div class="meta">class-1 · white · Epistle Heb 1:1-12 · Gospel John 1:1-14</div> </div> <div class="day white"> - <span class="dom">26</span>ef-christmas-sunday-0 - <div class="meta">class-2 · white · Ep. Gal 4:1-7 · Ev. Luke 2:33-40</div> - <div class="meta">Com. stephen</div> + <span class="dom">26</span>Sunday within the Octave of the Nativity + <div class="meta">class-2 · white · Epistle Gal 4:1-7 · Gospel Luke 2:33-40</div> + <div class="meta">Commemoration St. Stephen</div> </div> <div class="day white"> - <span class="dom">27</span>john-the-evangelist - <div class="meta">class-2 · white · Ep. Ecclus 15:1-6 · Ev. John 21:19-24</div> - <div class="meta">Com. ef-nativity-octave-day-3</div> + <span class="dom">27</span>St. John the Evangelist + <div class="meta">class-2 · white · Epistle Ecclus 15:1-6 · Gospel John 21:19-24</div> + <div class="meta">Commemoration ef-nativity-octave-day-3</div> </div> <div class="day red"> - <span class="dom">28</span>holy-innocents - <div class="meta">class-2 · red · Ep. Apoc 14:1-5 · Ev. Matt 2:13-18</div> - <div class="meta">Com. ef-nativity-octave-day-4</div> + <span class="dom">28</span>Holy Innocents + <div class="meta">class-2 · red · Epistle Apoc 14:1-5 · Gospel Matt 2:13-18</div> + <div class="meta">Commemoration ef-nativity-octave-day-4</div> </div> <div class="day white"> - <span class="dom">29</span>ef-nativity-octave-day-5 - <div class="meta">class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20</div> - <div class="meta">Com. thomas-becket</div> + <span class="dom">29</span>5th Day within the Octave of the Nativity + <div class="meta">class-2 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> + <div class="meta">Commemoration thomas-becket</div> </div> <div class="day white"> - <span class="dom">30</span>ef-nativity-octave-day-6 - <div class="meta">class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20</div> + <span class="dom">30</span>6th Day within the Octave of the Nativity + <div class="meta">class-2 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> </div> <div class="day white"> - <span class="dom">31</span>ef-nativity-octave-day-7 - <div class="meta">class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20</div> - <div class="meta">Com. silvester</div> + <span class="dom">31</span>7th Day within the Octave of the Nativity + <div class="meta">class-2 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> + <div class="meta">Commemoration silvester</div> </div> </body></html> diff --git a/test/golden/ordo-2027.md b/test/golden/ordo-2027.md index 4980cb6..3228085 100644 --- a/test/golden/ordo-2027.md +++ b/test/golden/ordo-2027.md @@ -3,2120 +3,2123 @@ so this template's flavour deliberately does NOT escape interpolated values. A feast name containing `*` or `_` will render as emphasis. That is a documented limitation, not a bug to fix. --> -<!-- Day label falls back to the slug when the day carries no Latin name - (most temporal days, and most sanctoral entries, which are Latin-less - in the shipped data) -- see ordo.tex's own comment for why the fallback - is written as a name-section wrapping a plain var and its inverse, - rather than a single dotted lookup and its inverse. --> +<!-- The observed day's own display name is a PLAIN resolved string + (View.of_days, Task 5), not a lang-keyed object -- there is no + dotted-la-with-slug-fallback idiom to write here any more; a + commemoration entry carries its own resolved display name too, so a + commemoration line no longer prints the bare slug. Every fixed label + (Ordo, Epistle, Gospel, Commemoration) comes from the view's term + vocabulary rather than being written into this file, so a translated + booklet needs no template edit. --> # Ordo 2027 · ef -## Ianuarius +## January -**1** ef-circumcision -`class-1` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 +**1** The Octave Day of the Nativity +`class-1` · white · Epistle Titus 2:11-15 · Gospel Luke 2:21 -**2** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 +**2** Our Lady's Saturday Office +`class-4` · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20 -**3** Sanctissimi Nominis Iesu -`class-2` · white · Ep. Acts 4:8-12 · Ev. Luke 2:21 +**3** The Holy Name of Jesus +`class-2` · white · Epistle Acts 4:8-12 · Gospel Luke 2:21 -**4** ef-christmas-1-monday -`class-4` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 +**4** Monday before Epiphany +`class-4` · white · Epistle Titus 2:11-15 · Gospel Luke 2:21 -**5** ef-christmas-1-tuesday -`class-4` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 +**5** Tuesday before Epiphany +`class-4` · white · Epistle Titus 2:11-15 · Gospel Luke 2:21 -- Com. telesphorus-pope-and-martyr +- Commemoration telesphorus-pope-and-martyr -**6** ef-epiphany -`class-1` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 +**6** The Epiphany of Our Lord +`class-1` · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12 -**7** ef-christmas-2-thursday -`class-4` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 +**7** Thursday after Epiphany +`class-4` · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12 -**8** ef-christmas-2-friday -`class-4` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 +**8** Friday after Epiphany +`class-4` · white · Epistle Isa 60:1-6 · Gospel Matt 2:1-12 -**9** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 +**9** Our Lady's Saturday Office +`class-4` · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20 -**10** Sanctae Familiae Iesu, Mariae, Ioseph -`class-2` · white · Ep. Col 3:12-17 · Ev. Luke 2:42-52 +**10** The Holy Family +`class-2` · white · Epistle Col 3:12-17 · Gospel Luke 2:42-52 -**11** ef-time-after-epiphany-1-monday -`class-4` · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52 +**11** Monday of the 1st Week of the Time after Epiphany +`class-4` · white · Epistle Rom 12:1-5 · Gospel Luke 2:42-52 -- Com. hyginus-pope-and-martyr +- Commemoration hyginus-pope-and-martyr -**12** ef-time-after-epiphany-1-tuesday -`class-4` · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52 +**12** Tuesday of the 1st Week of the Time after Epiphany +`class-4` · white · Epistle Rom 12:1-5 · Gospel Luke 2:42-52 -**13** commemoration-of-the-baptism-of-the-lord -`class-2` · white · Ep. Isa 60:1-6 · Ev. John 1:29-34 +**13** Commemoration of the Baptism of the Lord +`class-2` · white · Epistle Isa 60:1-6 · Gospel John 1:29-34 -**14** hilary -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**14** St. Hilary +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. felicis +- Commemoration felicis -**15** paul-the-first-hermit -`class-3` · white · Ep. Phil 3:7-12 · Ev. Matt 11:25-30 +**15** St. Paul, the First Hermit +`class-3` · white · Epistle Phil 3:7-12 · Gospel Matt 11:25-30 -- Com. maur-abbot +- Commemoration maur-abbot -**16** marcellus-i -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**16** St. Marcellus I +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -**17** ef-time-after-epiphany-sunday-2 -`class-2` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 +**17** 2nd Sunday after Epiphany +`class-2` · green · Epistle Rom 12:6-16 · Gospel John 2:1-11 -**18** ef-time-after-epiphany-2-monday -`class-4` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 +**18** Monday of the 2nd Week of the Time after Epiphany +`class-4` · green · Epistle Rom 12:6-16 · Gospel John 2:1-11 -- Com. prisca +- Commemoration prisca -**19** ef-time-after-epiphany-2-tuesday -`class-4` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 +**19** Tuesday of the 2nd Week of the Time after Epiphany +`class-4` · green · Epistle Rom 12:6-16 · Gospel John 2:1-11 -- Com. canute-martyr +- Commemoration canute-martyr -- Com. sts-marius-martha-audifax-abachum +- Commemoration sts-marius-martha-audifax-abachum -**20** sts-fabian-sebastian -`class-3` · red · Ep. Heb 11:33-39 · Ev. Luke 6:17-23 +**20** Sts. Fabian & Sebastian +`class-3` · red · Epistle Heb 11:33-39 · Gospel Luke 6:17-23 -**21** agnes -`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. +**21** St. Agnes +`class-3` · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13. -**22** sts-vincent-anastasius -`class-3` · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19 +**22** Sts. Vincent & Anastasius +`class-3` · red · Epistle Wis 3:1-8 · Gospel Luke 21:9-19 -**23** raymond-of-pe-afort -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**23** St. Raymond of Peñafort +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -- Com. emerentiana +- Commemoration emerentiana -**24** ef-septuagesima-sunday-1 -`class-2` · violet · Ep. 1 Cor. 9:24-27; 10:1-5 · Ev. Matt 20:1-16 +**24** Septuagesima Sunday +`class-2` · violet · Epistle 1 Cor. 9:24-27; 10:1-5 · Gospel Matt 20:1-16 -**25** conversion-of-st-paul -`class-3` · white · Ep. Acts 9:1-22 · Ev. Matt 19:27-29. +**25** Conversion of St. Paul +`class-3` · white · Epistle Acts 9:1-22 · Gospel Matt 19:27-29. -- Com. peter +- Commemoration peter -**26** polycarp -`class-3` · red · Ep. 1 John 3:10-16 · Ev. Matt 10:26-32. +**26** St. Polycarp +`class-3` · red · Epistle 1 John 3:10-16 · Gospel Matt 10:26-32. -**27** john-chrysostom -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**27** St. John Chrysostom +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**28** peter-nolasco -`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 +**28** St. Peter Nolasco +`class-3` · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34 -- Com. agnes-secundo +- Commemoration agnes-secundo -**29** francis-de-sales -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**29** St. Francis de Sales +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**30** martina -`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. +**30** St. Martina +`class-3` · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13. -**31** ef-septuagesima-sunday-2 -`class-2` · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15 +**31** Sexagesima Sunday +`class-2` · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15 -## Februarius +## February -**1** ignatius-of-antioch -`class-3` · red · Ep. Rom 8:35-39 · Ev. John 12:24-26 +**1** St. Ignatius of Antioch +`class-3` · red · Epistle Rom 8:35-39 · Gospel John 12:24-26 -**2** purification-of-the-blessed-virgin-mary -`class-2` · white · Ep. Mal 3:1-4 · Ev. Luke 2:22-32 +**2** Purification of the Blessed Virgin Mary +`class-2` · white · Epistle Mal 3:1-4 · Gospel Luke 2:22-32 -**3** ef-septuagesima-2-wednesday -`class-4` · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15 +**3** Wednesday of the 2nd Week of Septuagesimatide +`class-4` · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15 -- Com. blaise +- Commemoration blaise -**4** andrew-corsini -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 +**4** St. Andrew Corsini +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23 -**5** agatha -`class-3` · red · Ep. 1 Cor. 1:26-31 · Ev. Matt 19:3-12. +**5** St. Agatha +`class-3` · red · Epistle 1 Cor. 1:26-31 · Gospel Matt 19:3-12. -**6** titus -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 10:1-9 +**6** St. Titus +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Luke 10:1-9 -- Com. dorothy +- Commemoration dorothy -**7** ef-septuagesima-sunday-3 -`class-2` · violet · Ep. 1 Cor. 13:1-13 · Ev. Luke 18:31-43 +**7** Quinquagesima Sunday +`class-2` · violet · Epistle 1 Cor. 13:1-13 · Gospel Luke 18:31-43 -**8** john-of-matha -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**8** St. John of Matha +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**9** cyril-of-alexandria -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**9** St. Cyril of Alexandria +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. appollonia +- Commemoration appollonia -**10** ef-ash-wednesday -`class-1` · violet · Ep. Joel 2:12-19 · Ev. Matt 6:16-21 +**10** Ash Wednesday +`class-1` · violet · Epistle Joel 2:12-19 · Gospel Matt 6:16-21 -**11** ef-lent-after-ashes-thursday -`class-3` · violet · Ep. Isa 38:1-6 · Ev. Matt 8:5-13 +**11** Thursday after Ash Wednesday +`class-3` · violet · Epistle Isa 38:1-6 · Gospel Matt 8:5-13 -- Com. our-lady-of-lourdes +- Commemoration Our Lady of Lourdes -**12** ef-lent-after-ashes-friday -`class-3` · violet · Ep. Isa 58:1-9 · Ev. Matt 5:43-48; 6:1-4 +**12** Friday after Ash Wednesday +`class-3` · violet · Epistle Isa 58:1-9 · Gospel Matt 5:43-48; 6:1-4 -- Com. seven-holy-servite-founders +- Commemoration Seven Holy Servite Founders -**13** ef-lent-after-ashes-saturday -`class-3` · violet · Ep. Isa 58:9-14 · Ev. Mark 6:47-56 +**13** Saturday after Ash Wednesday +`class-3` · violet · Epistle Isa 58:9-14 · Gospel Mark 6:47-56 -**14** ef-lent-sunday-1 -`class-1` · violet · Ep. 2 Cor. 6:1-10 · Ev. Matt 4:1-11 +**14** 1st Sunday of Lent +`class-1` · violet · Epistle 2 Cor. 6:1-10 · Gospel Matt 4:1-11 -**15** ef-lent-1-monday -`class-3` · violet · Ep. Ezech 34:11-16 · Ev. Matt 25:31-46 +**15** Monday of the 1st Week of Lent +`class-3` · violet · Epistle Ezech 34:11-16 · Gospel Matt 25:31-46 -- Com. sts-faustinus-jovita +- Commemoration sts-faustinus-jovita -**16** ef-lent-1-tuesday -`class-3` · violet · Ep. Isa 55:6-11 · Ev. Matt 21:10-17 +**16** Tuesday of the 1st Week of Lent +`class-3` · violet · Epistle Isa 55:6-11 · Gospel Matt 21:10-17 -**17** ef-lent-ember-wed -`class-2` · violet · Ep. 3 Kgs. 19:3-8 · Ev. Matt 12:38-50 +**17** Lenten Ember Wednesday +`class-2` · violet · Epistle 3 Kgs. 19:3-8 · Gospel Matt 12:38-50 -**18** ef-lent-1-thursday -`class-3` · violet · Ep. Ezech 18:1-9 · Ev. Matt 15:21-28 +**18** Thursday of the 1st Week of Lent +`class-3` · violet · Epistle Ezech 18:1-9 · Gospel Matt 15:21-28 -- Com. simeon +- Commemoration simeon -**19** ef-lent-ember-fri -`class-2` · violet · Ep. Ezech 18:20-28 · Ev. John 5:1-15 +**19** Lenten Ember Friday +`class-2` · violet · Epistle Ezech 18:20-28 · Gospel John 5:1-15 -**20** ef-lent-ember-sat -`class-2` · violet · Ep. 1 Thess. 5:14-23 · Ev. Matt 17:1-9 +**20** Lenten Ember Saturday +`class-2` · violet · Epistle 1 Thess. 5:14-23 · Gospel Matt 17:1-9 -**21** ef-lent-sunday-2 -`class-1` · violet · Ep. 1 Thess. 4:1-7 · Ev. Matt 17:1-9 +**21** 2nd Sunday of Lent +`class-1` · violet · Epistle 1 Thess. 4:1-7 · Gospel Matt 17:1-9 -**22** chair-of-st-peter -`class-2` · white · Ep. 1 Pet 1:1-7 · Ev. Matt 16:13-19 +**22** Chair of St. Peter +`class-2` · white · Epistle 1 Pet 1:1-7 · Gospel Matt 16:13-19 -- Com. ef-lent-2-monday +- Commemoration Monday of the 2nd Week of Lent -- Com. paul +- Commemoration paul -**23** ef-lent-2-tuesday -`class-3` · violet · Ep. 3 Kings 17:8-16 · Ev. Matt 23:1-12 +**23** Tuesday of the 2nd Week of Lent +`class-3` · violet · Epistle 3 Kings 17:8-16 · Gospel Matt 23:1-12 -- Com. peter-damien +- Commemoration St. Peter Damien -**24** matthias -`class-2` · red · Ep. Acts 1:15-26 · Ev. Matt 11:25-30 +**24** St. Matthias +`class-2` · red · Epistle Acts 1:15-26 · Gospel Matt 11:25-30 -- Com. ef-lent-2-wednesday +- Commemoration Wednesday of the 2nd Week of Lent -**25** ef-lent-2-thursday -`class-3` · violet · Ep. Jer 17:5-10 · Ev. Luke 16:19-31 +**25** Thursday of the 2nd Week of Lent +`class-3` · violet · Epistle Jer 17:5-10 · Gospel Luke 16:19-31 -**26** ef-lent-2-friday -`class-3` · violet · Ep. Gen 37:6-22 · Ev. Matt 21:33-46 +**26** Friday of the 2nd Week of Lent +`class-3` · violet · Epistle Gen 37:6-22 · Gospel Matt 21:33-46 -**27** ef-lent-2-saturday -`class-3` · violet · Ep. Gen 27:6-40 · Ev. Luke 15:11-32 +**27** Saturday of the 2nd Week of Lent +`class-3` · violet · Epistle Gen 27:6-40 · Gospel Luke 15:11-32 -- Com. gabriel-of-our-lady-of-sorrows +- Commemoration St. Gabriel of Our Lady of Sorrows -**28** ef-lent-sunday-3 -`class-1` · violet · Ep. Eph 5:1-9 · Ev. Luke 11:14-28 +**28** 3rd Sunday of Lent +`class-1` · violet · Epistle Eph 5:1-9 · Gospel Luke 11:14-28 -## Martius +## March -**1** ef-lent-3-monday -`class-3` · violet · Ep. 4 Kings 5:1-15 · Ev. Luke 4:23-30 +**1** Monday of the 3rd Week of Lent +`class-3` · violet · Epistle 4 Kings 5:1-15 · Gospel Luke 4:23-30 -**2** ef-lent-3-tuesday -`class-3` · violet · Ep. 4 Kings 4:1-7 · Ev. Matt 18:15-22 +**2** Tuesday of the 3rd Week of Lent +`class-3` · violet · Epistle 4 Kings 4:1-7 · Gospel Matt 18:15-22 -**3** ef-lent-3-wednesday -`class-3` · violet · Ep. Ex 20:12-24 · Ev. Matt 15:1-20 +**3** Wednesday of the 3rd Week of Lent +`class-3` · violet · Epistle Ex 20:12-24 · Gospel Matt 15:1-20 -**4** ef-lent-3-thursday -`class-3` · violet · Ep. Jer 7:1-7 · Ev. Luke 4:38-44. +**4** Thursday of the 3rd Week of Lent +`class-3` · violet · Epistle Jer 7:1-7 · Gospel Luke 4:38-44. -- Com. casimir +- Commemoration St. Casimir -- Com. lucius +- Commemoration lucius -**5** ef-lent-3-friday -`class-3` · violet · Ep. Num 20:1, 3; 6-13. · Ev. John 4:5-42 +**5** Friday of the 3rd Week of Lent +`class-3` · violet · Epistle Num 20:1, 3; 6-13. · Gospel John 4:5-42 -**6** ef-lent-3-saturday -`class-3` · violet · Ep. Dan 13:1-9, 15-17, 19-30, 33-62. · Ev. John 8:1-11 +**6** Saturday of the 3rd Week of Lent +`class-3` · violet · Epistle Dan 13:1-9, 15-17, 19-30, 33-62. · Gospel John 8:1-11 -- Com. sts-felicitas-perpetua +- Commemoration Sts. Felicitas & Perpetua -**7** ef-lent-sunday-4 -`class-1` · rose · Ep. Gal 4:22-31 · Ev. John 6:1-15 +**7** 4th Sunday of Lent +`class-1` · rose · Epistle Gal 4:22-31 · Gospel John 6:1-15 -**8** ef-lent-4-monday -`class-3` · violet · Ep. 3 Kings 3:16-28 · Ev. John 2:13-25 +**8** Monday of the 4th Week of Lent +`class-3` · violet · Epistle 3 Kings 3:16-28 · Gospel John 2:13-25 -- Com. john-of-god +- Commemoration St. John of God -**9** ef-lent-4-tuesday -`class-3` · violet · Ep. Ex 32:7-14 · Ev. John 7:14-31 +**9** Tuesday of the 4th Week of Lent +`class-3` · violet · Epistle Ex 32:7-14 · Gospel John 7:14-31 -- Com. frances-rome +- Commemoration St. Frances Rome -**10** ef-lent-4-wednesday -`class-3` · violet · Ep. Isa. 1:16-19 · Ev. John 9:1-38 +**10** Wednesday of the 4th Week of Lent +`class-3` · violet · Epistle Isa. 1:16-19 · Gospel John 9:1-38 -- Com. forty-holy-martyrs-of-sebaste +- Commemoration forty-holy-martyrs-of-sebaste -**11** ef-lent-4-thursday -`class-3` · violet · Ep. 4 Kings 4:25-38 · Ev. Luke 7:11-16 +**11** Thursday of the 4th Week of Lent +`class-3` · violet · Epistle 4 Kings 4:25-38 · Gospel Luke 7:11-16 -**12** ef-lent-4-friday -`class-3` · violet · Ep. 3 Kings 17:17-24 · Ev. John 11:1-45 +**12** Friday of the 4th Week of Lent +`class-3` · violet · Epistle 3 Kings 17:17-24 · Gospel John 11:1-45 -- Com. gregory-the-great +- Commemoration gregory-the-great -**13** ef-lent-4-saturday -`class-3` · violet · Ep. Isa 49:8-15 · Ev. John 8:12-20 +**13** Saturday of the 4th Week of Lent +`class-3` · violet · Epistle Isa 49:8-15 · Gospel John 8:12-20 -**14** ef-passion-sunday -`class-1` · violet · Ep. Heb 9:11-15. · Ev. John 8:46-59. +**14** Passion Sunday +`class-1` · violet · Epistle Heb 9:11-15. · Gospel John 8:46-59. -**15** ef-passiontide-1-monday -`class-3` · violet · Ep. Jonas 3:1-10 · Ev. John 7:32-39 +**15** Monday of the 1st Week of Passion Week +`class-3` · violet · Epistle Jonas 3:1-10 · Gospel John 7:32-39 -**16** ef-passiontide-1-tuesday -`class-3` · violet · Ep. Dan 14:27, 28-42 · Ev. John 7:1-13 +**16** Tuesday of the 1st Week of Passion Week +`class-3` · violet · Epistle Dan 14:27, 28-42 · Gospel John 7:1-13 -**17** ef-passiontide-1-wednesday -`class-3` · violet · Ep. Lev 19:1-2, 11-19, 25 · Ev. John 10:22-38 +**17** Wednesday of the 1st Week of Passion Week +`class-3` · violet · Epistle Lev 19:1-2, 11-19, 25 · Gospel John 10:22-38 -- Com. patrick +- Commemoration patrick -**18** ef-passiontide-1-thursday -`class-3` · violet · Ep. Dan 3:25, 34-45. · Ev. Luke 7:36-50 +**18** Thursday of the 1st Week of Passion Week +`class-3` · violet · Epistle Dan 3:25, 34-45. · Gospel Luke 7:36-50 -- Com. cyril-of-jerusalem +- Commemoration cyril-of-jerusalem -**19** joseph-spouse-of-the-bl-virgin-mary -`class-1` · white · Ep. Ecclus 45:1-6 · Ev. Matt 1:18-21 +**19** St. Joseph, Spouse of the Bl. Virgin Mary +`class-1` · white · Epistle Ecclus 45:1-6 · Gospel Matt 1:18-21 -- Com. ef-passiontide-1-friday +- Commemoration Friday of the 1st Week of Passion Week -**20** ef-passiontide-1-saturday -`class-3` · violet · Ep. Jer 18:18-23 · Ev. John 12:10-36 +**20** Saturday of the 1st Week of Passion Week +`class-3` · violet · Epistle Jer 18:18-23 · Gospel John 12:10-36 -**21** ef-palm-sunday -`class-1` · violet · Ep. Phil 2:5-11 · Ev. Matt. 26:36-75; 27:1-60. +**21** Palm Sunday +`class-1` · violet · Epistle Phil 2:5-11 · Gospel Matt. 26:36-75; 27:1-60. -**22** ef-passiontide-2-monday -`class-1` · violet · Ep. Isa 50:5-10 · Ev. John 12:1-9 +**22** Monday of Holy Week +`class-1` · violet · Epistle Isa 50:5-10 · Gospel John 12:1-9 -**23** ef-passiontide-2-tuesday -`class-1` · violet · Ep. Jer 11:18-20 · Ev. Mark 14:32-72; 15, 1-46 +**23** Tuesday of Holy Week +`class-1` · violet · Epistle Jer 11:18-20 · Gospel Mark 14:32-72; 15, 1-46 -**24** ef-passiontide-2-wednesday -`class-1` · violet · Ep. Isa 53:1-12 · Ev. Luke 22:39-71; 23:1-53 +**24** Wednesday of Holy Week (Spy Wednesday) +`class-1` · violet · Epistle Isa 53:1-12 · Gospel Luke 22:39-71; 23:1-53 -**25** Feria V in Cena Domini -`class-1` · white · Ep. 1 Cor 11:20-32 · Ev. John 13:1-15 +**25** Holy Thursday (Maundy Thursday) +`class-1` · white · Epistle 1 Cor 11:20-32 · Gospel John 13:1-15 -**26** Feria VI in Passione et Morte Domini -`class-1` · black · Ep. Ex 12:1-11 · Ev. John 18:1-40; 19:1-42 +**26** Good Friday +`class-1` · black · Epistle Ex 12:1-11 · Gospel John 18:1-40; 19:1-42 -**27** Sabbato sancto -`class-1` · violet · Ep. Col 3:1-4 · Ev. Matt 28:1-7 +**27** Holy Saturday +`class-1` · violet · Epistle Col 3:1-4 · Gospel Matt 28:1-7 -**28** ef-easter-sunday -`class-1` · white · Ep. 1 Cor 5:7-8 · Ev. Mark 16:1-7 +**28** Easter Sunday +`class-1` · white · Epistle 1 Cor 5:7-8 · Gospel Mark 16:1-7 -**29** ef-easter-1-monday -`class-1` · white · Ep. Acts 10:37-43. · Ev. Luke 24:13-35 +**29** Monday of Easter Week +`class-1` · white · Epistle Acts 10:37-43. · Gospel Luke 24:13-35 -**30** ef-easter-1-tuesday -`class-1` · white · Ep. Acts 13:16; 13:26-33 · Ev. Luke 24:36-47 +**30** Tuesday of Easter Week +`class-1` · white · Epistle Acts 13:16; 13:26-33 · Gospel Luke 24:36-47 -**31** ef-easter-1-wednesday -`class-1` · white · Ep. Acts 3:13-15; 3:17-19 · Ev. John 21:1-14 +**31** Wednesday of Easter Week +`class-1` · white · Epistle Acts 3:13-15; 3:17-19 · Gospel John 21:1-14 -## Aprilis +## April -**1** ef-easter-1-thursday -`class-1` · white · Ep. Acts 8:26-40 · Ev. John 20:11-18 +**1** Thursday of Easter Week +`class-1` · white · Epistle Acts 8:26-40 · Gospel John 20:11-18 -**2** ef-easter-1-friday -`class-1` · white · Ep. 1 Pet 3:18-22 · Ev. Matt 28:16-20 +**2** Friday of Easter Week +`class-1` · white · Epistle 1 Pet 3:18-22 · Gospel Matt 28:16-20 -**3** ef-easter-1-saturday -`class-1` · white · Ep. 1 Pet 2:1-10 · Ev. John 20:1-9 +**3** Saturday of Easter Week +`class-1` · white · Epistle 1 Pet 2:1-10 · Gospel John 20:1-9 -**4** ef-low-sunday -`class-1` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 +**4** Low Sunday (Sunday in Easter Octave) +`class-1` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 -**5** annunciation-of-the-blessed-virgin-mary -`class-1` · white · Ep. Isa 7:10-15 · Ev. Luke 1:26-38 +**5** Annunciation of the Blessed Virgin Mary +`class-1` · white · Epistle Isa 7:10-15 · Gospel Luke 1:26-38 -**6** ef-easter-2-tuesday -`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 +**6** Tuesday of the 2nd Week of Eastertide +`class-4` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 -**7** ef-easter-2-wednesday -`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 +**7** Wednesday of the 2nd Week of Eastertide +`class-4` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 -**8** ef-easter-2-thursday -`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 +**8** Thursday of the 2nd Week of Eastertide +`class-4` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 -**9** ef-easter-2-friday -`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 +**9** Friday of the 2nd Week of Eastertide +`class-4` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 -**10** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 +**10** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27 -**11** ef-easter-sunday-3 -`class-2` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 +**11** 2nd Sunday after Easter +`class-2` · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16 -**12** ef-easter-3-monday -`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 +**12** Monday of the 3rd Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16 -**13** hermenegild -`class-3` · red · Ep. Wis 10:10-14 · Ev. Luke 14:26-33. +**13** St. Hermenegild +`class-3` · red · Epistle Wis 10:10-14 · Gospel Luke 14:26-33. -**14** justin -`class-3` · red · Ep. 1 Cor 1:18-25; 1:30; · Ev. Luke 12:2-8 +**14** St. Justin +`class-3` · red · Epistle 1 Cor 1:18-25; 1:30; · Gospel Luke 12:2-8 -- Com. sts-tiburtius-valerian-et-maximus-martyrs +- Commemoration sts-tiburtius-valerian-et-maximus-martyrs -**15** ef-easter-3-thursday -`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 +**15** Thursday of the 3rd Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16 -**16** ef-easter-3-friday -`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 +**16** Friday of the 3rd Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16 -**17** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 +**17** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27 -- Com. anicetus +- Commemoration anicetus -**18** ef-easter-sunday-4 -`class-2` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 +**18** 3rd Sunday after Easter +`class-2` · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22 -**19** ef-easter-4-monday -`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 +**19** Monday of the 4th Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22 -**20** ef-easter-4-tuesday -`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 +**20** Tuesday of the 4th Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22 -**21** anselm -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**21** St. Anselm +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**22** sts-soter-caius -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**22** Sts. Soter & Caius +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -**23** ef-easter-4-friday -`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 +**23** Friday of the 4th Week of Eastertide +`class-4` · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22 -- Com. george +- Commemoration george -**24** fidelis-of-sigmaringen -`class-3` · red · Ep. Wis 5:1-5 · Ev. John 15:1-7 +**24** St. Fidelis of Sigmaringen +`class-3` · red · Epistle Wis 5:1-5 · Gospel John 15:1-7 -**25** ef-easter-sunday-5 -`class-2` · white · Ep. Jas 1:17-21 · Ev. John 16:5-14 +**25** 4th Sunday after Easter +`class-2` · white · Epistle Jas 1:17-21 · Gospel John 16:5-14 -- Com. major-litanies +- Commemoration major-litanies -**26** sts-cletus-marcellinus -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**26** Sts. Cletus & Marcellinus +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -**27** peter-canisius -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**27** St. Peter Canisius +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**28** paul-of-the-cross -`class-3` · white · Ep. 1 Cor 1:17-25. · Ev. Luke 10:1-9 +**28** St. Paul of the Cross +`class-3` · white · Epistle 1 Cor 1:17-25. · Gospel Luke 10:1-9 -**29** peter-of-verona -`class-3` · red · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Matt 10:34-42 +**29** St. Peter of Verona +`class-3` · red · Epistle 2 Tim. 2:8-10; 3:10-12. · Gospel Matt 10:34-42 -**30** catherine-of-siena -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**30** St. Catherine of Siena +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -## Maius +## May -**1** joseph-the-workman -`class-1` · white · Ep. Col. 3:14-15, 17, 23-24 · Ev. Matt 13:54-58 +**1** St. Joseph the Workman +`class-1` · white · Epistle Col. 3:14-15, 17, 23-24 · Gospel Matt 13:54-58 -**2** ef-easter-sunday-6 -`class-2` · white · Ep. Jas 1:22-27 · Ev. John 16:23-30 +**2** 5th Sunday after Easter +`class-2` · white · Epistle Jas 1:22-27 · Gospel John 16:23-30 -**3** ef-rogation-monday -`class-4` · violet · Ep. Jas 1:22-27 · Ev. John 16:23-30 +**3** Rogation Monday +`class-4` · violet · Epistle Jas 1:22-27 · Gospel John 16:23-30 -- Com. sts-alexander-companions +- Commemoration sts-alexander-companions -**4** monica -`class-3` · white · Ep. 1 Tim. 5:3-10. · Ev. Luke 7:11-16 +**4** St. Monica +`class-3` · white · Epistle 1 Tim. 5:3-10. · Gospel Luke 7:11-16 -**5** ef-ascension-vigil -`class-2` · white · Ep. Eph. 4:7-13. · Ev. John 17:1-11. +**5** Vigil of the Ascension +`class-2` · white · Epistle Eph. 4:7-13. · Gospel John 17:1-11. -- Com. pius-v +- Commemoration St. Pius V -**6** ef-ascension -`class-1` · white · Ep. Acts 1:1-11 · Ev. Mark 16:14-20 +**6** The Ascension of Our Lord +`class-1` · white · Epistle Acts 1:1-11 · Gospel Mark 16:14-20 -**7** stanislaus -`class-3` · red · Ep. Wis 5:1-5 · Ev. John 15:1-7 +**7** St. Stanislaus +`class-3` · red · Epistle Wis 5:1-5 · Gospel John 15:1-7 -**8** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 +**8** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27 -**9** ef-easter-sunday-7 -`class-2` · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4. +**9** Sunday after the Ascension +`class-2` · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4. -**10** antoninus -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 +**10** St. Antoninus +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23 -- Com. gordiano-and-epimacho +- Commemoration gordiano-and-epimacho -**11** sts-philip-james -`class-2` · red · Ep. Wis. 5:1-5 · Ev. John 14:1-13 +**11** Sts. Philip & James +`class-2` · red · Epistle Wis. 5:1-5 · Gospel John 14:1-13 -**12** sts-nereus-achilleus-domitilla-pancras -`class-3` · red · Ep. Wis. 5:1-5 · Ev. John 4:46-53 +**12** Sts. Nereus, Achilleus, Domitilla, & Pancras +`class-3` · red · Epistle Wis. 5:1-5 · Gospel John 4:46-53 -**13** robert-bellarmine -`class-3` · white · Ep. Wis 7:7-14. · Ev. Matt 5:13-19 +**13** St. Robert Bellarmine +`class-3` · white · Epistle Wis 7:7-14. · Gospel Matt 5:13-19 -**14** ef-easter-7-friday -`class-4` · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4. +**14** Friday of the 7th Week of Eastertide +`class-4` · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4. -- Com. boniface-martyr +- Commemoration boniface-martyr -**15** ef-pentecost-vigil -`class-1` · red · Ep. Acts 19:1-8. · Ev. John 14:15-21. +**15** Vigil of Pentecost +`class-1` · red · Epistle Acts 19:1-8. · Gospel John 14:15-21. -**16** ef-pentecost -`class-1` · red · Ep. Acts 2:1-11. · Ev. John 14:23-31. +**16** Pentecost Sunday (Whitsunday) +`class-1` · red · Epistle Acts 2:1-11. · Gospel John 14:23-31. -**17** ef-easter-8-monday -`class-1` · red · Ep. Acts 10:34, 42-48 · Ev. John 3:16-21 +**17** Monday of Pentecost Week +`class-1` · red · Epistle Acts 10:34, 42-48 · Gospel John 3:16-21 -**18** ef-easter-8-tuesday -`class-1` · red · Ep. Acts 8:14-17. · Ev. John 10:1-10. +**18** Tuesday of Pentecost Week +`class-1` · red · Epistle Acts 8:14-17. · Gospel John 10:1-10. -**19** ef-pentecost-ember-wed -`class-1` · red · Ep. Acts 5:12-16 · Ev. John 6:44-52. +**19** Pentecost Ember Wednesday +`class-1` · red · Epistle Acts 5:12-16 · Gospel John 6:44-52. -**20** ef-easter-8-thursday -`class-1` · red · Ep. Acts 8:5-8 · Ev. Luke 9:1-6 +**20** Thursday of Pentecost Week +`class-1` · red · Epistle Acts 8:5-8 · Gospel Luke 9:1-6 -**21** ef-pentecost-ember-fri -`class-1` · red · Ep. Joel 2:23-24; 26-27 · Ev. Luke 5:17-26 +**21** Pentecost Ember Friday +`class-1` · red · Epistle Joel 2:23-24; 26-27 · Gospel Luke 5:17-26 -**22** ef-pentecost-ember-sat -`class-1` · red · Ep. Rom 5:1-5. · Ev. Luke 4:38-44. +**22** Pentecost Ember Saturday +`class-1` · red · Epistle Rom 5:1-5. · Gospel Luke 4:38-44. -**23** ef-trinity -`class-1` · white · Ep. Rom 11:33-36. · Ev. Matt 28:18-20 +**23** Trinity Sunday +`class-1` · white · Epistle Rom 11:33-36. · Gospel Matt 28:18-20 -**24** ef-time-after-pentecost-1-monday -`class-4` · green · Ep. 1 John 4:8-21 · Ev. Luke 6:36-42 +**24** Monday of the 1st Week of the Time after Pentecost +`class-4` · green · Epistle 1 John 4:8-21 · Gospel Luke 6:36-42 -**25** gregory-vii -`class-3` · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**25** St. Gregory VII +`class-3` · white · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -- Com. urban-pope-and-martyr +- Commemoration urban-pope-and-martyr -**26** philip-neri -`class-3` · white · Ep. Wis 7:7-14. · Ev. Luke 12:35-40 +**26** St. Philip Neri +`class-3` · white · Epistle Wis 7:7-14. · Gospel Luke 12:35-40 -- Com. eleutherius +- Commemoration eleutherius -**27** ef-corpus-christi -`class-1` · white · Ep. 1 Cor 11:23-29 · Ev. John 6:56-59 +**27** Corpus Christi +`class-1` · white · Epistle 1 Cor 11:23-29 · Gospel John 6:56-59 -**28** augustine-of-canterbury -`class-3` · white · Ep. 1 Thess 2:2-9 · Ev. Luke 10:1-9 +**28** St. Augustine of Canterbury +`class-3` · white · Epistle 1 Thess 2:2-9 · Gospel Luke 10:1-9 -**29** mary-magdalene-de-pazzi -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**29** St. Mary Magdalene de Pazzi +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -**30** ef-time-after-pentecost-sunday-2 -`class-2` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. +**30** 2nd Sunday after Pentecost +`class-2` · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24. -**31** queenship-of-the-blessed-virgin-mary -`class-2` · white · Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Ev. Luke 1:26-33 +**31** Queenship of the Blessed Virgin Mary +`class-2` · white · Epistle Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Gospel Luke 1:26-33 -- Com. petronilla +- Commemoration petronilla -## Iunius +## June -**1** angela-merici -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**1** St. Angela Merici +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -**2** ef-time-after-pentecost-2-wednesday -`class-4` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. +**2** Wednesday of the 2nd Week of the Time after Pentecost +`class-4` · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24. -- Com. sts-marcellinus-peter-erasmus +- Commemoration sts-marcellinus-peter-erasmus -**3** ef-time-after-pentecost-2-thursday -`class-4` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. +**3** Thursday of the 2nd Week of the Time after Pentecost +`class-4` · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24. -**4** ef-sacred-heart -`class-1` · white · Ep. Eph 3:8-12, 14-19 · Ev. John 19:31-37 +**4** The Sacred Heart of Jesus +`class-1` · white · Epistle Eph 3:8-12, 14-19 · Gospel John 19:31-37 -**5** boniface -`class-3` · red · Ep. Ecclus 44:1-15 · Ev. Matt 5:1-12 +**5** St. Boniface +`class-3` · red · Epistle Ecclus 44:1-15 · Gospel Matt 5:1-12 -**6** ef-time-after-pentecost-sunday-3 -`class-2` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 +**6** 3rd Sunday after Pentecost +`class-2` · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10 -**7** ef-time-after-pentecost-3-monday -`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 +**7** Monday of the 3rd Week of the Time after Pentecost +`class-4` · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10 -**8** ef-time-after-pentecost-3-tuesday -`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 +**8** Tuesday of the 3rd Week of the Time after Pentecost +`class-4` · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10 -**9** ef-time-after-pentecost-3-wednesday -`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 +**9** Wednesday of the 3rd Week of the Time after Pentecost +`class-4` · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10 -- Com. sts-primus-felicianus +- Commemoration sts-primus-felicianus -**10** margaret-of-scotland -`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**10** St. Margaret of Scotland +`class-3` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -**11** barnabas -`class-3` · red · Ep. Acts 11:21-26; 13:1-3 · Ev. Matt 10:16-22 +**11** St. Barnabas +`class-3` · red · Epistle Acts 11:21-26; 13:1-3 · Gospel Matt 10:16-22 -**12** john-of-san-fecundo -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**12** St. John of San Fecundo +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -- Com. basilidus +- Commemoration basilidus -**13** ef-time-after-pentecost-sunday-4 -`class-2` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 +**13** 4th Sunday after Pentecost +`class-2` · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11 -**14** basil-the-great -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Luke 14:26-35 +**14** St. Basil the Great +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Luke 14:26-35 -**15** ef-time-after-pentecost-4-tuesday -`class-4` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 +**15** Tuesday of the 4th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11 -- Com. vitus +- Commemoration vitus -**16** ef-time-after-pentecost-4-wednesday -`class-4` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 +**16** Wednesday of the 4th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11 -**17** gregory-barbarigo -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 +**17** St. Gregory Barbarigo +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23 -**18** ephrem-of-syria -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**18** St. Ephrem of Syria +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. marcus-and-marcellianus +- Commemoration marcus-and-marcellianus -**19** julia-of-falconieri -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**19** St. Julia of Falconieri +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -- Com. sts-gervasius-and-protasius +- Commemoration sts-gervasius-and-protasius -**20** ef-time-after-pentecost-sunday-5 -`class-2` · green · Ep. 1 Pet 3:8-15. · Ev. Matt 5:20-24. +**20** 5th Sunday after Pentecost +`class-2` · green · Epistle 1 Pet 3:8-15. · Gospel Matt 5:20-24. -**21** aloysius-gongzaga -`class-3` · white · Ep. Sir 31:8-11 · Ev. Matt 22:29-40 +**21** St. Aloysius Gongzaga +`class-3` · white · Epistle Sir 31:8-11 · Gospel Matt 22:29-40 -**22** paulinus-of-nola -`class-3` · white · Ep. 2 Cor. 8:9-15 · Ev. Luke 12:32-34 +**22** St. Paulinus of Nola +`class-3` · white · Epistle 2 Cor. 8:9-15 · Gospel Luke 12:32-34 -**23** vigil-of-the-nativity-of-st-john-the-baptist -`class-2` · violet · Ep. Jer 1:4-10 · Ev. Luke 1:5-17 +**23** Vigil of the Nativity of St. John the Baptist +`class-2` · violet · Epistle Jer 1:4-10 · Gospel Luke 1:5-17 -**24** nativity-of-st-john-the-baptist -`class-1` · white · Ep. Isa 49:1-3, 5-7. · Ev. Luke 1:57-68 +**24** Nativity of St. John the Baptist +`class-1` · white · Epistle Isa 49:1-3, 5-7. · Gospel Luke 1:57-68 -**25** william -`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29. +**25** St. William +`class-3` · white · Epistle Ecclus 45:1-6 · Gospel Matt 19:27-29. -**26** sts-john-paul -`class-3` · red · Ep. Eccli 44:10-15 · Ev. Luke 12:1-8 +**26** Sts. John & Paul +`class-3` · red · Epistle Eccli 44:10-15 · Gospel Luke 12:1-8 -**27** ef-time-after-pentecost-sunday-6 -`class-2` · green · Ep. Rom 6:3-11. · Ev. Mark 8:1-9 +**27** 6th Sunday after Pentecost +`class-2` · green · Epistle Rom 6:3-11. · Gospel Mark 8:1-9 -**28** vigil-of-sts-peter-paul -`class-2` · violet · Ep. Acts 3:1-10 · Ev. John 21:15-19 +**28** Vigil of Sts. Peter & Paul +`class-2` · violet · Epistle Acts 3:1-10 · Gospel John 21:15-19 -**29** sts-peter-paul -`class-1` · red · Ep. Acts 12:1-11 · Ev. Matt 16:13-19 +**29** Sts. Peter & Paul +`class-1` · red · Epistle Acts 12:1-11 · Gospel Matt 16:13-19 -**30** in-commemoratione-sancti-pauli-apostoli -`class-3` · red · Ep. Gal 1:11-20 · Ev. Matt 10:16-22 +**30** In Commemoratione Sancti Pauli Apostoli +`class-3` · red · Epistle Gal 1:11-20 · Gospel Matt 10:16-22 -- Com. commemoration-of-st-peter +- Commemoration commemoration-of-st-peter -## Iulius +## July -**1** precious-blood-of-our-lord-jesus-christ -`class-1` · red · Ep. Heb 9:11-15. · Ev. John 19:30-35 +**1** The Precious Blood of Our Lord Jesus Christ +`class-1` · red · Epistle Heb 9:11-15. · Gospel John 19:30-35 -**2** visitation-of-the-blessed-virgin-mary -`class-2` · white · Ep. Song 2:8-14 · Ev. Luke 1:39-47 +**2** Visitation of the Blessed Virgin Mary +`class-2` · white · Epistle Song 2:8-14 · Gospel Luke 1:39-47 -- Com. processus-and-martinian +- Commemoration processus-and-martinian -**3** irenaeus -`class-3` · red · Ep. 2 Tim. 3:14-17; 4:1-5 · Ev. Matt 10:28-33 +**3** St. Irenaeus +`class-3` · red · Epistle 2 Tim. 3:14-17; 4:1-5 · Gospel Matt 10:28-33 -**4** ef-time-after-pentecost-sunday-7 -`class-2` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 +**4** 7th Sunday after Pentecost +`class-2` · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21 -**5** anthony-mary-zaccariah -`class-3` · white · Ep. 1 Tim. 4:8-16 · Ev. Mark 10:15-21 +**5** St. Anthony Mary Zaccariah +`class-3` · white · Epistle 1 Tim. 4:8-16 · Gospel Mark 10:15-21 -**6** ef-time-after-pentecost-7-tuesday -`class-4` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 +**6** Tuesday of the 7th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21 -**7** sts-cyril-methodius -`class-3` · white · Ep. Heb 7:23-27 · Ev. Luke 10:1-9 +**7** Sts. Cyril & Methodius +`class-3` · white · Epistle Heb 7:23-27 · Gospel Luke 10:1-9 -**8** elizabeth-of-portugal -`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**8** St. Elizabeth of Portugal +`class-3` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -**9** ef-time-after-pentecost-7-friday -`class-4` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 +**9** Friday of the 7th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21 -**10** seven-holy-brothers-and-sts-rufina-secunda -`class-3` · red · Ep. Prov 31:10-31 · Ev. Matt 12:46-50 +**10** Seven Holy Brothers and Sts. Rufina & Secunda +`class-3` · red · Epistle Prov 31:10-31 · Gospel Matt 12:46-50 -**11** ef-time-after-pentecost-sunday-8 -`class-2` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 +**11** 8th Sunday after Pentecost +`class-2` · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9 -**12** john-gualbert -`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 5:43-48 +**12** St. John Gualbert +`class-3` · white · Epistle Ecclus 45:1-6 · Gospel Matt 5:43-48 -- Com. naboris-et-felicis +- Commemoration naboris-et-felicis -**13** ef-time-after-pentecost-8-tuesday -`class-4` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 +**13** Tuesday of the 8th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9 -**14** bonaventure -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**14** St. Bonaventure +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**15** henry-the-emperor -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**15** St. Henry the Emperor +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**16** ef-time-after-pentecost-8-friday -`class-4` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 +**16** Friday of the 8th Week of the Time after Pentecost +`class-4` · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9 -- Com. our-lady-of-mt-carmel +- Commemoration our-lady-of-mt-carmel -**17** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**17** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -- Com. alexis +- Commemoration alexis -**18** ef-time-after-pentecost-sunday-9 -`class-2` · green · Ep. 1 Cor. 10:6-13 · Ev. Luke 19:41-47 +**18** 9th Sunday after Pentecost +`class-2` · green · Epistle 1 Cor. 10:6-13 · Gospel Luke 19:41-47 -**19** vincent-de-paul -`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 10:1-9 +**19** St. Vincent de Paul +`class-3` · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 10:1-9 -**20** jerome-emiliani -`class-3` · white · Ep. Isa 58:7-11 · Ev. Matt 19:13-21 +**20** St. Jerome Emiliani +`class-3` · white · Epistle Isa 58:7-11 · Gospel Matt 19:13-21 -- Com. margaret +- Commemoration margaret -**21** laurence-of-brindisi -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**21** St. Laurence of Brindisi +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. praxedis-virginis +- Commemoration praxedis-virginis -**22** mary-magdalene -`class-3` · white · Ep. Song 3:2-5; 8:6-7 · Ev. Luke 7:36-50 +**22** St. Mary Magdalene +`class-3` · white · Epistle Song 3:2-5; 8:6-7 · Gospel Luke 7:36-50 -**23** apollinaris -`class-3` · red · Ep. 1 Pet. 5:1-11 · Ev. Luke 22:24-30 +**23** St. Apollinaris +`class-3` · red · Epistle 1 Pet. 5:1-11 · Gospel Luke 22:24-30 -- Com. liborii +- Commemoration liborii -**24** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**24** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -- Com. christina +- Commemoration christina -**25** ef-time-after-pentecost-sunday-10 -`class-2` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 +**25** 10th Sunday after Pentecost +`class-2` · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14 -- Com. james-the-greater +- Commemoration St. James the Greater -**26** anne-mother-of-the-blessed-virgin -`class-2` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**26** St. Anne, Mother of the Blessed Virgin +`class-2` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -**27** ef-time-after-pentecost-10-tuesday -`class-4` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 +**27** Tuesday of the 10th Week of the Time after Pentecost +`class-4` · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14 -- Com. pantaleon +- Commemoration pantaleon -**28** sts-nazarius-celsus-st-victor-i-st-innocent-i -`class-3` · red · Ep. Wis 10:17-20 · Ev. Luke 21:9-19 +**28** Sts. Nazarius & Celsus, St. Victor I & St. Innocent I +`class-3` · red · Epistle Wis 10:17-20 · Gospel Luke 21:9-19 -**29** martha -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Luke 10:38-42 +**29** St. Martha +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Luke 10:38-42 -- Com. felicis-simplicii-faustini-et-beatricis +- Commemoration felicis-simplicii-faustini-et-beatricis -**30** ef-time-after-pentecost-10-friday -`class-4` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 +**30** Friday of the 10th Week of the Time after Pentecost +`class-4` · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14 -- Com. sts-abdon-sennen +- Commemoration sts-abdon-sennen -**31** ignatius-loyola -`class-3` · white · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Luke 10:1-9 +**31** St. Ignatius Loyola +`class-3` · white · Epistle 2 Tim. 2:8-10; 3:10-12. · Gospel Luke 10:1-9 -## Augustus +## August -**1** ef-time-after-pentecost-sunday-11 -`class-2` · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37 +**1** 11th Sunday after Pentecost +`class-2` · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37 -**2** alphonsus-liguori -`class-3` · white · Ep. 2 Tim. 2:1-7 · Ev. Luke 10:1-9 +**2** St. Alphonsus Liguori +`class-3` · white · Epistle 2 Tim. 2:1-7 · Gospel Luke 10:1-9 -- Com. stephen-i-pope-and-martyr +- Commemoration stephen-i-pope-and-martyr -**3** ef-time-after-pentecost-11-tuesday -`class-4` · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37 +**3** Tuesday of the 11th Week of the Time after Pentecost +`class-4` · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37 -**4** dominic -`class-3` · white · Ep. 2 Tim. 4:1-8 · Ev. Luke 12:35-40 +**4** St. Dominic +`class-3` · white · Epistle 2 Tim. 4:1-8 · Gospel Luke 12:35-40 -**5** dedication-of-the-basilica-of-st-mary-major -`class-3` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**5** Dedication of the Basilica of St. Mary Major +`class-3` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -**6** transfiguration-of-our-lord -`class-2` · white · Ep. 2 Pet. 1:16-19 · Ev. Matt 17:1-9 +**6** Transfiguration of Our Lord +`class-2` · white · Epistle 2 Pet. 1:16-19 · Gospel Matt 17:1-9 -- Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs +- Commemoration pope-sixtus-ii-felicissimus-and-agapitus-martyrs -**7** cajetan -`class-3` · white · Ep. Sir 31:8-11 · Ev. Matt 6:24-33 +**7** St. Cajetan +`class-3` · white · Epistle Sir 31:8-11 · Gospel Matt 6:24-33 -- Com. donatus +- Commemoration donatus -**8** ef-time-after-pentecost-sunday-12 -`class-2` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 +**8** 12th Sunday after Pentecost +`class-2` · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37 -**9** vigil-of-st-lawrence -`class-3` · violet · Ep. Ecclus 51:1-8, 12 · Ev. Matt 16:24-27 +**9** Vigil of St. Lawrence +`class-3` · violet · Epistle Ecclus 51:1-8, 12 · Gospel Matt 16:24-27 -- Com. romanus +- Commemoration romanus -**10** lawrence -`class-2` · red · Ep. 2 Cor. 9:6-10 · Ev. John 12:24-26 +**10** St. Lawrence +`class-2` · red · Epistle 2 Cor. 9:6-10 · Gospel John 12:24-26 -**11** ef-time-after-pentecost-12-wednesday -`class-4` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 +**11** Wednesday of the 12th Week of the Time after Pentecost +`class-4` · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37 -- Com. sts-tiburtius-susanna +- Commemoration sts-tiburtius-susanna -**12** clare -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**12** St. Clare +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -**13** ef-time-after-pentecost-12-friday -`class-4` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 +**13** Friday of the 12th Week of the Time after Pentecost +`class-4` · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37 -- Com. sts-hippolytus-cassian +- Commemoration sts-hippolytus-cassian -**14** vigil-of-the-assumption -`class-2` · violet · Ep. Sir 24:23-31 · Ev. Luke 11:27-28 +**14** Vigil of the Assumption +`class-2` · violet · Epistle Sir 24:23-31 · Gospel Luke 11:27-28 -- Com. eusebius-confessor +- Commemoration eusebius-confessor -**15** assumption-of-the-blessed-virgin-mary -`class-1` · white · Ep. Judith 13:22-25; 15:10 · Ev. Luke 1:41-50 +**15** Assumption of the Blessed Virgin Mary +`class-1` · white · Epistle Judith 13:22-25; 15:10 · Gospel Luke 1:41-50 -- Com. ef-time-after-pentecost-sunday-13 +- Commemoration 13th Sunday after Pentecost -**16** joachim-father-of-the-blessed-virgin -`class-2` · white · Ep. Sir 31:8-11 · Ev. Matt 1:1-16 +**16** St. Joachim, Father of the Blessed Virgin +`class-2` · white · Epistle Sir 31:8-11 · Gospel Matt 1:1-16 -**17** hyacinth -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**17** St. Hyacinth +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**18** ef-time-after-pentecost-13-wednesday -`class-4` · green · Ep. Gal 3:16-22 · Ev. Luke 17:11-19 +**18** Wednesday of the 13th Week of the Time after Pentecost +`class-4` · green · Epistle Gal 3:16-22 · Gospel Luke 17:11-19 -- Com. agapitus +- Commemoration agapitus -**19** john-eudes -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**19** St. John Eudes +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**20** bernard-of-clairvaux -`class-3` · white · Ep. Ecclus 39:6-14 · Ev. Matt 5:13-19 +**20** St. Bernard of Clairvaux +`class-3` · white · Epistle Ecclus 39:6-14 · Gospel Matt 5:13-19 -**21** jane-frances-de-chantal -`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**21** St. Jane Frances de Chantal +`class-3` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -**22** ef-time-after-pentecost-sunday-14 -`class-2` · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33 +**22** 14th Sunday after Pentecost +`class-2` · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33 -- Com. immaculate-heart-of-mary +- Commemoration Immaculate Heart of Mary -**23** philip-benizi -`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 +**23** St. Philip Benizi +`class-3` · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34 -**24** bartholomew -`class-2` · red · Ep. 1 Cor. 12:27-31 · Ev. Luke 6:12-19 +**24** St. Bartholomew +`class-2` · red · Epistle 1 Cor. 12:27-31 · Gospel Luke 6:12-19 -**25** louis-ix -`class-3` · white · Ep. Wis 10:10-14 · Ev. Luke 19:12-26 +**25** St. Louis IX +`class-3` · white · Epistle Wis 10:10-14 · Gospel Luke 19:12-26 -**26** ef-time-after-pentecost-14-thursday -`class-4` · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33 +**26** Thursday of the 14th Week of the Time after Pentecost +`class-4` · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33 -- Com. zephyrinus +- Commemoration zephyrinus -**27** joseph-calasance -`class-3` · white · Ep. Wis 10:10-14 · Ev. Matt 18:1-5 +**27** St. Joseph Calasance +`class-3` · white · Epistle Wis 10:10-14 · Gospel Matt 18:1-5 -**28** augustine -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**28** St. Augustine +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. hermes +- Commemoration hermes -**29** ef-time-after-pentecost-sunday-15 -`class-2` · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16 +**29** 15th Sunday after Pentecost +`class-2` · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16 -**30** rose-of-lima -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**30** St. Rose of Lima +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -- Com. sts-felix-and-adauctus +- Commemoration sts-felix-and-adauctus -**31** raymond-nonnatus -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**31** St. Raymond Nonnatus +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 ## September -**1** ef-time-after-pentecost-15-wednesday -`class-4` · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16 +**1** Wednesday of the 15th Week of the Time after Pentecost +`class-4` · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16 -- Com. giles +- Commemoration giles -- Com. twelve-holy-brothers-martyrs +- Commemoration twelve-holy-brothers-martyrs -**2** stephen-of-hungary -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 19:12-26 +**2** St. Stephen of Hungary +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 19:12-26 -**3** pius-x -`class-3` · white · Ep. 1 Thess. 2:2-8 · Ev. John 21:15-17 +**3** St. Pius X +`class-3` · white · Epistle 1 Thess. 2:2-8 · Gospel John 21:15-17 -**4** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**4** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -**5** ef-time-after-pentecost-sunday-16 -`class-2` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 +**5** 16th Sunday after Pentecost +`class-2` · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11 -**6** ef-time-after-pentecost-16-monday -`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 +**6** Monday of the 16th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11 -**7** ef-time-after-pentecost-16-tuesday -`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 +**7** Tuesday of the 16th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11 -**8** nativity-of-the-blessed-virgin-mary -`class-2` · white · Ep. Prov 8:22-35 · Ev. Matt 1:1-16 +**8** Nativity of the Blessed Virgin Mary +`class-2` · white · Epistle Prov 8:22-35 · Gospel Matt 1:1-16 -- Com. hadriani +- Commemoration hadriani -**9** ef-time-after-pentecost-16-thursday -`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 +**9** Thursday of the 16th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11 -- Com. gorgonius +- Commemoration gorgonius -**10** nicholas-of-tolentino -`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 +**10** St. Nicholas of Tolentino +`class-3` · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34 -**11** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**11** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -- Com. sts-protus-hyacinth +- Commemoration sts-protus-hyacinth -**12** ef-time-after-pentecost-sunday-17 -`class-2` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 +**12** 17th Sunday after Pentecost +`class-2` · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46 -**13** ef-time-after-pentecost-17-monday -`class-4` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 +**13** Monday of the 17th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46 -**14** exaltation-of-the-holy-cross -`class-2` · red · Ep. Phil 2:5-11 · Ev. John 12:31-36 +**14** Exaltation of the Holy Cross +`class-2` · red · Epistle Phil 2:5-11 · Gospel John 12:31-36 -**15** seven-sorrows-of-the-blessed-virgin-mary -`class-2` · white · Ep. Judith 13:22; 13:23-25 · Ev. John 19:25-27 +**15** Seven Sorrows of the Blessed Virgin Mary +`class-2` · white · Epistle Judith 13:22; 13:23-25 · Gospel John 19:25-27 -- Com. nicomedes +- Commemoration nicomedes -**16** sts-cornelius-cyprian -`class-3` · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19 +**16** Sts. Cornelius & Cyprian +`class-3` · red · Epistle Wis 3:1-8 · Gospel Luke 21:9-19 -- Com. sts-euphemia-lucy-and-geminianus +- Commemoration sts-euphemia-lucy-and-geminianus -**17** ef-time-after-pentecost-17-friday -`class-4` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 +**17** Friday of the 17th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46 -- Com. stigmata-of-st-francis +- Commemoration stigmata-of-st-francis -**18** joseph-of-cupertino -`class-3` · white · Ep. 1 Cor 13:1-8 · Ev. Matt 22:1-14 +**18** St. Joseph of Cupertino +`class-3` · white · Epistle 1 Cor 13:1-8 · Gospel Matt 22:1-14 -**19** ef-time-after-pentecost-sunday-18 -`class-2` · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8 +**19** 18th Sunday after Pentecost +`class-2` · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8 -**20** ef-time-after-pentecost-18-monday -`class-4` · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8 +**20** Monday of the 18th Week of the Time after Pentecost +`class-4` · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8 -- Com. sts-eustace-companions +- Commemoration sts-eustace-companions -**21** matthew -`class-2` · red · Ep. Ezek 1:10-14 · Ev. Matt 9:9-13 +**21** St. Matthew +`class-2` · red · Epistle Ezek 1:10-14 · Gospel Matt 9:9-13 -**22** ef-september-ember-wed -`class-2` · violet · Ep. 2 Esd. 8:1-10 · Ev. Mark 9:16-28 +**22** September Ember Wednesday +`class-2` · violet · Epistle 2 Esd. 8:1-10 · Gospel Mark 9:16-28 -- Com. thomas-of-villanova +- Commemoration St. Thomas of Villanova -**23** linus -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**23** St. Linus +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -- Com. thecla +- Commemoration thecla -**24** ef-september-ember-fri -`class-2` · violet · Ep. Osee 14:2-10 · Ev. Luke 7:36-50 +**24** September Ember Friday +`class-2` · violet · Epistle Osee 14:2-10 · Gospel Luke 7:36-50 -- Com. our-lady-of-ransom +- Commemoration our-lady-of-ransom -**25** ef-september-ember-sat -`class-2` · violet · Ep. Heb 9:2-12 · Ev. Luke 13:6-17 +**25** September Ember Saturday +`class-2` · violet · Epistle Heb 9:2-12 · Gospel Luke 13:6-17 -**26** ef-time-after-pentecost-sunday-19 -`class-2` · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14 +**26** 19th Sunday after Pentecost +`class-2` · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14 -**27** sts-cosmas-damian -`class-3` · red · Ep. Wis 5:16-20 · Ev. Luke 6:17-23 +**27** Sts. Cosmas & Damian +`class-3` · red · Epistle Wis 5:16-20 · Gospel Luke 6:17-23 -**28** wenceslaus -`class-3` · red · Ep. Wis 10:10-14 · Ev. Matt 10:34-42 +**28** St. Wenceslaus +`class-3` · red · Epistle Wis 10:10-14 · Gospel Matt 10:34-42 -**29** dedication-of-st-michael-the-archangel -`class-1` · white · Ep. Rev 1:1-5 · Ev. Matt 18:1-10 +**29** Dedication of St. Michael the Archangel +`class-1` · white · Epistle Rev 1:1-5 · Gospel Matt 18:1-10 -**30** jerome -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**30** St. Jerome +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 ## October -**1** ef-time-after-pentecost-19-friday -`class-4` · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14 +**1** Friday of the 19th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14 -- Com. remigius +- Commemoration remigius -**2** holy-guardian-angels -`class-3` · white · Ep. Exod 23:20-23 · Ev. Matt 18:1-10 +**2** Holy Guardian Angels +`class-3` · white · Epistle Exod 23:20-23 · Gospel Matt 18:1-10 -**3** ef-time-after-pentecost-sunday-20 -`class-2` · green · Ep. Eph 5:15-21 · Ev. John 4:46-53 +**3** 20th Sunday after Pentecost +`class-2` · green · Epistle Eph 5:15-21 · Gospel John 4:46-53 -**4** francis-of-assisi -`class-3` · white · Ep. Gal 6:14-18 · Ev. Matt 11:25-30 +**4** St. Francis of Assisi +`class-3` · white · Epistle Gal 6:14-18 · Gospel Matt 11:25-30 -**5** ef-time-after-pentecost-20-tuesday -`class-4` · green · Ep. Eph 5:15-21 · Ev. John 4:46-53 +**5** Tuesday of the 20th Week of the Time after Pentecost +`class-4` · green · Epistle Eph 5:15-21 · Gospel John 4:46-53 -- Com. placid-companions +- Commemoration placid-companions -**6** bruno -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**6** St. Bruno +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**7** our-lady-of-the-rosary -`class-2` · white · Ep. Prov 8:22-24, 32-35. · Ev. Luke 1:26-38 +**7** Our Lady of the Rosary +`class-2` · white · Epistle Prov 8:22-24, 32-35. · Gospel Luke 1:26-38 -- Com. mark-i +- Commemoration mark-i -**8** bridget-of-sweden -`class-3` · white · Ep. 1 Tim. 5:3-10. · Ev. Matt 13:44-52. +**8** St. Bridget of Sweden +`class-3` · white · Epistle 1 Tim. 5:3-10. · Gospel Matt 13:44-52. -- Com. sergio-baccho-marcello-and-apulejo-martyrs +- Commemoration sergio-baccho-marcello-and-apulejo-martyrs -**9** john-leonardi -`class-3` · white · Ep. 2 Cor 4:1-6; 4:15-18 · Ev. Luke 10:1-9 +**9** St. John Leonardi +`class-3` · white · Epistle 2 Cor 4:1-6; 4:15-18 · Gospel Luke 10:1-9 -- Com. dionysius-and-companions +- Commemoration dionysius-and-companions -**10** ef-time-after-pentecost-sunday-21 -`class-2` · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35 +**10** 21st Sunday after Pentecost +`class-2` · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35 -**11** maternity-of-the-blessed-virgin-mary -`class-2` · white · Ep. Sir 24:23-31 · Ev. Luke 2:43-51 +**11** Maternity of the Blessed Virgin Mary +`class-2` · white · Epistle Sir 24:23-31 · Gospel Luke 2:43-51 -**12** ef-time-after-pentecost-21-tuesday -`class-4` · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35 +**12** Tuesday of the 21st Week of the Time after Pentecost +`class-4` · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35 -**13** edward -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**13** St. Edward +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -**14** callistus-i -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**14** St. Callistus I +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -**15** teresa-of-avila -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**15** St. Teresa of Avila +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -**16** hedwig -`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**16** St. Hedwig +`class-3` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -**17** ef-time-after-pentecost-sunday-22 -`class-2` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 +**17** 22nd Sunday after Pentecost +`class-2` · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21 -**18** luke-the-evangelist -`class-2` · red · Ep. 2 Cor. 8:16-24 · Ev. Luke 10:1-9 +**18** St. Luke the Evangelist +`class-2` · red · Epistle 2 Cor. 8:16-24 · Gospel Luke 10:1-9 -**19** peter-of-alcantara -`class-3` · white · Ep. Phil 3:7-12 · Ev. Luke 12:32-34 +**19** St. Peter of Alcantara +`class-3` · white · Epistle Phil 3:7-12 · Gospel Luke 12:32-34 -**20** john-cantius -`class-3` · white · Ep. James 2:12-17 · Ev. Luke 12:35-40 +**20** St. John Cantius +`class-3` · white · Epistle James 2:12-17 · Gospel Luke 12:35-40 -**21** ef-time-after-pentecost-22-thursday -`class-4` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 +**21** Thursday of the 22nd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21 -- Com. hilarion +- Commemoration hilarion -- Com. ursula-and-companions +- Commemoration ursula-and-companions -**22** ef-time-after-pentecost-22-friday -`class-4` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 +**22** Friday of the 22nd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21 -**23** anthony-mary-claret -`class-3` · white · Ep. Heb 7:23-27 · Ev. Matt 24:42-47 +**23** St. Anthony Mary Claret +`class-3` · white · Epistle Heb 7:23-27 · Gospel Matt 24:42-47 -**24** ef-time-after-pentecost-sunday-23 -`class-2` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 +**24** 23rd Sunday after Pentecost +`class-2` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 -**25** ef-time-after-pentecost-23-monday -`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 +**25** Monday of the 23rd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 -- Com. sts-chrysanthus-daria +- Commemoration sts-chrysanthus-daria -**26** ef-time-after-pentecost-23-tuesday -`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 +**26** Tuesday of the 23rd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 -- Com. evaristus +- Commemoration evaristus -**27** ef-time-after-pentecost-23-wednesday -`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 +**27** Wednesday of the 23rd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 -**28** sts-simon-jude -`class-2` · red · Ep. Eph. 4:7-13. · Ev. John 15:17-25 +**28** Sts. Simon & Jude +`class-2` · red · Epistle Eph. 4:7-13. · Gospel John 15:17-25 -**29** ef-time-after-pentecost-23-friday -`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 +**29** Friday of the 23rd Week of the Time after Pentecost +`class-4` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 -**30** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**30** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -**31** ef-christ-the-king -`class-1` · white · Ep. Col 1:12-20. · Ev. John 18:33-37 +**31** Christ the King +`class-1` · white · Epistle Col 1:12-20. · Gospel John 18:33-37 ## November -**1** all-saints -`class-1` · white · Ep. Apoc 7:2-12 · Ev. Matt 5:1-12 +**1** All Saints +`class-1` · white · Epistle Apoc 7:2-12 · Gospel Matt 5:1-12 -**2** commemoration-of-all-souls -`class-1` · black · Ep. 1 Cor. 15:51-57 · Ev. John 5:25-29 +**2** Commemoration of All Souls +`class-1` · black · Epistle 1 Cor. 15:51-57 · Gospel John 5:25-29 -**3** ef-time-after-pentecost-24-wednesday -`class-4` · green · Ep. Col 1:12-20. · Ev. John 18:33-37 +**3** Wednesday of the 24th Week of the Time after Pentecost +`class-4` · green · Epistle Col 1:12-20. · Gospel John 18:33-37 -**4** charles-borromeo -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 +**4** St. Charles Borromeo +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Matt 25:14-23 -- Com. sts-vitalis-and-agricola-martyrs +- Commemoration sts-vitalis-and-agricola-martyrs -**5** ef-time-after-pentecost-24-friday -`class-4` · green · Ep. Col 1:12-20. · Ev. John 18:33-37 +**5** Friday of the 24th Week of the Time after Pentecost +`class-4` · green · Epistle Col 1:12-20. · Gospel John 18:33-37 -**6** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**6** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -**7** ef-time-after-epiphany-sunday-5 -`class-2` · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30 +**7** 5th Sunday after Epiphany +`class-2` · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30 -**8** ef-time-after-pentecost-25-monday -`class-4` · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30 +**8** Monday of the 25th Week of the Time after Pentecost +`class-4` · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30 -- Com. four-holy-crowned-martyrs +- Commemoration four-holy-crowned-martyrs -**9** dedication-of-the-archbasilica-of-our-holy-savior -`class-2` · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10 +**9** Dedication of the Archbasilica of Our Holy Savior +`class-2` · white · Epistle Rev 21:2-5 · Gospel Luke 19:1-10 -- Com. theodore +- Commemoration theodore -**10** andrew-avellino -`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 +**10** St. Andrew Avellino +`class-3` · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40 -- Com. sts-tryphonis-respicii-et-nymphae +- Commemoration sts-tryphonis-respicii-et-nymphae -**11** martin-of-tours -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 11:33-36 +**11** St. Martin of Tours +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Luke 11:33-36 -- Com. menna +- Commemoration menna -**12** martin-i -`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**12** St. Martin I +`class-3` · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -**13** didacus -`class-3` · white · Ep. 1 Cor 4:9-14 · Ev. Luke 12:32-34 +**13** St. Didacus +`class-3` · white · Epistle 1 Cor 4:9-14 · Gospel Luke 12:32-34 -**14** ef-time-after-epiphany-sunday-6 -`class-2` · green · Ep. 1 Thess 1:2-10 · Ev. Matt 13:31-35 +**14** 6th Sunday after Epiphany +`class-2` · green · Epistle 1 Thess 1:2-10 · Gospel Matt 13:31-35 -**15** albert-the-great -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**15** St. Albert the Great +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -**16** gertrude-the-great -`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. +**16** St. Gertrude the Great +`class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. -**17** gregory-the-wonderworker -`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Mark 11:22-24 +**17** St. Gregory the Wonderworker +`class-3` · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Mark 11:22-24 -**18** dedication-of-the-basilicas-of-sts-peter-paul -`class-3` · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10 +**18** Dedication of the Basilicas of Sts. Peter & Paul +`class-3` · white · Epistle Rev 21:2-5 · Gospel Luke 19:1-10 -**19** elizabeth-of-hungary -`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. +**19** St. Elizabeth of Hungary +`class-3` · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52. -- Com. pontian +- Commemoration pontian -**20** felix-of-valois -`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 +**20** St. Felix of Valois +`class-3` · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34 -**21** ef-time-after-pentecost-sunday-24 -`class-2` · green · Ep. Col 1:9-14 · Ev. Matt 24:15-35 +**21** 24th and Last Sunday after Pentecost +`class-2` · green · Epistle Col 1:9-14 · Gospel Matt 24:15-35 -**22** cecilia -`class-3` · red · Ep. Sir 51:13-17. · Ev. Matt 25:1-13. +**22** St. Cecilia +`class-3` · red · Epistle Sir 51:13-17. · Gospel Matt 25:1-13. -**23** clement-i -`class-3` · red · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 16:13-19 +**23** St. Clement I +`class-3` · red · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 16:13-19 -- Com. felicity +- Commemoration felicity -**24** john-of-the-cross -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**24** St. John of the Cross +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. chrysogonus +- Commemoration chrysogonus -**25** catherine-of-alexandria -`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. +**25** St. Catherine of Alexandria +`class-3` · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13. -**26** sylvester -`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29. +**26** St. Sylvester +`class-3` · white · Epistle Ecclus 45:1-6 · Gospel Matt 19:27-29. -- Com. peter-of-alexandria +- Commemoration peter-of-alexandria -**27** Officium sanctae Mariae in sabbato -`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 +**27** Our Lady's Saturday Office +`class-4` · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28 -**28** ef-advent-sunday-1 -`class-1` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 +**28** 1st Sunday of Advent +`class-1` · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33 -**29** ef-advent-1-monday -`class-3` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 +**29** Monday of the 1st Week of Advent +`class-3` · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33 -- Com. saturninus +- Commemoration saturninus -**30** andrew -`class-2` · red · Ep. Rom 10:10-18 · Ev. Matt 4:18-22 +**30** St. Andrew +`class-2` · red · Epistle Rom 10:10-18 · Gospel Matt 4:18-22 -- Com. ef-advent-1-tuesday +- Commemoration Tuesday of the 1st Week of Advent ## December -**1** ef-advent-1-wednesday -`class-3` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 +**1** Wednesday of the 1st Week of Advent +`class-3` · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33 -**2** vivian -`class-3` · red · Ep. Sir 51:13-17. · Ev. Matt 13:44-52. +**2** St. Vivian +`class-3` · red · Epistle Sir 51:13-17. · Gospel Matt 13:44-52. -- Com. ef-advent-1-thursday +- Commemoration Thursday of the 1st Week of Advent -**3** francis-xavier -`class-3` · white · Ep. Rom 10:10-18 · Ev. Mark 16:15-18 +**3** St. Francis Xavier +`class-3` · white · Epistle Rom 10:10-18 · Gospel Mark 16:15-18 -- Com. ef-advent-1-friday +- Commemoration Friday of the 1st Week of Advent -**4** peter-chrysologus -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**4** St. Peter Chrysologus +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. ef-advent-1-saturday +- Commemoration Saturday of the 1st Week of Advent -- Com. barbara +- Commemoration barbara -**5** ef-advent-sunday-2 -`class-1` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 +**5** 2nd Sunday of Advent +`class-1` · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10 -**6** nicholas -`class-3` · white · Ep. Heb 13:7-17 · Ev. Matt 25:14-23 +**6** St. Nicholas +`class-3` · white · Epistle Heb 13:7-17 · Gospel Matt 25:14-23 -- Com. ef-advent-2-monday +- Commemoration Monday of the 2nd Week of Advent -**7** ambrose -`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 +**7** St. Ambrose +`class-3` · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19 -- Com. ef-advent-2-tuesday +- Commemoration Tuesday of the 2nd Week of Advent -**8** immaculate-conception-of-the-blessed-virgin-mary -`class-1` · white · Ep. Prov 8:22-35 · Ev. Luke 1:26-28 +**8** Immaculate Conception of the Blessed Virgin Mary +`class-1` · white · Epistle Prov 8:22-35 · Gospel Luke 1:26-28 -- Com. ef-advent-2-wednesday +- Commemoration Wednesday of the 2nd Week of Advent -**9** ef-advent-2-thursday -`class-3` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 +**9** Thursday of the 2nd Week of Advent +`class-3` · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10 -**10** ef-advent-2-friday -`class-3` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 +**10** Friday of the 2nd Week of Advent +`class-3` · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10 -- Com. melchiades +- Commemoration melchiades -**11** damasus-i -`class-3` · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 +**11** St. Damasus I +`class-3` · white · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19 -- Com. ef-advent-2-saturday +- Commemoration Saturday of the 2nd Week of Advent -**12** ef-advent-sunday-3 -`class-1` · rose · Ep. Phil 4:4-7 · Ev. John 1:19-28 +**12** 3rd Sunday of Advent +`class-1` · rose · Epistle Phil 4:4-7 · Gospel John 1:19-28 -**13** lucy -`class-3` · red · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 13:44-52. +**13** St. Lucy +`class-3` · red · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 13:44-52. -- Com. ef-advent-3-monday +- Commemoration Monday of the 3rd Week of Advent -**14** ef-advent-3-tuesday -`class-3` · violet · Ep. Phil 4:4-7 · Ev. John 1:19-28 +**14** Tuesday of the 3rd Week of Advent +`class-3` · violet · Epistle Phil 4:4-7 · Gospel John 1:19-28 -**15** ef-advent-ember-wed -`class-2` · violet · Ep. Isa 7:10-15 · Ev. Luke 1:26-38 +**15** Advent Ember Wednesday +`class-2` · violet · Epistle Isa 7:10-15 · Gospel Luke 1:26-38 -**16** eusebius -`class-3` · red · Ep. 2 Cor. 1:3-7 · Ev. Matt 16:24-27. +**16** St. Eusebius +`class-3` · red · Epistle 2 Cor. 1:3-7 · Gospel Matt 16:24-27. -- Com. ef-advent-3-thursday +- Commemoration Thursday of the 3rd Week of Advent -**17** ef-advent-ember-fri -`class-2` · violet · Ep. Isa 11:1-5 · Ev. Luke 1:39-47 +**17** Advent Ember Friday +`class-2` · violet · Epistle Isa 11:1-5 · Gospel Luke 1:39-47 -**18** ef-advent-ember-sat -`class-2` · violet · Ep. 2 Thess 2:1-8 · Ev. Luke 3:1-6 +**18** Advent Ember Saturday +`class-2` · violet · Epistle 2 Thess 2:1-8 · Gospel Luke 3:1-6 -**19** ef-advent-sunday-4 -`class-1` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 +**19** 4th Sunday of Advent +`class-1` · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6 -**20** ef-advent-4-monday -`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 +**20** Monday of the 4th Week of Advent +`class-2` · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6 -**21** thomas -`class-2` · red · Ep. Eph 2:19-22 · Ev. John 20:24-29 +**21** St. Thomas +`class-2` · red · Epistle Eph 2:19-22 · Gospel John 20:24-29 -- Com. ef-advent-4-tuesday +- Commemoration Tuesday of the 4th Week of Advent -**22** ef-advent-4-wednesday -`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 +**22** Wednesday of the 4th Week of Advent +`class-2` · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6 -**23** ef-advent-4-thursday -`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 +**23** Thursday of the 4th Week of Advent +`class-2` · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6 -**24** ef-nativity-vigil -`class-1` · violet · Ep. Rom 1:1-6 · Ev. Matt 1:18-21 +**24** Vigil of the Nativity (Christmas Eve) +`class-1` · violet · Epistle Rom 1:1-6 · Gospel Matt 1:18-21 -**25** ef-nativity -`class-1` · white · Ep. Heb 1:1-12 · Ev. John 1:1-14 +**25** The Nativity of Our Lord (Christmas) +`class-1` · white · Epistle Heb 1:1-12 · Gospel John 1:1-14 -**26** ef-christmas-sunday-0 -`class-2` · white · Ep. Gal 4:1-7 · Ev. Luke 2:33-40 +**26** Sunday within the Octave of the Nativity +`class-2` · white · Epistle Gal 4:1-7 · Gospel Luke 2:33-40 -- Com. stephen +- Commemoration St. Stephen -**27** john-the-evangelist -`class-2` · white · Ep. Ecclus 15:1-6 · Ev. John 21:19-24 +**27** St. John the Evangelist +`class-2` · white · Epistle Ecclus 15:1-6 · Gospel John 21:19-24 -- Com. ef-nativity-octave-day-3 +- Commemoration ef-nativity-octave-day-3 -**28** holy-innocents -`class-2` · red · Ep. Apoc 14:1-5 · Ev. Matt 2:13-18 +**28** Holy Innocents +`class-2` · red · Epistle Apoc 14:1-5 · Gospel Matt 2:13-18 -- Com. ef-nativity-octave-day-4 +- Commemoration ef-nativity-octave-day-4 -**29** ef-nativity-octave-day-5 -`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 +**29** 5th Day within the Octave of the Nativity +`class-2` · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20 -- Com. thomas-becket +- Commemoration thomas-becket -**30** ef-nativity-octave-day-6 -`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 +**30** 6th Day within the Octave of the Nativity +`class-2` · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20 -**31** ef-nativity-octave-day-7 -`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 +**31** 7th Day within the Octave of the Nativity +`class-2` · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20 -- Com. silvester +- Commemoration silvester diff --git a/test/golden/ordo-2027.ms b/test/golden/ordo-2027.ms index daeee24..2c7a6c7 100644 --- a/test/golden/ordo-2027.ms +++ b/test/golden/ordo-2027.ms @@ -1,2389 +1,2392 @@ .\" colitur ordo booklet -- groff ms. flavour: groff .\" Build: colitur table --year 2027 --template ordo.ms | groff -ms -Tpdf > ordo.pdf .\" -.\" Day label falls back to the slug when the day carries no Latin name (most -.\" temporal days, and most sanctoral entries, which are Latin-less in the -.\" shipped data) -- see ordo.tex's own comment for why the fallback is -.\" written as a name-section wrapping a plain var and its inverse, rather -.\" than a single dotted lookup and its inverse. +.\" The observed day's own display name is a PLAIN resolved string +.\" (View.of_days, Task 5), not a lang-keyed object -- there is no +.\" dotted-la-with-slug-fallback idiom to write here any more; a +.\" commemoration entry carries its own resolved display name too, so a +.\" commemoration line no longer prints the bare slug. Every fixed label +.\" (Ordo, Epistle, Gospel, Commemoration) comes from the view's term +.\" vocabulary rather than being written into this file, so a translated +.\" booklet needs no template edit. .TL -ORDO 2027 \(bu ef +Ordo 2027 \(bu ef .SH -Ianuarius +January .LP .IP "1" 4 -ef-circumcision +The Octave Day of the Nativity .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Titus 2:11-15\s+2 +\s-2Epistle Titus 2:11-15\s+2 .br -\s-2Ev. Luke 2:21\s+2 +\s-2Gospel Luke 2:21\s+2 .IP "2" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Titus 3:4-7\s+2 +\s-2Epistle Titus 3:4-7\s+2 .br -\s-2Ev. Luke 2:15-20\s+2 +\s-2Gospel Luke 2:15-20\s+2 .IP "3" 4 -Sanctissimi Nominis Iesu +The Holy Name of Jesus .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Acts 4:8-12\s+2 +\s-2Epistle Acts 4:8-12\s+2 .br -\s-2Ev. Luke 2:21\s+2 +\s-2Gospel Luke 2:21\s+2 .IP "4" 4 -ef-christmas-1-monday +Monday before Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Titus 2:11-15\s+2 +\s-2Epistle Titus 2:11-15\s+2 .br -\s-2Ev. Luke 2:21\s+2 +\s-2Gospel Luke 2:21\s+2 .IP "5" 4 -ef-christmas-1-tuesday +Tuesday before Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Titus 2:11-15\s+2 +\s-2Epistle Titus 2:11-15\s+2 .br -\s-2Ev. Luke 2:21\s+2 +\s-2Gospel Luke 2:21\s+2 .br -\s-2Com. telesphorus-pope-and-martyr\s+2 +\s-2Commemoration telesphorus-pope-and-martyr\s+2 .IP "6" 4 -ef-epiphany +The Epiphany of Our Lord .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Isa 60:1-6\s+2 +\s-2Epistle Isa 60:1-6\s+2 .br -\s-2Ev. Matt 2:1-12\s+2 +\s-2Gospel Matt 2:1-12\s+2 .IP "7" 4 -ef-christmas-2-thursday +Thursday after Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Isa 60:1-6\s+2 +\s-2Epistle Isa 60:1-6\s+2 .br -\s-2Ev. Matt 2:1-12\s+2 +\s-2Gospel Matt 2:1-12\s+2 .IP "8" 4 -ef-christmas-2-friday +Friday after Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Isa 60:1-6\s+2 +\s-2Epistle Isa 60:1-6\s+2 .br -\s-2Ev. Matt 2:1-12\s+2 +\s-2Gospel Matt 2:1-12\s+2 .IP "9" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Titus 3:4-7\s+2 +\s-2Epistle Titus 3:4-7\s+2 .br -\s-2Ev. Luke 2:15-20\s+2 +\s-2Gospel Luke 2:15-20\s+2 .IP "10" 4 -Sanctae Familiae Iesu, Mariae, Ioseph +The Holy Family .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Col 3:12-17\s+2 +\s-2Epistle Col 3:12-17\s+2 .br -\s-2Ev. Luke 2:42-52\s+2 +\s-2Gospel Luke 2:42-52\s+2 .IP "11" 4 -ef-time-after-epiphany-1-monday +Monday of the 1st Week of the Time after Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Rom 12:1-5\s+2 +\s-2Epistle Rom 12:1-5\s+2 .br -\s-2Ev. Luke 2:42-52\s+2 +\s-2Gospel Luke 2:42-52\s+2 .br -\s-2Com. hyginus-pope-and-martyr\s+2 +\s-2Commemoration hyginus-pope-and-martyr\s+2 .IP "12" 4 -ef-time-after-epiphany-1-tuesday +Tuesday of the 1st Week of the Time after Epiphany .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Rom 12:1-5\s+2 +\s-2Epistle Rom 12:1-5\s+2 .br -\s-2Ev. Luke 2:42-52\s+2 +\s-2Gospel Luke 2:42-52\s+2 .IP "13" 4 -commemoration-of-the-baptism-of-the-lord +Commemoration of the Baptism of the Lord .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Isa 60:1-6\s+2 +\s-2Epistle Isa 60:1-6\s+2 .br -\s-2Ev. John 1:29-34\s+2 +\s-2Gospel John 1:29-34\s+2 .IP "14" 4 -hilary +St. Hilary .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. felicis\s+2 +\s-2Commemoration felicis\s+2 .IP "15" 4 -paul-the-first-hermit +St. Paul, the First Hermit .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Phil 3:7-12\s+2 +\s-2Epistle Phil 3:7-12\s+2 .br -\s-2Ev. Matt 11:25-30\s+2 +\s-2Gospel Matt 11:25-30\s+2 .br -\s-2Com. maur-abbot\s+2 +\s-2Commemoration maur-abbot\s+2 .IP "16" 4 -marcellus-i +St. Marcellus I .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "17" 4 -ef-time-after-epiphany-sunday-2 +2nd Sunday after Epiphany .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Rom 12:6-16\s+2 +\s-2Epistle Rom 12:6-16\s+2 .br -\s-2Ev. John 2:1-11\s+2 +\s-2Gospel John 2:1-11\s+2 .IP "18" 4 -ef-time-after-epiphany-2-monday +Monday of the 2nd Week of the Time after Epiphany .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 12:6-16\s+2 +\s-2Epistle Rom 12:6-16\s+2 .br -\s-2Ev. John 2:1-11\s+2 +\s-2Gospel John 2:1-11\s+2 .br -\s-2Com. prisca\s+2 +\s-2Commemoration prisca\s+2 .IP "19" 4 -ef-time-after-epiphany-2-tuesday +Tuesday of the 2nd Week of the Time after Epiphany .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 12:6-16\s+2 +\s-2Epistle Rom 12:6-16\s+2 .br -\s-2Ev. John 2:1-11\s+2 +\s-2Gospel John 2:1-11\s+2 .br -\s-2Com. canute-martyr\s+2 +\s-2Commemoration canute-martyr\s+2 .br -\s-2Com. sts-marius-martha-audifax-abachum\s+2 +\s-2Commemoration sts-marius-martha-audifax-abachum\s+2 .IP "20" 4 -sts-fabian-sebastian +Sts. Fabian & Sebastian .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Heb 11:33-39\s+2 +\s-2Epistle Heb 11:33-39\s+2 .br -\s-2Ev. Luke 6:17-23\s+2 +\s-2Gospel Luke 6:17-23\s+2 .IP "21" 4 -agnes +St. Agnes .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Sir 51:1-8; 51:12\s+2 +\s-2Epistle Sir 51:1-8; 51:12\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "22" 4 -sts-vincent-anastasius +Sts. Vincent & Anastasius .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 3:1-8\s+2 +\s-2Epistle Wis 3:1-8\s+2 .br -\s-2Ev. Luke 21:9-19\s+2 +\s-2Gospel Luke 21:9-19\s+2 .IP "23" 4 -raymond-of-pe-afort +St. Raymond of Peñafort .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .br -\s-2Com. emerentiana\s+2 +\s-2Commemoration emerentiana\s+2 .IP "24" 4 -ef-septuagesima-sunday-1 +Septuagesima Sunday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 9:24-27; 10:1-5\s+2 +\s-2Epistle 1 Cor. 9:24-27; 10:1-5\s+2 .br -\s-2Ev. Matt 20:1-16\s+2 +\s-2Gospel Matt 20:1-16\s+2 .IP "25" 4 -conversion-of-st-paul +Conversion of St. Paul .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Acts 9:1-22\s+2 +\s-2Epistle Acts 9:1-22\s+2 .br -\s-2Ev. Matt 19:27-29.\s+2 +\s-2Gospel Matt 19:27-29.\s+2 .br -\s-2Com. peter\s+2 +\s-2Commemoration peter\s+2 .IP "26" 4 -polycarp +St. Polycarp .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 John 3:10-16\s+2 +\s-2Epistle 1 John 3:10-16\s+2 .br -\s-2Ev. Matt 10:26-32.\s+2 +\s-2Gospel Matt 10:26-32.\s+2 .IP "27" 4 -john-chrysostom +St. John Chrysostom .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "28" 4 -peter-nolasco +St. Peter Nolasco .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor. 4:9-14\s+2 +\s-2Epistle 1 Cor. 4:9-14\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .br -\s-2Com. agnes-secundo\s+2 +\s-2Commemoration agnes-secundo\s+2 .IP "29" 4 -francis-de-sales +St. Francis de Sales .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "30" 4 -martina +St. Martina .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Sir 51:1-8; 51:12\s+2 +\s-2Epistle Sir 51:1-8; 51:12\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "31" 4 -ef-septuagesima-sunday-2 +Sexagesima Sunday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 2 Cor. 11:19-33; 12:1-9\s+2 +\s-2Epistle 2 Cor. 11:19-33; 12:1-9\s+2 .br -\s-2Ev. Luke 8:4-15\s+2 +\s-2Gospel Luke 8:4-15\s+2 .SH -Februarius +February .LP .IP "1" 4 -ignatius-of-antioch +St. Ignatius of Antioch .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Rom 8:35-39\s+2 +\s-2Epistle Rom 8:35-39\s+2 .br -\s-2Ev. John 12:24-26\s+2 +\s-2Gospel John 12:24-26\s+2 .IP "2" 4 -purification-of-the-blessed-virgin-mary +Purification of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Mal 3:1-4\s+2 +\s-2Epistle Mal 3:1-4\s+2 .br -\s-2Ev. Luke 2:22-32\s+2 +\s-2Gospel Luke 2:22-32\s+2 .IP "3" 4 -ef-septuagesima-2-wednesday +Wednesday of the 2nd Week of Septuagesimatide .br \s-2class-4 \(bu violet\s+2 .br -\s-2Ep. 2 Cor. 11:19-33; 12:1-9\s+2 +\s-2Epistle 2 Cor. 11:19-33; 12:1-9\s+2 .br -\s-2Ev. Luke 8:4-15\s+2 +\s-2Gospel Luke 8:4-15\s+2 .br -\s-2Com. blaise\s+2 +\s-2Commemoration blaise\s+2 .IP "4" 4 -andrew-corsini +St. Andrew Corsini .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Matt 25:14-23\s+2 +\s-2Gospel Matt 25:14-23\s+2 .IP "5" 4 -agatha +St. Agatha .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Cor. 1:26-31\s+2 +\s-2Epistle 1 Cor. 1:26-31\s+2 .br -\s-2Ev. Matt 19:3-12.\s+2 +\s-2Gospel Matt 19:3-12.\s+2 .IP "6" 4 -titus +St. Titus .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .br -\s-2Com. dorothy\s+2 +\s-2Commemoration dorothy\s+2 .IP "7" 4 -ef-septuagesima-sunday-3 +Quinquagesima Sunday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 13:1-13\s+2 +\s-2Epistle 1 Cor. 13:1-13\s+2 .br -\s-2Ev. Luke 18:31-43\s+2 +\s-2Gospel Luke 18:31-43\s+2 .IP "8" 4 -john-of-matha +St. John of Matha .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "9" 4 -cyril-of-alexandria +St. Cyril of Alexandria .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. appollonia\s+2 +\s-2Commemoration appollonia\s+2 .IP "10" 4 -ef-ash-wednesday +Ash Wednesday .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Joel 2:12-19\s+2 +\s-2Epistle Joel 2:12-19\s+2 .br -\s-2Ev. Matt 6:16-21\s+2 +\s-2Gospel Matt 6:16-21\s+2 .IP "11" 4 -ef-lent-after-ashes-thursday +Thursday after Ash Wednesday .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa 38:1-6\s+2 +\s-2Epistle Isa 38:1-6\s+2 .br -\s-2Ev. Matt 8:5-13\s+2 +\s-2Gospel Matt 8:5-13\s+2 .br -\s-2Com. our-lady-of-lourdes\s+2 +\s-2Commemoration Our Lady of Lourdes\s+2 .IP "12" 4 -ef-lent-after-ashes-friday +Friday after Ash Wednesday .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa 58:1-9\s+2 +\s-2Epistle Isa 58:1-9\s+2 .br -\s-2Ev. Matt 5:43-48; 6:1-4\s+2 +\s-2Gospel Matt 5:43-48; 6:1-4\s+2 .br -\s-2Com. seven-holy-servite-founders\s+2 +\s-2Commemoration Seven Holy Servite Founders\s+2 .IP "13" 4 -ef-lent-after-ashes-saturday +Saturday after Ash Wednesday .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa 58:9-14\s+2 +\s-2Epistle Isa 58:9-14\s+2 .br -\s-2Ev. Mark 6:47-56\s+2 +\s-2Gospel Mark 6:47-56\s+2 .IP "14" 4 -ef-lent-sunday-1 +1st Sunday of Lent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. 2 Cor. 6:1-10\s+2 +\s-2Epistle 2 Cor. 6:1-10\s+2 .br -\s-2Ev. Matt 4:1-11\s+2 +\s-2Gospel Matt 4:1-11\s+2 .IP "15" 4 -ef-lent-1-monday +Monday of the 1st Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Ezech 34:11-16\s+2 +\s-2Epistle Ezech 34:11-16\s+2 .br -\s-2Ev. Matt 25:31-46\s+2 +\s-2Gospel Matt 25:31-46\s+2 .br -\s-2Com. sts-faustinus-jovita\s+2 +\s-2Commemoration sts-faustinus-jovita\s+2 .IP "16" 4 -ef-lent-1-tuesday +Tuesday of the 1st Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa 55:6-11\s+2 +\s-2Epistle Isa 55:6-11\s+2 .br -\s-2Ev. Matt 21:10-17\s+2 +\s-2Gospel Matt 21:10-17\s+2 .IP "17" 4 -ef-lent-ember-wed +Lenten Ember Wednesday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 3 Kgs. 19:3-8\s+2 +\s-2Epistle 3 Kgs. 19:3-8\s+2 .br -\s-2Ev. Matt 12:38-50\s+2 +\s-2Gospel Matt 12:38-50\s+2 .IP "18" 4 -ef-lent-1-thursday +Thursday of the 1st Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Ezech 18:1-9\s+2 +\s-2Epistle Ezech 18:1-9\s+2 .br -\s-2Ev. Matt 15:21-28\s+2 +\s-2Gospel Matt 15:21-28\s+2 .br -\s-2Com. simeon\s+2 +\s-2Commemoration simeon\s+2 .IP "19" 4 -ef-lent-ember-fri +Lenten Ember Friday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Ezech 18:20-28\s+2 +\s-2Epistle Ezech 18:20-28\s+2 .br -\s-2Ev. John 5:1-15\s+2 +\s-2Gospel John 5:1-15\s+2 .IP "20" 4 -ef-lent-ember-sat +Lenten Ember Saturday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Thess. 5:14-23\s+2 +\s-2Epistle 1 Thess. 5:14-23\s+2 .br -\s-2Ev. Matt 17:1-9\s+2 +\s-2Gospel Matt 17:1-9\s+2 .IP "21" 4 -ef-lent-sunday-2 +2nd Sunday of Lent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. 1 Thess. 4:1-7\s+2 +\s-2Epistle 1 Thess. 4:1-7\s+2 .br -\s-2Ev. Matt 17:1-9\s+2 +\s-2Gospel Matt 17:1-9\s+2 .IP "22" 4 -chair-of-st-peter +Chair of St. Peter .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. 1 Pet 1:1-7\s+2 +\s-2Epistle 1 Pet 1:1-7\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .br -\s-2Com. ef-lent-2-monday\s+2 +\s-2Commemoration Monday of the 2nd Week of Lent\s+2 .br -\s-2Com. paul\s+2 +\s-2Commemoration paul\s+2 .IP "23" 4 -ef-lent-2-tuesday +Tuesday of the 2nd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 3 Kings 17:8-16\s+2 +\s-2Epistle 3 Kings 17:8-16\s+2 .br -\s-2Ev. Matt 23:1-12\s+2 +\s-2Gospel Matt 23:1-12\s+2 .br -\s-2Com. peter-damien\s+2 +\s-2Commemoration St. Peter Damien\s+2 .IP "24" 4 -matthias +St. Matthias .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Acts 1:15-26\s+2 +\s-2Epistle Acts 1:15-26\s+2 .br -\s-2Ev. Matt 11:25-30\s+2 +\s-2Gospel Matt 11:25-30\s+2 .br -\s-2Com. ef-lent-2-wednesday\s+2 +\s-2Commemoration Wednesday of the 2nd Week of Lent\s+2 .IP "25" 4 -ef-lent-2-thursday +Thursday of the 2nd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Jer 17:5-10\s+2 +\s-2Epistle Jer 17:5-10\s+2 .br -\s-2Ev. Luke 16:19-31\s+2 +\s-2Gospel Luke 16:19-31\s+2 .IP "26" 4 -ef-lent-2-friday +Friday of the 2nd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Gen 37:6-22\s+2 +\s-2Epistle Gen 37:6-22\s+2 .br -\s-2Ev. Matt 21:33-46\s+2 +\s-2Gospel Matt 21:33-46\s+2 .IP "27" 4 -ef-lent-2-saturday +Saturday of the 2nd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Gen 27:6-40\s+2 +\s-2Epistle Gen 27:6-40\s+2 .br -\s-2Ev. Luke 15:11-32\s+2 +\s-2Gospel Luke 15:11-32\s+2 .br -\s-2Com. gabriel-of-our-lady-of-sorrows\s+2 +\s-2Commemoration St. Gabriel of Our Lady of Sorrows\s+2 .IP "28" 4 -ef-lent-sunday-3 +3rd Sunday of Lent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Eph 5:1-9\s+2 +\s-2Epistle Eph 5:1-9\s+2 .br -\s-2Ev. Luke 11:14-28\s+2 +\s-2Gospel Luke 11:14-28\s+2 .SH -Martius +March .LP .IP "1" 4 -ef-lent-3-monday +Monday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 4 Kings 5:1-15\s+2 +\s-2Epistle 4 Kings 5:1-15\s+2 .br -\s-2Ev. Luke 4:23-30\s+2 +\s-2Gospel Luke 4:23-30\s+2 .IP "2" 4 -ef-lent-3-tuesday +Tuesday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 4 Kings 4:1-7\s+2 +\s-2Epistle 4 Kings 4:1-7\s+2 .br -\s-2Ev. Matt 18:15-22\s+2 +\s-2Gospel Matt 18:15-22\s+2 .IP "3" 4 -ef-lent-3-wednesday +Wednesday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Ex 20:12-24\s+2 +\s-2Epistle Ex 20:12-24\s+2 .br -\s-2Ev. Matt 15:1-20\s+2 +\s-2Gospel Matt 15:1-20\s+2 .IP "4" 4 -ef-lent-3-thursday +Thursday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Jer 7:1-7\s+2 +\s-2Epistle Jer 7:1-7\s+2 .br -\s-2Ev. Luke 4:38-44.\s+2 +\s-2Gospel Luke 4:38-44.\s+2 .br -\s-2Com. casimir\s+2 +\s-2Commemoration St. Casimir\s+2 .br -\s-2Com. lucius\s+2 +\s-2Commemoration lucius\s+2 .IP "5" 4 -ef-lent-3-friday +Friday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Num 20:1, 3; 6-13.\s+2 +\s-2Epistle Num 20:1, 3; 6-13.\s+2 .br -\s-2Ev. John 4:5-42\s+2 +\s-2Gospel John 4:5-42\s+2 .IP "6" 4 -ef-lent-3-saturday +Saturday of the 3rd Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Dan 13:1-9, 15-17, 19-30, 33-62.\s+2 +\s-2Epistle Dan 13:1-9, 15-17, 19-30, 33-62.\s+2 .br -\s-2Ev. John 8:1-11\s+2 +\s-2Gospel John 8:1-11\s+2 .br -\s-2Com. sts-felicitas-perpetua\s+2 +\s-2Commemoration Sts. Felicitas & Perpetua\s+2 .IP "7" 4 -ef-lent-sunday-4 +4th Sunday of Lent .br \s-2class-1 \(bu rose\s+2 .br -\s-2Ep. Gal 4:22-31\s+2 +\s-2Epistle Gal 4:22-31\s+2 .br -\s-2Ev. John 6:1-15\s+2 +\s-2Gospel John 6:1-15\s+2 .IP "8" 4 -ef-lent-4-monday +Monday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 3 Kings 3:16-28\s+2 +\s-2Epistle 3 Kings 3:16-28\s+2 .br -\s-2Ev. John 2:13-25\s+2 +\s-2Gospel John 2:13-25\s+2 .br -\s-2Com. john-of-god\s+2 +\s-2Commemoration St. John of God\s+2 .IP "9" 4 -ef-lent-4-tuesday +Tuesday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Ex 32:7-14\s+2 +\s-2Epistle Ex 32:7-14\s+2 .br -\s-2Ev. John 7:14-31\s+2 +\s-2Gospel John 7:14-31\s+2 .br -\s-2Com. frances-rome\s+2 +\s-2Commemoration St. Frances Rome\s+2 .IP "10" 4 -ef-lent-4-wednesday +Wednesday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa. 1:16-19\s+2 +\s-2Epistle Isa. 1:16-19\s+2 .br -\s-2Ev. John 9:1-38\s+2 +\s-2Gospel John 9:1-38\s+2 .br -\s-2Com. forty-holy-martyrs-of-sebaste\s+2 +\s-2Commemoration forty-holy-martyrs-of-sebaste\s+2 .IP "11" 4 -ef-lent-4-thursday +Thursday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 4 Kings 4:25-38\s+2 +\s-2Epistle 4 Kings 4:25-38\s+2 .br -\s-2Ev. Luke 7:11-16\s+2 +\s-2Gospel Luke 7:11-16\s+2 .IP "12" 4 -ef-lent-4-friday +Friday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. 3 Kings 17:17-24\s+2 +\s-2Epistle 3 Kings 17:17-24\s+2 .br -\s-2Ev. John 11:1-45\s+2 +\s-2Gospel John 11:1-45\s+2 .br -\s-2Com. gregory-the-great\s+2 +\s-2Commemoration gregory-the-great\s+2 .IP "13" 4 -ef-lent-4-saturday +Saturday of the 4th Week of Lent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Isa 49:8-15\s+2 +\s-2Epistle Isa 49:8-15\s+2 .br -\s-2Ev. John 8:12-20\s+2 +\s-2Gospel John 8:12-20\s+2 .IP "14" 4 -ef-passion-sunday +Passion Sunday .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Heb 9:11-15.\s+2 +\s-2Epistle Heb 9:11-15.\s+2 .br -\s-2Ev. John 8:46-59.\s+2 +\s-2Gospel John 8:46-59.\s+2 .IP "15" 4 -ef-passiontide-1-monday +Monday of the 1st Week of Passion Week .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Jonas 3:1-10\s+2 +\s-2Epistle Jonas 3:1-10\s+2 .br -\s-2Ev. John 7:32-39\s+2 +\s-2Gospel John 7:32-39\s+2 .IP "16" 4 -ef-passiontide-1-tuesday +Tuesday of the 1st Week of Passion Week .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Dan 14:27, 28-42\s+2 +\s-2Epistle Dan 14:27, 28-42\s+2 .br -\s-2Ev. John 7:1-13\s+2 +\s-2Gospel John 7:1-13\s+2 .IP "17" 4 -ef-passiontide-1-wednesday +Wednesday of the 1st Week of Passion Week .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Lev 19:1-2, 11-19, 25\s+2 +\s-2Epistle Lev 19:1-2, 11-19, 25\s+2 .br -\s-2Ev. John 10:22-38\s+2 +\s-2Gospel John 10:22-38\s+2 .br -\s-2Com. patrick\s+2 +\s-2Commemoration patrick\s+2 .IP "18" 4 -ef-passiontide-1-thursday +Thursday of the 1st Week of Passion Week .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Dan 3:25, 34-45.\s+2 +\s-2Epistle Dan 3:25, 34-45.\s+2 .br -\s-2Ev. Luke 7:36-50\s+2 +\s-2Gospel Luke 7:36-50\s+2 .br -\s-2Com. cyril-of-jerusalem\s+2 +\s-2Commemoration cyril-of-jerusalem\s+2 .IP "19" 4 -joseph-spouse-of-the-bl-virgin-mary +St. Joseph, Spouse of the Bl. Virgin Mary .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Ecclus 45:1-6\s+2 +\s-2Epistle Ecclus 45:1-6\s+2 .br -\s-2Ev. Matt 1:18-21\s+2 +\s-2Gospel Matt 1:18-21\s+2 .br -\s-2Com. ef-passiontide-1-friday\s+2 +\s-2Commemoration Friday of the 1st Week of Passion Week\s+2 .IP "20" 4 -ef-passiontide-1-saturday +Saturday of the 1st Week of Passion Week .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Jer 18:18-23\s+2 +\s-2Epistle Jer 18:18-23\s+2 .br -\s-2Ev. John 12:10-36\s+2 +\s-2Gospel John 12:10-36\s+2 .IP "21" 4 -ef-palm-sunday +Palm Sunday .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Phil 2:5-11\s+2 +\s-2Epistle Phil 2:5-11\s+2 .br -\s-2Ev. Matt. 26:36-75; 27:1-60.\s+2 +\s-2Gospel Matt. 26:36-75; 27:1-60.\s+2 .IP "22" 4 -ef-passiontide-2-monday +Monday of Holy Week .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Isa 50:5-10\s+2 +\s-2Epistle Isa 50:5-10\s+2 .br -\s-2Ev. John 12:1-9\s+2 +\s-2Gospel John 12:1-9\s+2 .IP "23" 4 -ef-passiontide-2-tuesday +Tuesday of Holy Week .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Jer 11:18-20\s+2 +\s-2Epistle Jer 11:18-20\s+2 .br -\s-2Ev. Mark 14:32-72; 15, 1-46\s+2 +\s-2Gospel Mark 14:32-72; 15, 1-46\s+2 .IP "24" 4 -ef-passiontide-2-wednesday +Wednesday of Holy Week (Spy Wednesday) .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Isa 53:1-12\s+2 +\s-2Epistle Isa 53:1-12\s+2 .br -\s-2Ev. Luke 22:39-71; 23:1-53\s+2 +\s-2Gospel Luke 22:39-71; 23:1-53\s+2 .IP "25" 4 -Feria V in Cena Domini +Holy Thursday (Maundy Thursday) .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 Cor 11:20-32\s+2 +\s-2Epistle 1 Cor 11:20-32\s+2 .br -\s-2Ev. John 13:1-15\s+2 +\s-2Gospel John 13:1-15\s+2 .IP "26" 4 -Feria VI in Passione et Morte Domini +Good Friday .br \s-2class-1 \(bu black\s+2 .br -\s-2Ep. Ex 12:1-11\s+2 +\s-2Epistle Ex 12:1-11\s+2 .br -\s-2Ev. John 18:1-40; 19:1-42\s+2 +\s-2Gospel John 18:1-40; 19:1-42\s+2 .IP "27" 4 -Sabbato sancto +Holy Saturday .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Col 3:1-4\s+2 +\s-2Epistle Col 3:1-4\s+2 .br -\s-2Ev. Matt 28:1-7\s+2 +\s-2Gospel Matt 28:1-7\s+2 .IP "28" 4 -ef-easter-sunday +Easter Sunday .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 Cor 5:7-8\s+2 +\s-2Epistle 1 Cor 5:7-8\s+2 .br -\s-2Ev. Mark 16:1-7\s+2 +\s-2Gospel Mark 16:1-7\s+2 .IP "29" 4 -ef-easter-1-monday +Monday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Acts 10:37-43.\s+2 +\s-2Epistle Acts 10:37-43.\s+2 .br -\s-2Ev. Luke 24:13-35\s+2 +\s-2Gospel Luke 24:13-35\s+2 .IP "30" 4 -ef-easter-1-tuesday +Tuesday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Acts 13:16; 13:26-33\s+2 +\s-2Epistle Acts 13:16; 13:26-33\s+2 .br -\s-2Ev. Luke 24:36-47\s+2 +\s-2Gospel Luke 24:36-47\s+2 .IP "31" 4 -ef-easter-1-wednesday +Wednesday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Acts 3:13-15; 3:17-19\s+2 +\s-2Epistle Acts 3:13-15; 3:17-19\s+2 .br -\s-2Ev. John 21:1-14\s+2 +\s-2Gospel John 21:1-14\s+2 .SH -Aprilis +April .LP .IP "1" 4 -ef-easter-1-thursday +Thursday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Acts 8:26-40\s+2 +\s-2Epistle Acts 8:26-40\s+2 .br -\s-2Ev. John 20:11-18\s+2 +\s-2Gospel John 20:11-18\s+2 .IP "2" 4 -ef-easter-1-friday +Friday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 Pet 3:18-22\s+2 +\s-2Epistle 1 Pet 3:18-22\s+2 .br -\s-2Ev. Matt 28:16-20\s+2 +\s-2Gospel Matt 28:16-20\s+2 .IP "3" 4 -ef-easter-1-saturday +Saturday of Easter Week .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:1-10\s+2 +\s-2Epistle 1 Pet 2:1-10\s+2 .br -\s-2Ev. John 20:1-9\s+2 +\s-2Gospel John 20:1-9\s+2 .IP "4" 4 -ef-low-sunday +Low Sunday (Sunday in Easter Octave) .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 John 5:4-10\s+2 +\s-2Epistle 1 John 5:4-10\s+2 .br -\s-2Ev. John 20:19-31\s+2 +\s-2Gospel John 20:19-31\s+2 .IP "5" 4 -annunciation-of-the-blessed-virgin-mary +Annunciation of the Blessed Virgin Mary .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Isa 7:10-15\s+2 +\s-2Epistle Isa 7:10-15\s+2 .br -\s-2Ev. Luke 1:26-38\s+2 +\s-2Gospel Luke 1:26-38\s+2 .IP "6" 4 -ef-easter-2-tuesday +Tuesday of the 2nd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 John 5:4-10\s+2 +\s-2Epistle 1 John 5:4-10\s+2 .br -\s-2Ev. John 20:19-31\s+2 +\s-2Gospel John 20:19-31\s+2 .IP "7" 4 -ef-easter-2-wednesday +Wednesday of the 2nd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 John 5:4-10\s+2 +\s-2Epistle 1 John 5:4-10\s+2 .br -\s-2Ev. John 20:19-31\s+2 +\s-2Gospel John 20:19-31\s+2 .IP "8" 4 -ef-easter-2-thursday +Thursday of the 2nd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 John 5:4-10\s+2 +\s-2Epistle 1 John 5:4-10\s+2 .br -\s-2Ev. John 20:19-31\s+2 +\s-2Gospel John 20:19-31\s+2 .IP "9" 4 -ef-easter-2-friday +Friday of the 2nd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 John 5:4-10\s+2 +\s-2Epistle 1 John 5:4-10\s+2 .br -\s-2Ev. John 20:19-31\s+2 +\s-2Gospel John 20:19-31\s+2 .IP "10" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. John 19:25-27\s+2 +\s-2Gospel John 19:25-27\s+2 .IP "11" 4 -ef-easter-sunday-3 +2nd Sunday after Easter .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:21-25\s+2 +\s-2Epistle 1 Pet 2:21-25\s+2 .br -\s-2Ev. John 10:11-16\s+2 +\s-2Gospel John 10:11-16\s+2 .IP "12" 4 -ef-easter-3-monday +Monday of the 3rd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:21-25\s+2 +\s-2Epistle 1 Pet 2:21-25\s+2 .br -\s-2Ev. John 10:11-16\s+2 +\s-2Gospel John 10:11-16\s+2 .IP "13" 4 -hermenegild +St. Hermenegild .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 10:10-14\s+2 +\s-2Epistle Wis 10:10-14\s+2 .br -\s-2Ev. Luke 14:26-33.\s+2 +\s-2Gospel Luke 14:26-33.\s+2 .IP "14" 4 -justin +St. Justin .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Cor 1:18-25; 1:30;\s+2 +\s-2Epistle 1 Cor 1:18-25; 1:30;\s+2 .br -\s-2Ev. Luke 12:2-8\s+2 +\s-2Gospel Luke 12:2-8\s+2 .br -\s-2Com. sts-tiburtius-valerian-et-maximus-martyrs\s+2 +\s-2Commemoration sts-tiburtius-valerian-et-maximus-martyrs\s+2 .IP "15" 4 -ef-easter-3-thursday +Thursday of the 3rd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:21-25\s+2 +\s-2Epistle 1 Pet 2:21-25\s+2 .br -\s-2Ev. John 10:11-16\s+2 +\s-2Gospel John 10:11-16\s+2 .IP "16" 4 -ef-easter-3-friday +Friday of the 3rd Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:21-25\s+2 +\s-2Epistle 1 Pet 2:21-25\s+2 .br -\s-2Ev. John 10:11-16\s+2 +\s-2Gospel John 10:11-16\s+2 .IP "17" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. John 19:25-27\s+2 +\s-2Gospel John 19:25-27\s+2 .br -\s-2Com. anicetus\s+2 +\s-2Commemoration anicetus\s+2 .IP "18" 4 -ef-easter-sunday-4 +3rd Sunday after Easter .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:11-19\s+2 +\s-2Epistle 1 Pet 2:11-19\s+2 .br -\s-2Ev. John 16:16-22\s+2 +\s-2Gospel John 16:16-22\s+2 .IP "19" 4 -ef-easter-4-monday +Monday of the 4th Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:11-19\s+2 +\s-2Epistle 1 Pet 2:11-19\s+2 .br -\s-2Ev. John 16:16-22\s+2 +\s-2Gospel John 16:16-22\s+2 .IP "20" 4 -ef-easter-4-tuesday +Tuesday of the 4th Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:11-19\s+2 +\s-2Epistle 1 Pet 2:11-19\s+2 .br -\s-2Ev. John 16:16-22\s+2 +\s-2Gospel John 16:16-22\s+2 .IP "21" 4 -anselm +St. Anselm .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "22" 4 -sts-soter-caius +Sts. Soter & Caius .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "23" 4 -ef-easter-4-friday +Friday of the 4th Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 2:11-19\s+2 +\s-2Epistle 1 Pet 2:11-19\s+2 .br -\s-2Ev. John 16:16-22\s+2 +\s-2Gospel John 16:16-22\s+2 .br -\s-2Com. george\s+2 +\s-2Commemoration george\s+2 .IP "24" 4 -fidelis-of-sigmaringen +St. Fidelis of Sigmaringen .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 5:1-5\s+2 +\s-2Epistle Wis 5:1-5\s+2 .br -\s-2Ev. John 15:1-7\s+2 +\s-2Gospel John 15:1-7\s+2 .IP "25" 4 -ef-easter-sunday-5 +4th Sunday after Easter .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Jas 1:17-21\s+2 +\s-2Epistle Jas 1:17-21\s+2 .br -\s-2Ev. John 16:5-14\s+2 +\s-2Gospel John 16:5-14\s+2 .br -\s-2Com. major-litanies\s+2 +\s-2Commemoration major-litanies\s+2 .IP "26" 4 -sts-cletus-marcellinus +Sts. Cletus & Marcellinus .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "27" 4 -peter-canisius +St. Peter Canisius .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "28" 4 -paul-of-the-cross +St. Paul of the Cross .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor 1:17-25.\s+2 +\s-2Epistle 1 Cor 1:17-25.\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .IP "29" 4 -peter-of-verona +St. Peter of Verona .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 2 Tim. 2:8-10; 3:10-12.\s+2 +\s-2Epistle 2 Tim. 2:8-10; 3:10-12.\s+2 .br -\s-2Ev. Matt 10:34-42\s+2 +\s-2Gospel Matt 10:34-42\s+2 .IP "30" 4 -catherine-of-siena +St. Catherine of Siena .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .SH -Maius +May .LP .IP "1" 4 -joseph-the-workman +St. Joseph the Workman .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Col. 3:14-15, 17, 23-24\s+2 +\s-2Epistle Col. 3:14-15, 17, 23-24\s+2 .br -\s-2Ev. Matt 13:54-58\s+2 +\s-2Gospel Matt 13:54-58\s+2 .IP "2" 4 -ef-easter-sunday-6 +5th Sunday after Easter .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Jas 1:22-27\s+2 +\s-2Epistle Jas 1:22-27\s+2 .br -\s-2Ev. John 16:23-30\s+2 +\s-2Gospel John 16:23-30\s+2 .IP "3" 4 -ef-rogation-monday +Rogation Monday .br \s-2class-4 \(bu violet\s+2 .br -\s-2Ep. Jas 1:22-27\s+2 +\s-2Epistle Jas 1:22-27\s+2 .br -\s-2Ev. John 16:23-30\s+2 +\s-2Gospel John 16:23-30\s+2 .br -\s-2Com. sts-alexander-companions\s+2 +\s-2Commemoration sts-alexander-companions\s+2 .IP "4" 4 -monica +St. Monica .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Tim. 5:3-10.\s+2 +\s-2Epistle 1 Tim. 5:3-10.\s+2 .br -\s-2Ev. Luke 7:11-16\s+2 +\s-2Gospel Luke 7:11-16\s+2 .IP "5" 4 -ef-ascension-vigil +Vigil of the Ascension .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Eph. 4:7-13.\s+2 +\s-2Epistle Eph. 4:7-13.\s+2 .br -\s-2Ev. John 17:1-11.\s+2 +\s-2Gospel John 17:1-11.\s+2 .br -\s-2Com. pius-v\s+2 +\s-2Commemoration St. Pius V\s+2 .IP "6" 4 -ef-ascension +The Ascension of Our Lord .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Acts 1:1-11\s+2 +\s-2Epistle Acts 1:1-11\s+2 .br -\s-2Ev. Mark 16:14-20\s+2 +\s-2Gospel Mark 16:14-20\s+2 .IP "7" 4 -stanislaus +St. Stanislaus .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 5:1-5\s+2 +\s-2Epistle Wis 5:1-5\s+2 .br -\s-2Ev. John 15:1-7\s+2 +\s-2Gospel John 15:1-7\s+2 .IP "8" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. John 19:25-27\s+2 +\s-2Gospel John 19:25-27\s+2 .IP "9" 4 -ef-easter-sunday-7 +Sunday after the Ascension .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. 1 Pet 4:7-11.\s+2 +\s-2Epistle 1 Pet 4:7-11.\s+2 .br -\s-2Ev. John 15:26-27; 16:1-4.\s+2 +\s-2Gospel John 15:26-27; 16:1-4.\s+2 .IP "10" 4 -antoninus +St. Antoninus .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Matt 25:14-23\s+2 +\s-2Gospel Matt 25:14-23\s+2 .br -\s-2Com. gordiano-and-epimacho\s+2 +\s-2Commemoration gordiano-and-epimacho\s+2 .IP "11" 4 -sts-philip-james +Sts. Philip & James .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Wis. 5:1-5\s+2 +\s-2Epistle Wis. 5:1-5\s+2 .br -\s-2Ev. John 14:1-13\s+2 +\s-2Gospel John 14:1-13\s+2 .IP "12" 4 -sts-nereus-achilleus-domitilla-pancras +Sts. Nereus, Achilleus, Domitilla, & Pancras .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis. 5:1-5\s+2 +\s-2Epistle Wis. 5:1-5\s+2 .br -\s-2Ev. John 4:46-53\s+2 +\s-2Gospel John 4:46-53\s+2 .IP "13" 4 -robert-bellarmine +St. Robert Bellarmine .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Wis 7:7-14.\s+2 +\s-2Epistle Wis 7:7-14.\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "14" 4 -ef-easter-7-friday +Friday of the 7th Week of Eastertide .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. 1 Pet 4:7-11.\s+2 +\s-2Epistle 1 Pet 4:7-11.\s+2 .br -\s-2Ev. John 15:26-27; 16:1-4.\s+2 +\s-2Gospel John 15:26-27; 16:1-4.\s+2 .br -\s-2Com. boniface-martyr\s+2 +\s-2Commemoration boniface-martyr\s+2 .IP "15" 4 -ef-pentecost-vigil +Vigil of Pentecost .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 19:1-8.\s+2 +\s-2Epistle Acts 19:1-8.\s+2 .br -\s-2Ev. John 14:15-21.\s+2 +\s-2Gospel John 14:15-21.\s+2 .IP "16" 4 -ef-pentecost +Pentecost Sunday (Whitsunday) .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 2:1-11.\s+2 +\s-2Epistle Acts 2:1-11.\s+2 .br -\s-2Ev. John 14:23-31.\s+2 +\s-2Gospel John 14:23-31.\s+2 .IP "17" 4 -ef-easter-8-monday +Monday of Pentecost Week .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 10:34, 42-48\s+2 +\s-2Epistle Acts 10:34, 42-48\s+2 .br -\s-2Ev. John 3:16-21\s+2 +\s-2Gospel John 3:16-21\s+2 .IP "18" 4 -ef-easter-8-tuesday +Tuesday of Pentecost Week .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 8:14-17.\s+2 +\s-2Epistle Acts 8:14-17.\s+2 .br -\s-2Ev. John 10:1-10.\s+2 +\s-2Gospel John 10:1-10.\s+2 .IP "19" 4 -ef-pentecost-ember-wed +Pentecost Ember Wednesday .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 5:12-16\s+2 +\s-2Epistle Acts 5:12-16\s+2 .br -\s-2Ev. John 6:44-52.\s+2 +\s-2Gospel John 6:44-52.\s+2 .IP "20" 4 -ef-easter-8-thursday +Thursday of Pentecost Week .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 8:5-8\s+2 +\s-2Epistle Acts 8:5-8\s+2 .br -\s-2Ev. Luke 9:1-6\s+2 +\s-2Gospel Luke 9:1-6\s+2 .IP "21" 4 -ef-pentecost-ember-fri +Pentecost Ember Friday .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Joel 2:23-24; 26-27\s+2 +\s-2Epistle Joel 2:23-24; 26-27\s+2 .br -\s-2Ev. Luke 5:17-26\s+2 +\s-2Gospel Luke 5:17-26\s+2 .IP "22" 4 -ef-pentecost-ember-sat +Pentecost Ember Saturday .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Rom 5:1-5.\s+2 +\s-2Epistle Rom 5:1-5.\s+2 .br -\s-2Ev. Luke 4:38-44.\s+2 +\s-2Gospel Luke 4:38-44.\s+2 .IP "23" 4 -ef-trinity +Trinity Sunday .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Rom 11:33-36.\s+2 +\s-2Epistle Rom 11:33-36.\s+2 .br -\s-2Ev. Matt 28:18-20\s+2 +\s-2Gospel Matt 28:18-20\s+2 .IP "24" 4 -ef-time-after-pentecost-1-monday +Monday of the 1st Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 John 4:8-21\s+2 +\s-2Epistle 1 John 4:8-21\s+2 .br -\s-2Ev. Luke 6:36-42\s+2 +\s-2Gospel Luke 6:36-42\s+2 .IP "25" 4 -gregory-vii +St. Gregory VII .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .br -\s-2Com. urban-pope-and-martyr\s+2 +\s-2Commemoration urban-pope-and-martyr\s+2 .IP "26" 4 -philip-neri +St. Philip Neri .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Wis 7:7-14.\s+2 +\s-2Epistle Wis 7:7-14.\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .br -\s-2Com. eleutherius\s+2 +\s-2Commemoration eleutherius\s+2 .IP "27" 4 -ef-corpus-christi +Corpus Christi .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. 1 Cor 11:23-29\s+2 +\s-2Epistle 1 Cor 11:23-29\s+2 .br -\s-2Ev. John 6:56-59\s+2 +\s-2Gospel John 6:56-59\s+2 .IP "28" 4 -augustine-of-canterbury +St. Augustine of Canterbury .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Thess 2:2-9\s+2 +\s-2Epistle 1 Thess 2:2-9\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .IP "29" 4 -mary-magdalene-de-pazzi +St. Mary Magdalene de Pazzi .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "30" 4 -ef-time-after-pentecost-sunday-2 +2nd Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 John 3:13-18.\s+2 +\s-2Epistle 1 John 3:13-18.\s+2 .br -\s-2Ev. Luke 14:16-24.\s+2 +\s-2Gospel Luke 14:16-24.\s+2 .IP "31" 4 -queenship-of-the-blessed-virgin-mary +Queenship of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31\s+2 +\s-2Epistle Eccli 24:5; 14:7; 14:9-11; 24:30-31\s+2 .br -\s-2Ev. Luke 1:26-33\s+2 +\s-2Gospel Luke 1:26-33\s+2 .br -\s-2Com. petronilla\s+2 +\s-2Commemoration petronilla\s+2 .SH -Iunius +June .LP .IP "1" 4 -angela-merici +St. Angela Merici .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "2" 4 -ef-time-after-pentecost-2-wednesday +Wednesday of the 2nd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 John 3:13-18.\s+2 +\s-2Epistle 1 John 3:13-18.\s+2 .br -\s-2Ev. Luke 14:16-24.\s+2 +\s-2Gospel Luke 14:16-24.\s+2 .br -\s-2Com. sts-marcellinus-peter-erasmus\s+2 +\s-2Commemoration sts-marcellinus-peter-erasmus\s+2 .IP "3" 4 -ef-time-after-pentecost-2-thursday +Thursday of the 2nd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 John 3:13-18.\s+2 +\s-2Epistle 1 John 3:13-18.\s+2 .br -\s-2Ev. Luke 14:16-24.\s+2 +\s-2Gospel Luke 14:16-24.\s+2 .IP "4" 4 -ef-sacred-heart +The Sacred Heart of Jesus .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Eph 3:8-12, 14-19\s+2 +\s-2Epistle Eph 3:8-12, 14-19\s+2 .br -\s-2Ev. John 19:31-37\s+2 +\s-2Gospel John 19:31-37\s+2 .IP "5" 4 -boniface +St. Boniface .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Ecclus 44:1-15\s+2 +\s-2Epistle Ecclus 44:1-15\s+2 .br -\s-2Ev. Matt 5:1-12\s+2 +\s-2Gospel Matt 5:1-12\s+2 .IP "6" 4 -ef-time-after-pentecost-sunday-3 +3rd Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Pet. 5:6-11\s+2 +\s-2Epistle 1 Pet. 5:6-11\s+2 .br -\s-2Ev. Luke 15:1-10\s+2 +\s-2Gospel Luke 15:1-10\s+2 .IP "7" 4 -ef-time-after-pentecost-3-monday +Monday of the 3rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Pet. 5:6-11\s+2 +\s-2Epistle 1 Pet. 5:6-11\s+2 .br -\s-2Ev. Luke 15:1-10\s+2 +\s-2Gospel Luke 15:1-10\s+2 .IP "8" 4 -ef-time-after-pentecost-3-tuesday +Tuesday of the 3rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Pet. 5:6-11\s+2 +\s-2Epistle 1 Pet. 5:6-11\s+2 .br -\s-2Ev. Luke 15:1-10\s+2 +\s-2Gospel Luke 15:1-10\s+2 .IP "9" 4 -ef-time-after-pentecost-3-wednesday +Wednesday of the 3rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Pet. 5:6-11\s+2 +\s-2Epistle 1 Pet. 5:6-11\s+2 .br -\s-2Ev. Luke 15:1-10\s+2 +\s-2Gospel Luke 15:1-10\s+2 .br -\s-2Com. sts-primus-felicianus\s+2 +\s-2Commemoration sts-primus-felicianus\s+2 .IP "10" 4 -margaret-of-scotland +St. Margaret of Scotland .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .IP "11" 4 -barnabas +St. Barnabas .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Acts 11:21-26; 13:1-3\s+2 +\s-2Epistle Acts 11:21-26; 13:1-3\s+2 .br -\s-2Ev. Matt 10:16-22\s+2 +\s-2Gospel Matt 10:16-22\s+2 .IP "12" 4 -john-of-san-fecundo +St. John of San Fecundo .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .br -\s-2Com. basilidus\s+2 +\s-2Commemoration basilidus\s+2 .IP "13" 4 -ef-time-after-pentecost-sunday-4 +4th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Rom 8:18-23\s+2 +\s-2Epistle Rom 8:18-23\s+2 .br -\s-2Ev. Luke 5:1-11\s+2 +\s-2Gospel Luke 5:1-11\s+2 .IP "14" 4 -basil-the-great +St. Basil the Great .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Luke 14:26-35\s+2 +\s-2Gospel Luke 14:26-35\s+2 .IP "15" 4 -ef-time-after-pentecost-4-tuesday +Tuesday of the 4th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 8:18-23\s+2 +\s-2Epistle Rom 8:18-23\s+2 .br -\s-2Ev. Luke 5:1-11\s+2 +\s-2Gospel Luke 5:1-11\s+2 .br -\s-2Com. vitus\s+2 +\s-2Commemoration vitus\s+2 .IP "16" 4 -ef-time-after-pentecost-4-wednesday +Wednesday of the 4th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 8:18-23\s+2 +\s-2Epistle Rom 8:18-23\s+2 .br -\s-2Ev. Luke 5:1-11\s+2 +\s-2Gospel Luke 5:1-11\s+2 .IP "17" 4 -gregory-barbarigo +St. Gregory Barbarigo .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Matt 25:14-23\s+2 +\s-2Gospel Matt 25:14-23\s+2 .IP "18" 4 -ephrem-of-syria +St. Ephrem of Syria .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. marcus-and-marcellianus\s+2 +\s-2Commemoration marcus-and-marcellianus\s+2 .IP "19" 4 -julia-of-falconieri +St. Julia of Falconieri .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .br -\s-2Com. sts-gervasius-and-protasius\s+2 +\s-2Commemoration sts-gervasius-and-protasius\s+2 .IP "20" 4 -ef-time-after-pentecost-sunday-5 +5th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Pet 3:8-15.\s+2 +\s-2Epistle 1 Pet 3:8-15.\s+2 .br -\s-2Ev. Matt 5:20-24.\s+2 +\s-2Gospel Matt 5:20-24.\s+2 .IP "21" 4 -aloysius-gongzaga +St. Aloysius Gongzaga .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Matt 22:29-40\s+2 +\s-2Gospel Matt 22:29-40\s+2 .IP "22" 4 -paulinus-of-nola +St. Paulinus of Nola .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor. 8:9-15\s+2 +\s-2Epistle 2 Cor. 8:9-15\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "23" 4 -vigil-of-the-nativity-of-st-john-the-baptist +Vigil of the Nativity of St. John the Baptist .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Jer 1:4-10\s+2 +\s-2Epistle Jer 1:4-10\s+2 .br -\s-2Ev. Luke 1:5-17\s+2 +\s-2Gospel Luke 1:5-17\s+2 .IP "24" 4 -nativity-of-st-john-the-baptist +Nativity of St. John the Baptist .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Isa 49:1-3, 5-7.\s+2 +\s-2Epistle Isa 49:1-3, 5-7.\s+2 .br -\s-2Ev. Luke 1:57-68\s+2 +\s-2Gospel Luke 1:57-68\s+2 .IP "25" 4 -william +St. William .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Ecclus 45:1-6\s+2 +\s-2Epistle Ecclus 45:1-6\s+2 .br -\s-2Ev. Matt 19:27-29.\s+2 +\s-2Gospel Matt 19:27-29.\s+2 .IP "26" 4 -sts-john-paul +Sts. John & Paul .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Eccli 44:10-15\s+2 +\s-2Epistle Eccli 44:10-15\s+2 .br -\s-2Ev. Luke 12:1-8\s+2 +\s-2Gospel Luke 12:1-8\s+2 .IP "27" 4 -ef-time-after-pentecost-sunday-6 +6th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Rom 6:3-11.\s+2 +\s-2Epistle Rom 6:3-11.\s+2 .br -\s-2Ev. Mark 8:1-9\s+2 +\s-2Gospel Mark 8:1-9\s+2 .IP "28" 4 -vigil-of-sts-peter-paul +Vigil of Sts. Peter & Paul .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Acts 3:1-10\s+2 +\s-2Epistle Acts 3:1-10\s+2 .br -\s-2Ev. John 21:15-19\s+2 +\s-2Gospel John 21:15-19\s+2 .IP "29" 4 -sts-peter-paul +Sts. Peter & Paul .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Acts 12:1-11\s+2 +\s-2Epistle Acts 12:1-11\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "30" 4 -in-commemoratione-sancti-pauli-apostoli +In Commemoratione Sancti Pauli Apostoli .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Gal 1:11-20\s+2 +\s-2Epistle Gal 1:11-20\s+2 .br -\s-2Ev. Matt 10:16-22\s+2 +\s-2Gospel Matt 10:16-22\s+2 .br -\s-2Com. commemoration-of-st-peter\s+2 +\s-2Commemoration commemoration-of-st-peter\s+2 .SH -Iulius +July .LP .IP "1" 4 -precious-blood-of-our-lord-jesus-christ +The Precious Blood of Our Lord Jesus Christ .br \s-2class-1 \(bu red\s+2 .br -\s-2Ep. Heb 9:11-15.\s+2 +\s-2Epistle Heb 9:11-15.\s+2 .br -\s-2Ev. John 19:30-35\s+2 +\s-2Gospel John 19:30-35\s+2 .IP "2" 4 -visitation-of-the-blessed-virgin-mary +Visitation of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Song 2:8-14\s+2 +\s-2Epistle Song 2:8-14\s+2 .br -\s-2Ev. Luke 1:39-47\s+2 +\s-2Gospel Luke 1:39-47\s+2 .br -\s-2Com. processus-and-martinian\s+2 +\s-2Commemoration processus-and-martinian\s+2 .IP "3" 4 -irenaeus +St. Irenaeus .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 2 Tim. 3:14-17; 4:1-5\s+2 +\s-2Epistle 2 Tim. 3:14-17; 4:1-5\s+2 .br -\s-2Ev. Matt 10:28-33\s+2 +\s-2Gospel Matt 10:28-33\s+2 .IP "4" 4 -ef-time-after-pentecost-sunday-7 +7th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Rom 6:19-23\s+2 +\s-2Epistle Rom 6:19-23\s+2 .br -\s-2Ev. Matt 7:15-21\s+2 +\s-2Gospel Matt 7:15-21\s+2 .IP "5" 4 -anthony-mary-zaccariah +St. Anthony Mary Zaccariah .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Tim. 4:8-16\s+2 +\s-2Epistle 1 Tim. 4:8-16\s+2 .br -\s-2Ev. Mark 10:15-21\s+2 +\s-2Gospel Mark 10:15-21\s+2 .IP "6" 4 -ef-time-after-pentecost-7-tuesday +Tuesday of the 7th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 6:19-23\s+2 +\s-2Epistle Rom 6:19-23\s+2 .br -\s-2Ev. Matt 7:15-21\s+2 +\s-2Gospel Matt 7:15-21\s+2 .IP "7" 4 -sts-cyril-methodius +Sts. Cyril & Methodius .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Heb 7:23-27\s+2 +\s-2Epistle Heb 7:23-27\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .IP "8" 4 -elizabeth-of-portugal +St. Elizabeth of Portugal .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .IP "9" 4 -ef-time-after-pentecost-7-friday +Friday of the 7th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 6:19-23\s+2 +\s-2Epistle Rom 6:19-23\s+2 .br -\s-2Ev. Matt 7:15-21\s+2 +\s-2Gospel Matt 7:15-21\s+2 .IP "10" 4 -seven-holy-brothers-and-sts-rufina-secunda +Seven Holy Brothers and Sts. Rufina & Secunda .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 12:46-50\s+2 +\s-2Gospel Matt 12:46-50\s+2 .IP "11" 4 -ef-time-after-pentecost-sunday-8 +8th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Rom 8:12-17\s+2 +\s-2Epistle Rom 8:12-17\s+2 .br -\s-2Ev. Luke 16:1-9\s+2 +\s-2Gospel Luke 16:1-9\s+2 .IP "12" 4 -john-gualbert +St. John Gualbert .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Ecclus 45:1-6\s+2 +\s-2Epistle Ecclus 45:1-6\s+2 .br -\s-2Ev. Matt 5:43-48\s+2 +\s-2Gospel Matt 5:43-48\s+2 .br -\s-2Com. naboris-et-felicis\s+2 +\s-2Commemoration naboris-et-felicis\s+2 .IP "13" 4 -ef-time-after-pentecost-8-tuesday +Tuesday of the 8th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 8:12-17\s+2 +\s-2Epistle Rom 8:12-17\s+2 .br -\s-2Ev. Luke 16:1-9\s+2 +\s-2Gospel Luke 16:1-9\s+2 .IP "14" 4 -bonaventure +St. Bonaventure .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "15" 4 -henry-the-emperor +St. Henry the Emperor .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "16" 4 -ef-time-after-pentecost-8-friday +Friday of the 8th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Rom 8:12-17\s+2 +\s-2Epistle Rom 8:12-17\s+2 .br -\s-2Ev. Luke 16:1-9\s+2 +\s-2Gospel Luke 16:1-9\s+2 .br -\s-2Com. our-lady-of-mt-carmel\s+2 +\s-2Commemoration our-lady-of-mt-carmel\s+2 .IP "17" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .br -\s-2Com. alexis\s+2 +\s-2Commemoration alexis\s+2 .IP "18" 4 -ef-time-after-pentecost-sunday-9 +9th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 10:6-13\s+2 +\s-2Epistle 1 Cor. 10:6-13\s+2 .br -\s-2Ev. Luke 19:41-47\s+2 +\s-2Gospel Luke 19:41-47\s+2 .IP "19" 4 -vincent-de-paul +St. Vincent de Paul .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor. 4:9-14\s+2 +\s-2Epistle 1 Cor. 4:9-14\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .IP "20" 4 -jerome-emiliani +St. Jerome Emiliani .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Isa 58:7-11\s+2 +\s-2Epistle Isa 58:7-11\s+2 .br -\s-2Ev. Matt 19:13-21\s+2 +\s-2Gospel Matt 19:13-21\s+2 .br -\s-2Com. margaret\s+2 +\s-2Commemoration margaret\s+2 .IP "21" 4 -laurence-of-brindisi +St. Laurence of Brindisi .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. praxedis-virginis\s+2 +\s-2Commemoration praxedis-virginis\s+2 .IP "22" 4 -mary-magdalene +St. Mary Magdalene .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Song 3:2-5; 8:6-7\s+2 +\s-2Epistle Song 3:2-5; 8:6-7\s+2 .br -\s-2Ev. Luke 7:36-50\s+2 +\s-2Gospel Luke 7:36-50\s+2 .IP "23" 4 -apollinaris +St. Apollinaris .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet. 5:1-11\s+2 +\s-2Epistle 1 Pet. 5:1-11\s+2 .br -\s-2Ev. Luke 22:24-30\s+2 +\s-2Gospel Luke 22:24-30\s+2 .br -\s-2Com. liborii\s+2 +\s-2Commemoration liborii\s+2 .IP "24" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .br -\s-2Com. christina\s+2 +\s-2Commemoration christina\s+2 .IP "25" 4 -ef-time-after-pentecost-sunday-10 +10th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 12:2-11\s+2 +\s-2Epistle 1 Cor. 12:2-11\s+2 .br -\s-2Ev. Luke 18:9-14\s+2 +\s-2Gospel Luke 18:9-14\s+2 .br -\s-2Com. james-the-greater\s+2 +\s-2Commemoration St. James the Greater\s+2 .IP "26" 4 -anne-mother-of-the-blessed-virgin +St. Anne, Mother of the Blessed Virgin .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .IP "27" 4 -ef-time-after-pentecost-10-tuesday +Tuesday of the 10th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 12:2-11\s+2 +\s-2Epistle 1 Cor. 12:2-11\s+2 .br -\s-2Ev. Luke 18:9-14\s+2 +\s-2Gospel Luke 18:9-14\s+2 .br -\s-2Com. pantaleon\s+2 +\s-2Commemoration pantaleon\s+2 .IP "28" 4 -sts-nazarius-celsus-st-victor-i-st-innocent-i +Sts. Nazarius & Celsus, St. Victor I & St. Innocent I .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 10:17-20\s+2 +\s-2Epistle Wis 10:17-20\s+2 .br -\s-2Ev. Luke 21:9-19\s+2 +\s-2Gospel Luke 21:9-19\s+2 .IP "29" 4 -martha +St. Martha .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Luke 10:38-42\s+2 +\s-2Gospel Luke 10:38-42\s+2 .br -\s-2Com. felicis-simplicii-faustini-et-beatricis\s+2 +\s-2Commemoration felicis-simplicii-faustini-et-beatricis\s+2 .IP "30" 4 -ef-time-after-pentecost-10-friday +Friday of the 10th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 12:2-11\s+2 +\s-2Epistle 1 Cor. 12:2-11\s+2 .br -\s-2Ev. Luke 18:9-14\s+2 +\s-2Gospel Luke 18:9-14\s+2 .br -\s-2Com. sts-abdon-sennen\s+2 +\s-2Commemoration sts-abdon-sennen\s+2 .IP "31" 4 -ignatius-loyola +St. Ignatius Loyola .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim. 2:8-10; 3:10-12.\s+2 +\s-2Epistle 2 Tim. 2:8-10; 3:10-12.\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .SH -Augustus +August .LP .IP "1" 4 -ef-time-after-pentecost-sunday-11 +11th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 15:1-10\s+2 +\s-2Epistle 1 Cor. 15:1-10\s+2 .br -\s-2Ev. Mark 7:31-37\s+2 +\s-2Gospel Mark 7:31-37\s+2 .IP "2" 4 -alphonsus-liguori +St. Alphonsus Liguori .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim. 2:1-7\s+2 +\s-2Epistle 2 Tim. 2:1-7\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .br -\s-2Com. stephen-i-pope-and-martyr\s+2 +\s-2Commemoration stephen-i-pope-and-martyr\s+2 .IP "3" 4 -ef-time-after-pentecost-11-tuesday +Tuesday of the 11th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 15:1-10\s+2 +\s-2Epistle 1 Cor. 15:1-10\s+2 .br -\s-2Ev. Mark 7:31-37\s+2 +\s-2Gospel Mark 7:31-37\s+2 .IP "4" 4 -dominic +St. Dominic .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim. 4:1-8\s+2 +\s-2Epistle 2 Tim. 4:1-8\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "5" 4 -dedication-of-the-basilica-of-st-mary-major +Dedication of the Basilica of St. Mary Major .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .IP "6" 4 -transfiguration-of-our-lord +Transfiguration of Our Lord .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. 2 Pet. 1:16-19\s+2 +\s-2Epistle 2 Pet. 1:16-19\s+2 .br -\s-2Ev. Matt 17:1-9\s+2 +\s-2Gospel Matt 17:1-9\s+2 .br -\s-2Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs\s+2 +\s-2Commemoration pope-sixtus-ii-felicissimus-and-agapitus-martyrs\s+2 .IP "7" 4 -cajetan +St. Cajetan .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Matt 6:24-33\s+2 +\s-2Gospel Matt 6:24-33\s+2 .br -\s-2Com. donatus\s+2 +\s-2Commemoration donatus\s+2 .IP "8" 4 -ef-time-after-pentecost-sunday-12 +12th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 2 Cor. 3:4-9\s+2 +\s-2Epistle 2 Cor. 3:4-9\s+2 .br -\s-2Ev. Luke 10:23-37\s+2 +\s-2Gospel Luke 10:23-37\s+2 .IP "9" 4 -vigil-of-st-lawrence +Vigil of St. Lawrence .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Ecclus 51:1-8, 12\s+2 +\s-2Epistle Ecclus 51:1-8, 12\s+2 .br -\s-2Ev. Matt 16:24-27\s+2 +\s-2Gospel Matt 16:24-27\s+2 .br -\s-2Com. romanus\s+2 +\s-2Commemoration romanus\s+2 .IP "10" 4 -lawrence +St. Lawrence .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. 2 Cor. 9:6-10\s+2 +\s-2Epistle 2 Cor. 9:6-10\s+2 .br -\s-2Ev. John 12:24-26\s+2 +\s-2Gospel John 12:24-26\s+2 .IP "11" 4 -ef-time-after-pentecost-12-wednesday +Wednesday of the 12th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 2 Cor. 3:4-9\s+2 +\s-2Epistle 2 Cor. 3:4-9\s+2 .br -\s-2Ev. Luke 10:23-37\s+2 +\s-2Gospel Luke 10:23-37\s+2 .br -\s-2Com. sts-tiburtius-susanna\s+2 +\s-2Commemoration sts-tiburtius-susanna\s+2 .IP "12" 4 -clare +St. Clare .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "13" 4 -ef-time-after-pentecost-12-friday +Friday of the 12th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 2 Cor. 3:4-9\s+2 +\s-2Epistle 2 Cor. 3:4-9\s+2 .br -\s-2Ev. Luke 10:23-37\s+2 +\s-2Gospel Luke 10:23-37\s+2 .br -\s-2Com. sts-hippolytus-cassian\s+2 +\s-2Commemoration sts-hippolytus-cassian\s+2 .IP "14" 4 -vigil-of-the-assumption +Vigil of the Assumption .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Sir 24:23-31\s+2 +\s-2Epistle Sir 24:23-31\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .br -\s-2Com. eusebius-confessor\s+2 +\s-2Commemoration eusebius-confessor\s+2 .IP "15" 4 -assumption-of-the-blessed-virgin-mary +Assumption of the Blessed Virgin Mary .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Judith 13:22-25; 15:10\s+2 +\s-2Epistle Judith 13:22-25; 15:10\s+2 .br -\s-2Ev. Luke 1:41-50\s+2 +\s-2Gospel Luke 1:41-50\s+2 .br -\s-2Com. ef-time-after-pentecost-sunday-13\s+2 +\s-2Commemoration 13th Sunday after Pentecost\s+2 .IP "16" 4 -joachim-father-of-the-blessed-virgin +St. Joachim, Father of the Blessed Virgin .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Matt 1:1-16\s+2 +\s-2Gospel Matt 1:1-16\s+2 .IP "17" 4 -hyacinth +St. Hyacinth .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "18" 4 -ef-time-after-pentecost-13-wednesday +Wednesday of the 13th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Gal 3:16-22\s+2 +\s-2Epistle Gal 3:16-22\s+2 .br -\s-2Ev. Luke 17:11-19\s+2 +\s-2Gospel Luke 17:11-19\s+2 .br -\s-2Com. agapitus\s+2 +\s-2Commemoration agapitus\s+2 .IP "19" 4 -john-eudes +St. John Eudes .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "20" 4 -bernard-of-clairvaux +St. Bernard of Clairvaux .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Ecclus 39:6-14\s+2 +\s-2Epistle Ecclus 39:6-14\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "21" 4 -jane-frances-de-chantal +St. Jane Frances de Chantal .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .IP "22" 4 -ef-time-after-pentecost-sunday-14 +14th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Gal 5:16-24\s+2 +\s-2Epistle Gal 5:16-24\s+2 .br -\s-2Ev. Matt 6:24-33\s+2 +\s-2Gospel Matt 6:24-33\s+2 .br -\s-2Com. immaculate-heart-of-mary\s+2 +\s-2Commemoration Immaculate Heart of Mary\s+2 .IP "23" 4 -philip-benizi +St. Philip Benizi .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor. 4:9-14\s+2 +\s-2Epistle 1 Cor. 4:9-14\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "24" 4 -bartholomew +St. Bartholomew .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. 1 Cor. 12:27-31\s+2 +\s-2Epistle 1 Cor. 12:27-31\s+2 .br -\s-2Ev. Luke 6:12-19\s+2 +\s-2Gospel Luke 6:12-19\s+2 .IP "25" 4 -louis-ix +St. Louis IX .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Wis 10:10-14\s+2 +\s-2Epistle Wis 10:10-14\s+2 .br -\s-2Ev. Luke 19:12-26\s+2 +\s-2Gospel Luke 19:12-26\s+2 .IP "26" 4 -ef-time-after-pentecost-14-thursday +Thursday of the 14th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Gal 5:16-24\s+2 +\s-2Epistle Gal 5:16-24\s+2 .br -\s-2Ev. Matt 6:24-33\s+2 +\s-2Gospel Matt 6:24-33\s+2 .br -\s-2Com. zephyrinus\s+2 +\s-2Commemoration zephyrinus\s+2 .IP "27" 4 -joseph-calasance +St. Joseph Calasance .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Wis 10:10-14\s+2 +\s-2Epistle Wis 10:10-14\s+2 .br -\s-2Ev. Matt 18:1-5\s+2 +\s-2Gospel Matt 18:1-5\s+2 .IP "28" 4 -augustine +St. Augustine .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. hermes\s+2 +\s-2Commemoration hermes\s+2 .IP "29" 4 -ef-time-after-pentecost-sunday-15 +15th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Gal 5:25-26; 6:1-10\s+2 +\s-2Epistle Gal 5:25-26; 6:1-10\s+2 .br -\s-2Ev. Luke 7:11-16\s+2 +\s-2Gospel Luke 7:11-16\s+2 .IP "30" 4 -rose-of-lima +St. Rose of Lima .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .br -\s-2Com. sts-felix-and-adauctus\s+2 +\s-2Commemoration sts-felix-and-adauctus\s+2 .IP "31" 4 -raymond-nonnatus +St. Raymond Nonnatus .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .SH @@ -2391,298 +2394,298 @@ September .LP .IP "1" 4 -ef-time-after-pentecost-15-wednesday +Wednesday of the 15th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Gal 5:25-26; 6:1-10\s+2 +\s-2Epistle Gal 5:25-26; 6:1-10\s+2 .br -\s-2Ev. Luke 7:11-16\s+2 +\s-2Gospel Luke 7:11-16\s+2 .br -\s-2Com. giles\s+2 +\s-2Commemoration giles\s+2 .br -\s-2Com. twelve-holy-brothers-martyrs\s+2 +\s-2Commemoration twelve-holy-brothers-martyrs\s+2 .IP "2" 4 -stephen-of-hungary +St. Stephen of Hungary .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 19:12-26\s+2 +\s-2Gospel Luke 19:12-26\s+2 .IP "3" 4 -pius-x +St. Pius X .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Thess. 2:2-8\s+2 +\s-2Epistle 1 Thess. 2:2-8\s+2 .br -\s-2Ev. John 21:15-17\s+2 +\s-2Gospel John 21:15-17\s+2 .IP "4" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .IP "5" 4 -ef-time-after-pentecost-sunday-16 +16th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Eph 3:13-21\s+2 +\s-2Epistle Eph 3:13-21\s+2 .br -\s-2Ev. Luke 14:1-11\s+2 +\s-2Gospel Luke 14:1-11\s+2 .IP "6" 4 -ef-time-after-pentecost-16-monday +Monday of the 16th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 3:13-21\s+2 +\s-2Epistle Eph 3:13-21\s+2 .br -\s-2Ev. Luke 14:1-11\s+2 +\s-2Gospel Luke 14:1-11\s+2 .IP "7" 4 -ef-time-after-pentecost-16-tuesday +Tuesday of the 16th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 3:13-21\s+2 +\s-2Epistle Eph 3:13-21\s+2 .br -\s-2Ev. Luke 14:1-11\s+2 +\s-2Gospel Luke 14:1-11\s+2 .IP "8" 4 -nativity-of-the-blessed-virgin-mary +Nativity of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Prov 8:22-35\s+2 +\s-2Epistle Prov 8:22-35\s+2 .br -\s-2Ev. Matt 1:1-16\s+2 +\s-2Gospel Matt 1:1-16\s+2 .br -\s-2Com. hadriani\s+2 +\s-2Commemoration hadriani\s+2 .IP "9" 4 -ef-time-after-pentecost-16-thursday +Thursday of the 16th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 3:13-21\s+2 +\s-2Epistle Eph 3:13-21\s+2 .br -\s-2Ev. Luke 14:1-11\s+2 +\s-2Gospel Luke 14:1-11\s+2 .br -\s-2Com. gorgonius\s+2 +\s-2Commemoration gorgonius\s+2 .IP "10" 4 -nicholas-of-tolentino +St. Nicholas of Tolentino .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor. 4:9-14\s+2 +\s-2Epistle 1 Cor. 4:9-14\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "11" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .br -\s-2Com. sts-protus-hyacinth\s+2 +\s-2Commemoration sts-protus-hyacinth\s+2 .IP "12" 4 -ef-time-after-pentecost-sunday-17 +17th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Eph 4:1-6\s+2 +\s-2Epistle Eph 4:1-6\s+2 .br -\s-2Ev. Matt 22:34-46\s+2 +\s-2Gospel Matt 22:34-46\s+2 .IP "13" 4 -ef-time-after-pentecost-17-monday +Monday of the 17th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 4:1-6\s+2 +\s-2Epistle Eph 4:1-6\s+2 .br -\s-2Ev. Matt 22:34-46\s+2 +\s-2Gospel Matt 22:34-46\s+2 .IP "14" 4 -exaltation-of-the-holy-cross +Exaltation of the Holy Cross .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Phil 2:5-11\s+2 +\s-2Epistle Phil 2:5-11\s+2 .br -\s-2Ev. John 12:31-36\s+2 +\s-2Gospel John 12:31-36\s+2 .IP "15" 4 -seven-sorrows-of-the-blessed-virgin-mary +Seven Sorrows of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Judith 13:22; 13:23-25\s+2 +\s-2Epistle Judith 13:22; 13:23-25\s+2 .br -\s-2Ev. John 19:25-27\s+2 +\s-2Gospel John 19:25-27\s+2 .br -\s-2Com. nicomedes\s+2 +\s-2Commemoration nicomedes\s+2 .IP "16" 4 -sts-cornelius-cyprian +Sts. Cornelius & Cyprian .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 3:1-8\s+2 +\s-2Epistle Wis 3:1-8\s+2 .br -\s-2Ev. Luke 21:9-19\s+2 +\s-2Gospel Luke 21:9-19\s+2 .br -\s-2Com. sts-euphemia-lucy-and-geminianus\s+2 +\s-2Commemoration sts-euphemia-lucy-and-geminianus\s+2 .IP "17" 4 -ef-time-after-pentecost-17-friday +Friday of the 17th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 4:1-6\s+2 +\s-2Epistle Eph 4:1-6\s+2 .br -\s-2Ev. Matt 22:34-46\s+2 +\s-2Gospel Matt 22:34-46\s+2 .br -\s-2Com. stigmata-of-st-francis\s+2 +\s-2Commemoration stigmata-of-st-francis\s+2 .IP "18" 4 -joseph-of-cupertino +St. Joseph of Cupertino .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor 13:1-8\s+2 +\s-2Epistle 1 Cor 13:1-8\s+2 .br -\s-2Ev. Matt 22:1-14\s+2 +\s-2Gospel Matt 22:1-14\s+2 .IP "19" 4 -ef-time-after-pentecost-sunday-18 +18th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 1:4-8\s+2 +\s-2Epistle 1 Cor. 1:4-8\s+2 .br -\s-2Ev. Matt 9:1-8\s+2 +\s-2Gospel Matt 9:1-8\s+2 .IP "20" 4 -ef-time-after-pentecost-18-monday +Monday of the 18th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. 1 Cor. 1:4-8\s+2 +\s-2Epistle 1 Cor. 1:4-8\s+2 .br -\s-2Ev. Matt 9:1-8\s+2 +\s-2Gospel Matt 9:1-8\s+2 .br -\s-2Com. sts-eustace-companions\s+2 +\s-2Commemoration sts-eustace-companions\s+2 .IP "21" 4 -matthew +St. Matthew .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Ezek 1:10-14\s+2 +\s-2Epistle Ezek 1:10-14\s+2 .br -\s-2Ev. Matt 9:9-13\s+2 +\s-2Gospel Matt 9:9-13\s+2 .IP "22" 4 -ef-september-ember-wed +September Ember Wednesday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 2 Esd. 8:1-10\s+2 +\s-2Epistle 2 Esd. 8:1-10\s+2 .br -\s-2Ev. Mark 9:16-28\s+2 +\s-2Gospel Mark 9:16-28\s+2 .br -\s-2Com. thomas-of-villanova\s+2 +\s-2Commemoration St. Thomas of Villanova\s+2 .IP "23" 4 -linus +St. Linus .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .br -\s-2Com. thecla\s+2 +\s-2Commemoration thecla\s+2 .IP "24" 4 -ef-september-ember-fri +September Ember Friday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Osee 14:2-10\s+2 +\s-2Epistle Osee 14:2-10\s+2 .br -\s-2Ev. Luke 7:36-50\s+2 +\s-2Gospel Luke 7:36-50\s+2 .br -\s-2Com. our-lady-of-ransom\s+2 +\s-2Commemoration our-lady-of-ransom\s+2 .IP "25" 4 -ef-september-ember-sat +September Ember Saturday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Heb 9:2-12\s+2 +\s-2Epistle Heb 9:2-12\s+2 .br -\s-2Ev. Luke 13:6-17\s+2 +\s-2Gospel Luke 13:6-17\s+2 .IP "26" 4 -ef-time-after-pentecost-sunday-19 +19th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Eph 4:23-28\s+2 +\s-2Epistle Eph 4:23-28\s+2 .br -\s-2Ev. Matt 22:1-14\s+2 +\s-2Gospel Matt 22:1-14\s+2 .IP "27" 4 -sts-cosmas-damian +Sts. Cosmas & Damian .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 5:16-20\s+2 +\s-2Epistle Wis 5:16-20\s+2 .br -\s-2Ev. Luke 6:17-23\s+2 +\s-2Gospel Luke 6:17-23\s+2 .IP "28" 4 -wenceslaus +St. Wenceslaus .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Wis 10:10-14\s+2 +\s-2Epistle Wis 10:10-14\s+2 .br -\s-2Ev. Matt 10:34-42\s+2 +\s-2Gospel Matt 10:34-42\s+2 .IP "29" 4 -dedication-of-st-michael-the-archangel +Dedication of St. Michael the Archangel .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Rev 1:1-5\s+2 +\s-2Epistle Rev 1:1-5\s+2 .br -\s-2Ev. Matt 18:1-10\s+2 +\s-2Gospel Matt 18:1-10\s+2 .IP "30" 4 -jerome +St. Jerome .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .SH @@ -2690,301 +2693,301 @@ October .LP .IP "1" 4 -ef-time-after-pentecost-19-friday +Friday of the 19th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 4:23-28\s+2 +\s-2Epistle Eph 4:23-28\s+2 .br -\s-2Ev. Matt 22:1-14\s+2 +\s-2Gospel Matt 22:1-14\s+2 .br -\s-2Com. remigius\s+2 +\s-2Commemoration remigius\s+2 .IP "2" 4 -holy-guardian-angels +Holy Guardian Angels .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Exod 23:20-23\s+2 +\s-2Epistle Exod 23:20-23\s+2 .br -\s-2Ev. Matt 18:1-10\s+2 +\s-2Gospel Matt 18:1-10\s+2 .IP "3" 4 -ef-time-after-pentecost-sunday-20 +20th Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Eph 5:15-21\s+2 +\s-2Epistle Eph 5:15-21\s+2 .br -\s-2Ev. John 4:46-53\s+2 +\s-2Gospel John 4:46-53\s+2 .IP "4" 4 -francis-of-assisi +St. Francis of Assisi .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Gal 6:14-18\s+2 +\s-2Epistle Gal 6:14-18\s+2 .br -\s-2Ev. Matt 11:25-30\s+2 +\s-2Gospel Matt 11:25-30\s+2 .IP "5" 4 -ef-time-after-pentecost-20-tuesday +Tuesday of the 20th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 5:15-21\s+2 +\s-2Epistle Eph 5:15-21\s+2 .br -\s-2Ev. John 4:46-53\s+2 +\s-2Gospel John 4:46-53\s+2 .br -\s-2Com. placid-companions\s+2 +\s-2Commemoration placid-companions\s+2 .IP "6" 4 -bruno +St. Bruno .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "7" 4 -our-lady-of-the-rosary +Our Lady of the Rosary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Prov 8:22-24, 32-35.\s+2 +\s-2Epistle Prov 8:22-24, 32-35.\s+2 .br -\s-2Ev. Luke 1:26-38\s+2 +\s-2Gospel Luke 1:26-38\s+2 .br -\s-2Com. mark-i\s+2 +\s-2Commemoration mark-i\s+2 .IP "8" 4 -bridget-of-sweden +St. Bridget of Sweden .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Tim. 5:3-10.\s+2 +\s-2Epistle 1 Tim. 5:3-10.\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .br -\s-2Com. sergio-baccho-marcello-and-apulejo-martyrs\s+2 +\s-2Commemoration sergio-baccho-marcello-and-apulejo-martyrs\s+2 .IP "9" 4 -john-leonardi +St. John Leonardi .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 4:1-6; 4:15-18\s+2 +\s-2Epistle 2 Cor 4:1-6; 4:15-18\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .br -\s-2Com. dionysius-and-companions\s+2 +\s-2Commemoration dionysius-and-companions\s+2 .IP "10" 4 -ef-time-after-pentecost-sunday-21 +21st Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Eph 6:10-17\s+2 +\s-2Epistle Eph 6:10-17\s+2 .br -\s-2Ev. Matt 18:23-35\s+2 +\s-2Gospel Matt 18:23-35\s+2 .IP "11" 4 -maternity-of-the-blessed-virgin-mary +Maternity of the Blessed Virgin Mary .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Sir 24:23-31\s+2 +\s-2Epistle Sir 24:23-31\s+2 .br -\s-2Ev. Luke 2:43-51\s+2 +\s-2Gospel Luke 2:43-51\s+2 .IP "12" 4 -ef-time-after-pentecost-21-tuesday +Tuesday of the 21st Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Eph 6:10-17\s+2 +\s-2Epistle Eph 6:10-17\s+2 .br -\s-2Ev. Matt 18:23-35\s+2 +\s-2Gospel Matt 18:23-35\s+2 .IP "13" 4 -edward +St. Edward .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "14" 4 -callistus-i +St. Callistus I .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "15" 4 -teresa-of-avila +St. Teresa of Avila .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "16" 4 -hedwig +St. Hedwig .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .IP "17" 4 -ef-time-after-pentecost-sunday-22 +22nd Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Phil 1:6-11\s+2 +\s-2Epistle Phil 1:6-11\s+2 .br -\s-2Ev. Matt 22:15-21\s+2 +\s-2Gospel Matt 22:15-21\s+2 .IP "18" 4 -luke-the-evangelist +St. Luke the Evangelist .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. 2 Cor. 8:16-24\s+2 +\s-2Epistle 2 Cor. 8:16-24\s+2 .br -\s-2Ev. Luke 10:1-9\s+2 +\s-2Gospel Luke 10:1-9\s+2 .IP "19" 4 -peter-of-alcantara +St. Peter of Alcantara .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Phil 3:7-12\s+2 +\s-2Epistle Phil 3:7-12\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "20" 4 -john-cantius +St. John Cantius .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. James 2:12-17\s+2 +\s-2Epistle James 2:12-17\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .IP "21" 4 -ef-time-after-pentecost-22-thursday +Thursday of the 22nd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 1:6-11\s+2 +\s-2Epistle Phil 1:6-11\s+2 .br -\s-2Ev. Matt 22:15-21\s+2 +\s-2Gospel Matt 22:15-21\s+2 .br -\s-2Com. hilarion\s+2 +\s-2Commemoration hilarion\s+2 .br -\s-2Com. ursula-and-companions\s+2 +\s-2Commemoration ursula-and-companions\s+2 .IP "22" 4 -ef-time-after-pentecost-22-friday +Friday of the 22nd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 1:6-11\s+2 +\s-2Epistle Phil 1:6-11\s+2 .br -\s-2Ev. Matt 22:15-21\s+2 +\s-2Gospel Matt 22:15-21\s+2 .IP "23" 4 -anthony-mary-claret +St. Anthony Mary Claret .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Heb 7:23-27\s+2 +\s-2Epistle Heb 7:23-27\s+2 .br -\s-2Ev. Matt 24:42-47\s+2 +\s-2Gospel Matt 24:42-47\s+2 .IP "24" 4 -ef-time-after-pentecost-sunday-23 +23rd Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 9:18-26\s+2 +\s-2Gospel Matt 9:18-26\s+2 .IP "25" 4 -ef-time-after-pentecost-23-monday +Monday of the 23rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 9:18-26\s+2 +\s-2Gospel Matt 9:18-26\s+2 .br -\s-2Com. sts-chrysanthus-daria\s+2 +\s-2Commemoration sts-chrysanthus-daria\s+2 .IP "26" 4 -ef-time-after-pentecost-23-tuesday +Tuesday of the 23rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 9:18-26\s+2 +\s-2Gospel Matt 9:18-26\s+2 .br -\s-2Com. evaristus\s+2 +\s-2Commemoration evaristus\s+2 .IP "27" 4 -ef-time-after-pentecost-23-wednesday +Wednesday of the 23rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 9:18-26\s+2 +\s-2Gospel Matt 9:18-26\s+2 .IP "28" 4 -sts-simon-jude +Sts. Simon & Jude .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Eph. 4:7-13.\s+2 +\s-2Epistle Eph. 4:7-13.\s+2 .br -\s-2Ev. John 15:17-25\s+2 +\s-2Gospel John 15:17-25\s+2 .IP "29" 4 -ef-time-after-pentecost-23-friday +Friday of the 23rd Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 9:18-26\s+2 +\s-2Gospel Matt 9:18-26\s+2 .IP "30" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .IP "31" 4 -ef-christ-the-king +Christ the King .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Col 1:12-20.\s+2 +\s-2Epistle Col 1:12-20.\s+2 .br -\s-2Ev. John 18:33-37\s+2 +\s-2Gospel John 18:33-37\s+2 .SH @@ -2992,296 +2995,296 @@ November .LP .IP "1" 4 -all-saints +All Saints .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Apoc 7:2-12\s+2 +\s-2Epistle Apoc 7:2-12\s+2 .br -\s-2Ev. Matt 5:1-12\s+2 +\s-2Gospel Matt 5:1-12\s+2 .IP "2" 4 -commemoration-of-all-souls +Commemoration of All Souls .br \s-2class-1 \(bu black\s+2 .br -\s-2Ep. 1 Cor. 15:51-57\s+2 +\s-2Epistle 1 Cor. 15:51-57\s+2 .br -\s-2Ev. John 5:25-29\s+2 +\s-2Gospel John 5:25-29\s+2 .IP "3" 4 -ef-time-after-pentecost-24-wednesday +Wednesday of the 24th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Col 1:12-20.\s+2 +\s-2Epistle Col 1:12-20.\s+2 .br -\s-2Ev. John 18:33-37\s+2 +\s-2Gospel John 18:33-37\s+2 .IP "4" 4 -charles-borromeo +St. Charles Borromeo .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Matt 25:14-23\s+2 +\s-2Gospel Matt 25:14-23\s+2 .br -\s-2Com. sts-vitalis-and-agricola-martyrs\s+2 +\s-2Commemoration sts-vitalis-and-agricola-martyrs\s+2 .IP "5" 4 -ef-time-after-pentecost-24-friday +Friday of the 24th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Col 1:12-20.\s+2 +\s-2Epistle Col 1:12-20.\s+2 .br -\s-2Ev. John 18:33-37\s+2 +\s-2Gospel John 18:33-37\s+2 .IP "6" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .IP "7" 4 -ef-time-after-epiphany-sunday-5 +5th Sunday after Epiphany .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Col 3:12-17\s+2 +\s-2Epistle Col 3:12-17\s+2 .br -\s-2Ev. Matt 13:24-30\s+2 +\s-2Gospel Matt 13:24-30\s+2 .IP "8" 4 -ef-time-after-pentecost-25-monday +Monday of the 25th Week of the Time after Pentecost .br \s-2class-4 \(bu green\s+2 .br -\s-2Ep. Col 3:12-17\s+2 +\s-2Epistle Col 3:12-17\s+2 .br -\s-2Ev. Matt 13:24-30\s+2 +\s-2Gospel Matt 13:24-30\s+2 .br -\s-2Com. four-holy-crowned-martyrs\s+2 +\s-2Commemoration four-holy-crowned-martyrs\s+2 .IP "9" 4 -dedication-of-the-archbasilica-of-our-holy-savior +Dedication of the Archbasilica of Our Holy Savior .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Rev 21:2-5\s+2 +\s-2Epistle Rev 21:2-5\s+2 .br -\s-2Ev. Luke 19:1-10\s+2 +\s-2Gospel Luke 19:1-10\s+2 .br -\s-2Com. theodore\s+2 +\s-2Commemoration theodore\s+2 .IP "10" 4 -andrew-avellino +St. Andrew Avellino .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 31:8-11\s+2 +\s-2Epistle Sir 31:8-11\s+2 .br -\s-2Ev. Luke 12:35-40\s+2 +\s-2Gospel Luke 12:35-40\s+2 .br -\s-2Com. sts-tryphonis-respicii-et-nymphae\s+2 +\s-2Commemoration sts-tryphonis-respicii-et-nymphae\s+2 .IP "11" 4 -martin-of-tours +St. Martin of Tours .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Luke 11:33-36\s+2 +\s-2Gospel Luke 11:33-36\s+2 .br -\s-2Com. menna\s+2 +\s-2Commemoration menna\s+2 .IP "12" 4 -martin-i +St. Martin I .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .IP "13" 4 -didacus +St. Didacus .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor 4:9-14\s+2 +\s-2Epistle 1 Cor 4:9-14\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "14" 4 -ef-time-after-epiphany-sunday-6 +6th Sunday after Epiphany .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. 1 Thess 1:2-10\s+2 +\s-2Epistle 1 Thess 1:2-10\s+2 .br -\s-2Ev. Matt 13:31-35\s+2 +\s-2Gospel Matt 13:31-35\s+2 .IP "15" 4 -albert-the-great +St. Albert the Great .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .IP "16" 4 -gertrude-the-great +St. Gertrude the Great .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "17" 4 -gregory-the-wonderworker +St. Gregory the Wonderworker .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +\s-2Epistle Sir 44:16-27; 45:3-20\s+2 .br -\s-2Ev. Mark 11:22-24\s+2 +\s-2Gospel Mark 11:22-24\s+2 .IP "18" 4 -dedication-of-the-basilicas-of-sts-peter-paul +Dedication of the Basilicas of Sts. Peter & Paul .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Rev 21:2-5\s+2 +\s-2Epistle Rev 21:2-5\s+2 .br -\s-2Ev. Luke 19:1-10\s+2 +\s-2Gospel Luke 19:1-10\s+2 .IP "19" 4 -elizabeth-of-hungary +St. Elizabeth of Hungary .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Prov 31:10-31\s+2 +\s-2Epistle Prov 31:10-31\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .br -\s-2Com. pontian\s+2 +\s-2Commemoration pontian\s+2 .IP "20" 4 -felix-of-valois +St. Felix of Valois .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Cor. 4:9-14\s+2 +\s-2Epistle 1 Cor. 4:9-14\s+2 .br -\s-2Ev. Luke 12:32-34\s+2 +\s-2Gospel Luke 12:32-34\s+2 .IP "21" 4 -ef-time-after-pentecost-sunday-24 +24th and Last Sunday after Pentecost .br \s-2class-2 \(bu green\s+2 .br -\s-2Ep. Col 1:9-14\s+2 +\s-2Epistle Col 1:9-14\s+2 .br -\s-2Ev. Matt 24:15-35\s+2 +\s-2Gospel Matt 24:15-35\s+2 .IP "22" 4 -cecilia +St. Cecilia .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Sir 51:13-17.\s+2 +\s-2Epistle Sir 51:13-17.\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "23" 4 -clement-i +St. Clement I .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +\s-2Epistle Phil 3:17-21; 4:1-3\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .br -\s-2Com. felicity\s+2 +\s-2Commemoration felicity\s+2 .IP "24" 4 -john-of-the-cross +St. John of the Cross .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. chrysogonus\s+2 +\s-2Commemoration chrysogonus\s+2 .IP "25" 4 -catherine-of-alexandria +St. Catherine of Alexandria .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Sir 51:1-8; 51:12\s+2 +\s-2Epistle Sir 51:1-8; 51:12\s+2 .br -\s-2Ev. Matt 25:1-13.\s+2 +\s-2Gospel Matt 25:1-13.\s+2 .IP "26" 4 -sylvester +St. Sylvester .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Ecclus 45:1-6\s+2 +\s-2Epistle Ecclus 45:1-6\s+2 .br -\s-2Ev. Matt 19:27-29.\s+2 +\s-2Gospel Matt 19:27-29.\s+2 .br -\s-2Com. peter-of-alexandria\s+2 +\s-2Commemoration peter-of-alexandria\s+2 .IP "27" 4 -Officium sanctae Mariae in sabbato +Our Lady's Saturday Office .br \s-2class-4 \(bu white\s+2 .br -\s-2Ep. Ecclus 24:14-16\s+2 +\s-2Epistle Ecclus 24:14-16\s+2 .br -\s-2Ev. Luke 11:27-28\s+2 +\s-2Gospel Luke 11:27-28\s+2 .IP "28" 4 -ef-advent-sunday-1 +1st Sunday of Advent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Rom 13:11-14\s+2 +\s-2Epistle Rom 13:11-14\s+2 .br -\s-2Ev. Luke 21:25-33\s+2 +\s-2Gospel Luke 21:25-33\s+2 .IP "29" 4 -ef-advent-1-monday +Monday of the 1st Week of Advent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Rom 13:11-14\s+2 +\s-2Epistle Rom 13:11-14\s+2 .br -\s-2Ev. Luke 21:25-33\s+2 +\s-2Gospel Luke 21:25-33\s+2 .br -\s-2Com. saturninus\s+2 +\s-2Commemoration saturninus\s+2 .IP "30" 4 -andrew +St. Andrew .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Rom 10:10-18\s+2 +\s-2Epistle Rom 10:10-18\s+2 .br -\s-2Ev. Matt 4:18-22\s+2 +\s-2Gospel Matt 4:18-22\s+2 .br -\s-2Com. ef-advent-1-tuesday\s+2 +\s-2Commemoration Tuesday of the 1st Week of Advent\s+2 .SH @@ -3289,316 +3292,316 @@ December .LP .IP "1" 4 -ef-advent-1-wednesday +Wednesday of the 1st Week of Advent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Rom 13:11-14\s+2 +\s-2Epistle Rom 13:11-14\s+2 .br -\s-2Ev. Luke 21:25-33\s+2 +\s-2Gospel Luke 21:25-33\s+2 .IP "2" 4 -vivian +St. Vivian .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. Sir 51:13-17.\s+2 +\s-2Epistle Sir 51:13-17.\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .br -\s-2Com. ef-advent-1-thursday\s+2 +\s-2Commemoration Thursday of the 1st Week of Advent\s+2 .IP "3" 4 -francis-xavier +St. Francis Xavier .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Rom 10:10-18\s+2 +\s-2Epistle Rom 10:10-18\s+2 .br -\s-2Ev. Mark 16:15-18\s+2 +\s-2Gospel Mark 16:15-18\s+2 .br -\s-2Com. ef-advent-1-friday\s+2 +\s-2Commemoration Friday of the 1st Week of Advent\s+2 .IP "4" 4 -peter-chrysologus +St. Peter Chrysologus .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. ef-advent-1-saturday\s+2 +\s-2Commemoration Saturday of the 1st Week of Advent\s+2 .br -\s-2Com. barbara\s+2 +\s-2Commemoration barbara\s+2 .IP "5" 4 -ef-advent-sunday-2 +2nd Sunday of Advent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Rom 15:4-13\s+2 +\s-2Epistle Rom 15:4-13\s+2 .br -\s-2Ev. Matt 11:2-10\s+2 +\s-2Gospel Matt 11:2-10\s+2 .IP "6" 4 -nicholas +St. Nicholas .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. Heb 13:7-17\s+2 +\s-2Epistle Heb 13:7-17\s+2 .br -\s-2Ev. Matt 25:14-23\s+2 +\s-2Gospel Matt 25:14-23\s+2 .br -\s-2Com. ef-advent-2-monday\s+2 +\s-2Commemoration Monday of the 2nd Week of Advent\s+2 .IP "7" 4 -ambrose +St. Ambrose .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 2 Tim 4:1-8\s+2 +\s-2Epistle 2 Tim 4:1-8\s+2 .br -\s-2Ev. Matt 5:13-19\s+2 +\s-2Gospel Matt 5:13-19\s+2 .br -\s-2Com. ef-advent-2-tuesday\s+2 +\s-2Commemoration Tuesday of the 2nd Week of Advent\s+2 .IP "8" 4 -immaculate-conception-of-the-blessed-virgin-mary +Immaculate Conception of the Blessed Virgin Mary .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Prov 8:22-35\s+2 +\s-2Epistle Prov 8:22-35\s+2 .br -\s-2Ev. Luke 1:26-28\s+2 +\s-2Gospel Luke 1:26-28\s+2 .br -\s-2Com. ef-advent-2-wednesday\s+2 +\s-2Commemoration Wednesday of the 2nd Week of Advent\s+2 .IP "9" 4 -ef-advent-2-thursday +Thursday of the 2nd Week of Advent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Rom 15:4-13\s+2 +\s-2Epistle Rom 15:4-13\s+2 .br -\s-2Ev. Matt 11:2-10\s+2 +\s-2Gospel Matt 11:2-10\s+2 .IP "10" 4 -ef-advent-2-friday +Friday of the 2nd Week of Advent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Rom 15:4-13\s+2 +\s-2Epistle Rom 15:4-13\s+2 .br -\s-2Ev. Matt 11:2-10\s+2 +\s-2Gospel Matt 11:2-10\s+2 .br -\s-2Com. melchiades\s+2 +\s-2Commemoration melchiades\s+2 .IP "11" 4 -damasus-i +St. Damasus I .br \s-2class-3 \(bu white\s+2 .br -\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +\s-2Epistle 1 Pet 5:1-4; 5:10-11.\s+2 .br -\s-2Ev. Matt 16:13-19\s+2 +\s-2Gospel Matt 16:13-19\s+2 .br -\s-2Com. ef-advent-2-saturday\s+2 +\s-2Commemoration Saturday of the 2nd Week of Advent\s+2 .IP "12" 4 -ef-advent-sunday-3 +3rd Sunday of Advent .br \s-2class-1 \(bu rose\s+2 .br -\s-2Ep. Phil 4:4-7\s+2 +\s-2Epistle Phil 4:4-7\s+2 .br -\s-2Ev. John 1:19-28\s+2 +\s-2Gospel John 1:19-28\s+2 .IP "13" 4 -lucy +St. Lucy .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +\s-2Epistle 2 Cor 10:17-18; 11:1-2\s+2 .br -\s-2Ev. Matt 13:44-52.\s+2 +\s-2Gospel Matt 13:44-52.\s+2 .br -\s-2Com. ef-advent-3-monday\s+2 +\s-2Commemoration Monday of the 3rd Week of Advent\s+2 .IP "14" 4 -ef-advent-3-tuesday +Tuesday of the 3rd Week of Advent .br \s-2class-3 \(bu violet\s+2 .br -\s-2Ep. Phil 4:4-7\s+2 +\s-2Epistle Phil 4:4-7\s+2 .br -\s-2Ev. John 1:19-28\s+2 +\s-2Gospel John 1:19-28\s+2 .IP "15" 4 -ef-advent-ember-wed +Advent Ember Wednesday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Isa 7:10-15\s+2 +\s-2Epistle Isa 7:10-15\s+2 .br -\s-2Ev. Luke 1:26-38\s+2 +\s-2Gospel Luke 1:26-38\s+2 .IP "16" 4 -eusebius +St. Eusebius .br \s-2class-3 \(bu red\s+2 .br -\s-2Ep. 2 Cor. 1:3-7\s+2 +\s-2Epistle 2 Cor. 1:3-7\s+2 .br -\s-2Ev. Matt 16:24-27.\s+2 +\s-2Gospel Matt 16:24-27.\s+2 .br -\s-2Com. ef-advent-3-thursday\s+2 +\s-2Commemoration Thursday of the 3rd Week of Advent\s+2 .IP "17" 4 -ef-advent-ember-fri +Advent Ember Friday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. Isa 11:1-5\s+2 +\s-2Epistle Isa 11:1-5\s+2 .br -\s-2Ev. Luke 1:39-47\s+2 +\s-2Gospel Luke 1:39-47\s+2 .IP "18" 4 -ef-advent-ember-sat +Advent Ember Saturday .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 2 Thess 2:1-8\s+2 +\s-2Epistle 2 Thess 2:1-8\s+2 .br -\s-2Ev. Luke 3:1-6\s+2 +\s-2Gospel Luke 3:1-6\s+2 .IP "19" 4 -ef-advent-sunday-4 +4th Sunday of Advent .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 4:1-5\s+2 +\s-2Epistle 1 Cor. 4:1-5\s+2 .br -\s-2Ev. Luke 3:1-6\s+2 +\s-2Gospel Luke 3:1-6\s+2 .IP "20" 4 -ef-advent-4-monday +Monday of the 4th Week of Advent .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 4:1-5\s+2 +\s-2Epistle 1 Cor. 4:1-5\s+2 .br -\s-2Ev. Luke 3:1-6\s+2 +\s-2Gospel Luke 3:1-6\s+2 .IP "21" 4 -thomas +St. Thomas .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Eph 2:19-22\s+2 +\s-2Epistle Eph 2:19-22\s+2 .br -\s-2Ev. John 20:24-29\s+2 +\s-2Gospel John 20:24-29\s+2 .br -\s-2Com. ef-advent-4-tuesday\s+2 +\s-2Commemoration Tuesday of the 4th Week of Advent\s+2 .IP "22" 4 -ef-advent-4-wednesday +Wednesday of the 4th Week of Advent .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 4:1-5\s+2 +\s-2Epistle 1 Cor. 4:1-5\s+2 .br -\s-2Ev. Luke 3:1-6\s+2 +\s-2Gospel Luke 3:1-6\s+2 .IP "23" 4 -ef-advent-4-thursday +Thursday of the 4th Week of Advent .br \s-2class-2 \(bu violet\s+2 .br -\s-2Ep. 1 Cor. 4:1-5\s+2 +\s-2Epistle 1 Cor. 4:1-5\s+2 .br -\s-2Ev. Luke 3:1-6\s+2 +\s-2Gospel Luke 3:1-6\s+2 .IP "24" 4 -ef-nativity-vigil +Vigil of the Nativity (Christmas Eve) .br \s-2class-1 \(bu violet\s+2 .br -\s-2Ep. Rom 1:1-6\s+2 +\s-2Epistle Rom 1:1-6\s+2 .br -\s-2Ev. Matt 1:18-21\s+2 +\s-2Gospel Matt 1:18-21\s+2 .IP "25" 4 -ef-nativity +The Nativity of Our Lord (Christmas) .br \s-2class-1 \(bu white\s+2 .br -\s-2Ep. Heb 1:1-12\s+2 +\s-2Epistle Heb 1:1-12\s+2 .br -\s-2Ev. John 1:1-14\s+2 +\s-2Gospel John 1:1-14\s+2 .IP "26" 4 -ef-christmas-sunday-0 +Sunday within the Octave of the Nativity .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Gal 4:1-7\s+2 +\s-2Epistle Gal 4:1-7\s+2 .br -\s-2Ev. Luke 2:33-40\s+2 +\s-2Gospel Luke 2:33-40\s+2 .br -\s-2Com. stephen\s+2 +\s-2Commemoration St. Stephen\s+2 .IP "27" 4 -john-the-evangelist +St. John the Evangelist .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Ecclus 15:1-6\s+2 +\s-2Epistle Ecclus 15:1-6\s+2 .br -\s-2Ev. John 21:19-24\s+2 +\s-2Gospel John 21:19-24\s+2 .br -\s-2Com. ef-nativity-octave-day-3\s+2 +\s-2Commemoration ef-nativity-octave-day-3\s+2 .IP "28" 4 -holy-innocents +Holy Innocents .br \s-2class-2 \(bu red\s+2 .br -\s-2Ep. Apoc 14:1-5\s+2 +\s-2Epistle Apoc 14:1-5\s+2 .br -\s-2Ev. Matt 2:13-18\s+2 +\s-2Gospel Matt 2:13-18\s+2 .br -\s-2Com. ef-nativity-octave-day-4\s+2 +\s-2Commemoration ef-nativity-octave-day-4\s+2 .IP "29" 4 -ef-nativity-octave-day-5 +5th Day within the Octave of the Nativity .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Titus 3:4-7\s+2 +\s-2Epistle Titus 3:4-7\s+2 .br -\s-2Ev. Luke 2:15-20\s+2 +\s-2Gospel Luke 2:15-20\s+2 .br -\s-2Com. thomas-becket\s+2 +\s-2Commemoration thomas-becket\s+2 .IP "30" 4 -ef-nativity-octave-day-6 +6th Day within the Octave of the Nativity .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Titus 3:4-7\s+2 +\s-2Epistle Titus 3:4-7\s+2 .br -\s-2Ev. Luke 2:15-20\s+2 +\s-2Gospel Luke 2:15-20\s+2 .IP "31" 4 -ef-nativity-octave-day-7 +7th Day within the Octave of the Nativity .br \s-2class-2 \(bu white\s+2 .br -\s-2Ep. Titus 3:4-7\s+2 +\s-2Epistle Titus 3:4-7\s+2 .br -\s-2Ev. Luke 2:15-20\s+2 +\s-2Gospel Luke 2:15-20\s+2 .br -\s-2Com. silvester\s+2 +\s-2Commemoration silvester\s+2 diff --git a/test/golden/ordo-2027.tex b/test/golden/ordo-2027.tex index f5faa3d..9017009 100644 --- a/test/golden/ordo-2027.tex +++ b/test/golden/ordo-2027.tex @@ -1,2737 +1,4309 @@ % colitur ordo booklet -- LaTeX. flavour: latex -% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex +% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex && +% pdflatex ordo.tex (twice, so \pageref in the table of contents settles) % -% Day label falls back to the slug when the day carries no Latin name (most -% temporal days, and most sanctoral entries, which are Latin-less in the -% shipped data). The fallback is written as a name-section wrapping a plain -% var and its inverse, deliberately NOT as a single dotted-path lookup -% followed by its own inverse: a dotted lookup that misses climbs to the -% enclosing scope for the WHOLE path, and the month object also carries a -% same-named key one level up, so the naive form would render the month's -% own Latin name on every day lacking one, and never fall back at all. -\documentclass[10pt,twoside]{article} -\usepackage[a5paper,margin=15mm]{geometry} +% A5, one week per page, each day in a framed box with a colour swatch. Every +% fixed string (headings, the Epistle/Gospel/Commemoration/Week labels) +% comes from the view's term vocabulary rather than being written into this +% file, so a translated booklet needs no template edit -- only a different +% --lang. +% +% The observed day's own display name is a PLAIN resolved string +% (View.of_days, Task 5), never a lang-keyed object -- there is no +% dotted-la-with-slug-fallback idiom to write here at all; a day with no +% name in the shipped data still resolves to something printable (its slug, +% under --raw, or the lang table's own miss-echoes-the-key behaviour), so +% the plain name field alone is always enough. +% +% The engine has no parent-path syntax: nested inside a month's own week +% loop, a bare week-number reference finds the WEEK's own number, and there +% is no way to reach the enclosing month's from there. That is why each +% week object carries its own month number and month name fields +% (lib/render/view.ml, Task 5) -- used throughout below instead of a +% parent-path reference, which this engine cannot express. +% +% This template's own %-comments are plain text to the engine: it has no +% awareness of LaTeX's comment syntax, and a stray double-brace pair inside +% one would still be parsed as a tag -- which is why this whole header is +% deliberately written without ever typing two curly braces next to each +% other, even to name a field. +\documentclass[10pt]{article} +\usepackage[a5paper,top=11mm,bottom=12mm,inner=14mm,outer=10mm]{geometry} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} +\usepackage{xcolor} +\usepackage{tikz} +\usepackage{tcolorbox} \usepackage{fancyhdr} -\pagestyle{fancy} -\fancyhead[C]{ORDO 2027 \textperiodcentered\ ef} +\usepackage[hidelinks]{hyperref} +\definecolor{licolwhite}{HTML}{FFFFFF} +\definecolor{licolred}{HTML}{C1272D} +\definecolor{licolgreen}{HTML}{2E7D32} +\definecolor{licolviolet}{HTML}{6A1B9A} +\definecolor{licolrose}{HTML}{E91E8C} +\definecolor{licolblack}{HTML}{000000} +% A framed square, always outlined in black regardless of fill -- so white +% (and, on a black background page, black) still reads as a swatch rather +% than a gap. tikz (a tcolorbox dependency already) draws the border; xcolor +% alone cannot outline a filled rule. +\newcommand{\swatch}[1]{\tikz[baseline=-0.6ex]{\fill[draw=black,line width=0.4pt,fill=#1] (0,0) rectangle (2.4ex,2.4ex);}} +\pagestyle{fancy}\fancyhf{} +\fancyhead[C]{\small Ordo 2027 \textperiodcentered\ ef} +\fancyfoot[C]{\small\thepage} +\renewcommand{\headrulewidth}{0.4pt} \setlength{\parindent}{0pt} \begin{document} -\section*{ Ianuarius } +\begin{center} +\Large\bfseries Ordo 2027\\[2pt] +\normalsize\mdseries ef +\end{center} +\vspace{4mm} +{\bfseries Contents}\par\vspace{2mm} +\begin{small} + +\textbf{ January }\par +\hspace*{4mm}Week 1\dotfill\pageref{w1-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w1-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w1-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w1-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w1-5}\par +\hspace*{4mm}Week 6\dotfill\pageref{w1-6}\par + + +\textbf{ February }\par +\hspace*{4mm}Week 1\dotfill\pageref{w2-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w2-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w2-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w2-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w2-5}\par + + +\textbf{ March }\par +\hspace*{4mm}Week 1\dotfill\pageref{w3-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w3-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w3-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w3-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w3-5}\par + + +\textbf{ April }\par +\hspace*{4mm}Week 1\dotfill\pageref{w4-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w4-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w4-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w4-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w4-5}\par + + +\textbf{ May }\par +\hspace*{4mm}Week 1\dotfill\pageref{w5-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w5-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w5-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w5-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w5-5}\par +\hspace*{4mm}Week 6\dotfill\pageref{w5-6}\par + + +\textbf{ June }\par +\hspace*{4mm}Week 1\dotfill\pageref{w6-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w6-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w6-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w6-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w6-5}\par + + +\textbf{ July }\par +\hspace*{4mm}Week 1\dotfill\pageref{w7-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w7-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w7-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w7-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w7-5}\par + + +\textbf{ August }\par +\hspace*{4mm}Week 1\dotfill\pageref{w8-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w8-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w8-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w8-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w8-5}\par + + +\textbf{ September }\par +\hspace*{4mm}Week 1\dotfill\pageref{w9-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w9-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w9-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w9-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w9-5}\par + + +\textbf{ October }\par +\hspace*{4mm}Week 1\dotfill\pageref{w10-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w10-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w10-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w10-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w10-5}\par +\hspace*{4mm}Week 6\dotfill\pageref{w10-6}\par + + +\textbf{ November }\par +\hspace*{4mm}Week 1\dotfill\pageref{w11-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w11-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w11-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w11-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w11-5}\par + + +\textbf{ December }\par +\hspace*{4mm}Week 1\dotfill\pageref{w12-1}\par +\hspace*{4mm}Week 2\dotfill\pageref{w12-2}\par +\hspace*{4mm}Week 3\dotfill\pageref{w12-3}\par +\hspace*{4mm}Week 4\dotfill\pageref{w12-4}\par +\hspace*{4mm}Week 5\dotfill\pageref{w12-5}\par + + +\end{small} + +\clearpage + + +\label{w1-1} +{\bfseries\large January }\hfill{\small Week 1}\par\vspace{0.5mm} + + + + + + + + + + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries The Octave Day of the Nativity }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } + +\end{tcolorbox} + + +\clearpage + +\label{w1-2} +{\bfseries\large January }\hfill{\small Week 2}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries The Holy Name of Jesus }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 4:8-12 }\quad{\scriptsize Gospel\ Luke 2:21 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Monday before Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Tuesday before Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } +\par{\scriptsize Commemoration\ telesphorus-pope-and-martyr } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries The Epiphany of Our Lord }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Thursday after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } + +\end{tcolorbox} + + +\clearpage + +\label{w1-3} +{\bfseries\large January }\hfill{\small Week 3}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries The Holy Family }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Luke 2:42-52 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Monday of the 1st Week of the Time after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 } +\par{\scriptsize Commemoration\ hyginus-pope-and-martyr } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Tuesday of the 1st Week of the Time after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Commemoration of the Baptism of the Lord }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ John 1:29-34 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Hilary }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ felicis } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Paul, the First Hermit }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Matt 11:25-30 } +\par{\scriptsize Commemoration\ maur-abbot } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries St. Marcellus I }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } + +\end{tcolorbox} + + +\clearpage + +\label{w1-4} +{\bfseries\large January }\hfill{\small Week 4}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 2nd Sunday after Epiphany }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 2nd Week of the Time after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } +\par{\scriptsize Commemoration\ prisca } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 2nd Week of the Time after Epiphany }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } +\par{\scriptsize Commemoration\ canute-martyr }\par{\scriptsize Commemoration\ sts-marius-martha-audifax-abachum } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries Sts. Fabian \& Sebastian }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Heb 11:33-39 }\quad{\scriptsize Gospel\ Luke 6:17-23 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Agnes }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries Sts. Vincent \& Anastasius }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Raymond of Peñafort }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\par{\scriptsize Commemoration\ emerentiana } +\end{tcolorbox} + + +\clearpage + +\label{w1-5} +{\bfseries\large January }\hfill{\small Week 5}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries Septuagesima Sunday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 9:24-27; 10:1-5 }\quad{\scriptsize Gospel\ Matt 20:1-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Conversion of St. Paul }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 9:1-22 }\quad{\scriptsize Gospel\ Matt 19:27-29. } +\par{\scriptsize Commemoration\ peter } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Polycarp }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 John 3:10-16 }\quad{\scriptsize Gospel\ Matt 10:26-32. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. John Chrysostom }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Peter Nolasco }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\par{\scriptsize Commemoration\ agnes-secundo } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Francis de Sales }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries St. Martina }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } + +\end{tcolorbox} + + +\clearpage + +\label{w1-6} +{\bfseries\large January }\hfill{\small Week 6}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries Sexagesima Sunday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 } + +\end{tcolorbox} + + + + + + + + + + + + + + +\clearpage + + + +\label{w2-1} +{\bfseries\large February }\hfill{\small Week 1}\par\vspace{0.5mm} + + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries St. Ignatius of Antioch }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Rom 8:35-39 }\quad{\scriptsize Gospel\ John 12:24-26 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Purification of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Mal 3:1-4 }\quad{\scriptsize Gospel\ Luke 2:22-32 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 2nd Week of Septuagesimatide }\par +{\scriptsize 4th Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 } +\par{\scriptsize Commemoration\ blaise } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Andrew Corsini }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries St. Agatha }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Cor. 1:26-31 }\quad{\scriptsize Gospel\ Matt 19:3-12. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Titus }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\par{\scriptsize Commemoration\ dorothy } +\end{tcolorbox} + + +\clearpage + +\label{w2-2} +{\bfseries\large February }\hfill{\small Week 2}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries Quinquagesima Sunday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 13:1-13 }\quad{\scriptsize Gospel\ Luke 18:31-43 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. John of Matha }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Cyril of Alexandria }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ appollonia } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Ash Wednesday }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Joel 2:12-19 }\quad{\scriptsize Gospel\ Matt 6:16-21 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday after Ash Wednesday }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 38:1-6 }\quad{\scriptsize Gospel\ Matt 8:5-13 } +\par{\scriptsize Commemoration\ Our Lady of Lourdes } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Friday after Ash Wednesday }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 58:1-9 }\quad{\scriptsize Gospel\ Matt 5:43-48; 6:1-4 } +\par{\scriptsize Commemoration\ Seven Holy Servite Founders } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Saturday after Ash Wednesday }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 58:9-14 }\quad{\scriptsize Gospel\ Mark 6:47-56 } + +\end{tcolorbox} + + +\clearpage + +\label{w2-3} +{\bfseries\large February }\hfill{\small Week 3}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 1st Sunday of Lent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 2 Cor. 6:1-10 }\quad{\scriptsize Gospel\ Matt 4:1-11 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 1st Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ezech 34:11-16 }\quad{\scriptsize Gospel\ Matt 25:31-46 } +\par{\scriptsize Commemoration\ sts-faustinus-jovita } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 1st Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 55:6-11 }\quad{\scriptsize Gospel\ Matt 21:10-17 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Lenten Ember Wednesday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 3 Kgs. 19:3-8 }\quad{\scriptsize Gospel\ Matt 12:38-50 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 1st Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ezech 18:1-9 }\quad{\scriptsize Gospel\ Matt 15:21-28 } +\par{\scriptsize Commemoration\ simeon } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Lenten Ember Friday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ezech 18:20-28 }\quad{\scriptsize Gospel\ John 5:1-15 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Lenten Ember Saturday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Thess. 5:14-23 }\quad{\scriptsize Gospel\ Matt 17:1-9 } + +\end{tcolorbox} + + +\clearpage + +\label{w2-4} +{\bfseries\large February }\hfill{\small Week 4}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 2nd Sunday of Lent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Thess. 4:1-7 }\quad{\scriptsize Gospel\ Matt 17:1-9 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Chair of St. Peter }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 1:1-7 }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\par{\scriptsize Commemoration\ Monday of the 2nd Week of Lent }\par{\scriptsize Commemoration\ paul } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 2nd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 3 Kings 17:8-16 }\quad{\scriptsize Gospel\ Matt 23:1-12 } +\par{\scriptsize Commemoration\ St. Peter Damien } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries St. Matthias }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 1:15-26 }\quad{\scriptsize Gospel\ Matt 11:25-30 } +\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Lent } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 2nd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jer 17:5-10 }\quad{\scriptsize Gospel\ Luke 16:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Friday of the 2nd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Gen 37:6-22 }\quad{\scriptsize Gospel\ Matt 21:33-46 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Saturday of the 2nd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Gen 27:6-40 }\quad{\scriptsize Gospel\ Luke 15:11-32 } +\par{\scriptsize Commemoration\ St. Gabriel of Our Lady of Sorrows } +\end{tcolorbox} + + +\clearpage + +\label{w2-5} +{\bfseries\large February }\hfill{\small Week 5}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 3rd Sunday of Lent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Eph 5:1-9 }\quad{\scriptsize Gospel\ Luke 11:14-28 } + +\end{tcolorbox} + + + + + + + + + + + + + + +\clearpage + + + +\label{w3-1} +{\bfseries\large March }\hfill{\small Week 1}\par\vspace{0.5mm} + + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 4 Kings 5:1-15 }\quad{\scriptsize Gospel\ Luke 4:23-30 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 4 Kings 4:1-7 }\quad{\scriptsize Gospel\ Matt 18:15-22 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ex 20:12-24 }\quad{\scriptsize Gospel\ Matt 15:1-20 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jer 7:1-7 }\quad{\scriptsize Gospel\ Luke 4:38-44. } +\par{\scriptsize Commemoration\ St. Casimir }\par{\scriptsize Commemoration\ lucius } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Friday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Num 20:1, 3; 6-13. }\quad{\scriptsize Gospel\ John 4:5-42 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Saturday of the 3rd Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Dan 13:1-9, 15-17, 19-30, 33-62. }\quad{\scriptsize Gospel\ John 8:1-11 } +\par{\scriptsize Commemoration\ Sts. Felicitas \& Perpetua } +\end{tcolorbox} + + +\clearpage + +\label{w3-2} +{\bfseries\large March }\hfill{\small Week 2}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par +{\bfseries 4th Sunday of Lent }\par +{\scriptsize 1st Class \textperiodcentered\ Rose }\par +{\scriptsize Epistle\ Gal 4:22-31 }\quad{\scriptsize Gospel\ John 6:1-15 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 3 Kings 3:16-28 }\quad{\scriptsize Gospel\ John 2:13-25 } +\par{\scriptsize Commemoration\ St. John of God } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ex 32:7-14 }\quad{\scriptsize Gospel\ John 7:14-31 } +\par{\scriptsize Commemoration\ St. Frances Rome } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa. 1:16-19 }\quad{\scriptsize Gospel\ John 9:1-38 } +\par{\scriptsize Commemoration\ forty-holy-martyrs-of-sebaste } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 4 Kings 4:25-38 }\quad{\scriptsize Gospel\ Luke 7:11-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Friday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 3 Kings 17:17-24 }\quad{\scriptsize Gospel\ John 11:1-45 } +\par{\scriptsize Commemoration\ gregory-the-great } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Saturday of the 4th Week of Lent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 49:8-15 }\quad{\scriptsize Gospel\ John 8:12-20 } + +\end{tcolorbox} + + +\clearpage + +\label{w3-3} +{\bfseries\large March }\hfill{\small Week 3}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries Passion Sunday }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 8:46-59. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 1st Week of Passion Week }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jonas 3:1-10 }\quad{\scriptsize Gospel\ John 7:32-39 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 1st Week of Passion Week }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Dan 14:27, 28-42 }\quad{\scriptsize Gospel\ John 7:1-13 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 1st Week of Passion Week }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Lev 19:1-2, 11-19, 25 }\quad{\scriptsize Gospel\ John 10:22-38 } +\par{\scriptsize Commemoration\ patrick } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 1st Week of Passion Week }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Dan 3:25, 34-45. }\quad{\scriptsize Gospel\ Luke 7:36-50 } +\par{\scriptsize Commemoration\ cyril-of-jerusalem } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Joseph, Spouse of the Bl. Virgin Mary }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 } +\par{\scriptsize Commemoration\ Friday of the 1st Week of Passion Week } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Saturday of the 1st Week of Passion Week }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jer 18:18-23 }\quad{\scriptsize Gospel\ John 12:10-36 } + +\end{tcolorbox} + + +\clearpage + +\label{w3-4} +{\bfseries\large March }\hfill{\small Week 4}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries Palm Sunday }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ Matt. 26:36-75; 27:1-60. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of Holy Week }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 50:5-10 }\quad{\scriptsize Gospel\ John 12:1-9 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of Holy Week }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jer 11:18-20 }\quad{\scriptsize Gospel\ Mark 14:32-72; 15, 1-46 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of Holy Week (Spy Wednesday) }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 53:1-12 }\quad{\scriptsize Gospel\ Luke 22:39-71; 23:1-53 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Holy Thursday (Maundy Thursday) }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 11:20-32 }\quad{\scriptsize Gospel\ John 13:1-15 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolblack}\par +{\bfseries Good Friday }\par +{\scriptsize 1st Class \textperiodcentered\ Black }\par +{\scriptsize Epistle\ Ex 12:1-11 }\quad{\scriptsize Gospel\ John 18:1-40; 19:1-42 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Holy Saturday }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Col 3:1-4 }\quad{\scriptsize Gospel\ Matt 28:1-7 } + +\end{tcolorbox} + + +\clearpage + +\label{w3-5} +{\bfseries\large March }\hfill{\small Week 5}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Easter Sunday }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 5:7-8 }\quad{\scriptsize Gospel\ Mark 16:1-7 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Monday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 10:37-43. }\quad{\scriptsize Gospel\ Luke 24:13-35 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Tuesday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 13:16; 13:26-33 }\quad{\scriptsize Gospel\ Luke 24:36-47 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Wednesday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 3:13-15; 3:17-19 }\quad{\scriptsize Gospel\ John 21:1-14 } + +\end{tcolorbox} + + + + + + + + +\clearpage + + + +\label{w4-1} +{\bfseries\large April }\hfill{\small Week 1}\par\vspace{0.5mm} + + + + + + + + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Thursday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 8:26-40 }\quad{\scriptsize Gospel\ John 20:11-18 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 3:18-22 }\quad{\scriptsize Gospel\ Matt 28:16-20 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Saturday of Easter Week }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:1-10 }\quad{\scriptsize Gospel\ John 20:1-9 } + +\end{tcolorbox} + + +\clearpage + +\label{w4-2} +{\bfseries\large April }\hfill{\small Week 2}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Low Sunday (Sunday in Easter Octave) }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Annunciation of the Blessed Virgin Mary }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Tuesday of the 2nd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Wednesday of the 2nd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Thursday of the 2nd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday of the 2nd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } + +\end{tcolorbox} + + +\clearpage + +\label{w4-3} +{\bfseries\large April }\hfill{\small Week 3}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries 2nd Sunday after Easter }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Monday of the 3rd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Hermenegild }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 14:26-33. } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries St. Justin }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Cor 1:18-25; 1:30; }\quad{\scriptsize Gospel\ Luke 12:2-8 } +\par{\scriptsize Commemoration\ sts-tiburtius-valerian-et-maximus-martyrs } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Thursday of the 3rd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday of the 3rd Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } +\par{\scriptsize Commemoration\ anicetus } +\end{tcolorbox} + + +\clearpage + +\label{w4-4} +{\bfseries\large April }\hfill{\small Week 4}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries 3rd Sunday after Easter }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Monday of the 4th Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Tuesday of the 4th Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Anselm }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries Sts. Soter \& Caius }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } + +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday of the 4th Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } +\par{\scriptsize Commemoration\ george } +\end{tcolorbox} + + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries St. Fidelis of Sigmaringen }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 } + +\end{tcolorbox} + + +\clearpage + +\label{w4-5} +{\bfseries\large April }\hfill{\small Week 5}\par\vspace{0.5mm} + + +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries 4th Sunday after Easter }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Jas 1:17-21 }\quad{\scriptsize Gospel\ John 16:5-14 } +\par{\scriptsize Commemoration\ major-litanies } +\end{tcolorbox} -\textbf{ 1 } \quad ef-circumcision\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries Sts. Cletus \& Marcellinus }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\textbf{ 2 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ +\end{tcolorbox} -\medskip -\textbf{ 3 } \quad Sanctissimi Nominis Iesu\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Acts 4:8-12\quad\small Ev. Luke 2:21\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Peter Canisius }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\medskip +\end{tcolorbox} -\textbf{ 4 } \quad ef-christmas-1-monday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Paul of the Cross }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 1:17-25. }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\end{tcolorbox} -\textbf{ 5 } \quad ef-christmas-1-tuesday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ -\small Com. telesphorus-pope-and-martyr\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Peter of Verona }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Matt 10:34-42 } -\textbf{ 6 } \quad ef-epiphany\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ +\end{tcolorbox} -\medskip -\textbf{ 7 } \quad ef-christmas-2-thursday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Catherine of Siena }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\medskip +\end{tcolorbox} -\textbf{ 8 } \quad ef-christmas-2-friday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ -\medskip +\clearpage -\textbf{ 9 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ -\medskip +\label{w5-1} +{\bfseries\large May }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 10 } \quad Sanctae Familiae Iesu, Mariae, Ioseph\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Col 3:12-17\quad\small Ev. Luke 2:42-52\\ -\medskip -\textbf{ 11 } \quad ef-time-after-epiphany-1-monday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\ -\small Com. hyginus-pope-and-martyr\\ -\medskip -\textbf{ 12 } \quad ef-time-after-epiphany-1-tuesday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\ -\medskip -\textbf{ 13 } \quad commemoration-of-the-baptism-of-the-lord\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Isa 60:1-6\quad\small Ev. John 1:29-34\\ -\medskip -\textbf{ 14 } \quad hilary\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. felicis\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Joseph the Workman }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Col. 3:14-15, 17, 23-24 }\quad{\scriptsize Gospel\ Matt 13:54-58 } +\end{tcolorbox} -\textbf{ 15 } \quad paul-the-first-hermit\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Phil 3:7-12\quad\small Ev. Matt 11:25-30\\ -\small Com. maur-abbot\\ -\medskip +\clearpage +\label{w5-2} +{\bfseries\large May }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 16 } \quad marcellus-i\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries 5th Sunday after Easter }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 } +\end{tcolorbox} -\textbf{ 17 } \quad ef-time-after-epiphany-sunday-2\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Rogation Monday }\par +{\scriptsize 4th Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 } +\par{\scriptsize Commemoration\ sts-alexander-companions } +\end{tcolorbox} -\textbf{ 18 } \quad ef-time-after-epiphany-2-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ -\small Com. prisca\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Monica }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Luke 7:11-16 } -\textbf{ 19 } \quad ef-time-after-epiphany-2-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ -\small Com. canute-martyr\\ -\small Com. sts-marius-martha-audifax-abachum\\ +\end{tcolorbox} -\medskip -\textbf{ 20 } \quad sts-fabian-sebastian\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Heb 11:33-39\quad\small Ev. Luke 6:17-23\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Vigil of the Ascension }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 17:1-11. } +\par{\scriptsize Commemoration\ St. Pius V } +\end{tcolorbox} -\medskip -\textbf{ 21 } \quad agnes\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries The Ascension of Our Lord }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Acts 1:1-11 }\quad{\scriptsize Gospel\ Mark 16:14-20 } -\medskip +\end{tcolorbox} -\textbf{ 22 } \quad sts-vincent-anastasius\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries St. Stanislaus }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 } +\end{tcolorbox} -\textbf{ 23 } \quad raymond-of-pe-afort\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\small Com. emerentiana\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } -\textbf{ 24 } \quad ef-septuagesima-sunday-1\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 9:24-27; 10:1-5\quad\small Ev. Matt 20:1-16\\ +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 25 } \quad conversion-of-st-paul\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Acts 9:1-22\quad\small Ev. Matt 19:27-29.\\ -\small Com. peter\\ +\label{w5-3} +{\bfseries\large May }\hfill{\small Week 3}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Sunday after the Ascension }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. } -\textbf{ 26 } \quad polycarp\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 John 3:10-16\quad\small Ev. Matt 10:26-32.\\ +\end{tcolorbox} -\medskip -\textbf{ 27 } \quad john-chrysostom\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Antoninus }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } +\par{\scriptsize Commemoration\ gordiano-and-epimacho } +\end{tcolorbox} -\medskip -\textbf{ 28 } \quad peter-nolasco\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ -\small Com. agnes-secundo\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries Sts. Philip \& James }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 14:1-13 } -\medskip +\end{tcolorbox} -\textbf{ 29 } \quad francis-de-sales\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries Sts. Nereus, Achilleus, Domitilla, \& Pancras }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 4:46-53 } +\end{tcolorbox} -\textbf{ 30 } \quad martina\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Robert Bellarmine }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\textbf{ 31 } \quad ef-septuagesima-sunday-2\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\ +\end{tcolorbox} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Friday of the 7th Week of Eastertide }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. } +\par{\scriptsize Commemoration\ boniface-martyr } +\end{tcolorbox} -\section*{ Februarius } -\textbf{ 1 } \quad ignatius-of-antioch\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Rom 8:35-39\quad\small Ev. John 12:24-26\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries Vigil of Pentecost }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 19:1-8. }\quad{\scriptsize Gospel\ John 14:15-21. } +\end{tcolorbox} -\textbf{ 2 } \quad purification-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Mal 3:1-4\quad\small Ev. Luke 2:22-32\\ -\medskip +\clearpage +\label{w5-4} +{\bfseries\large May }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 3 } \quad ef-septuagesima-2-wednesday\\ -\small class-4 \textperiodcentered\ violet\\ -\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\ -\small Com. blaise\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Sunday } \hfill \swatch{licolred}\par +{\bfseries Pentecost Sunday (Whitsunday) }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 2:1-11. }\quad{\scriptsize Gospel\ John 14:23-31. } +\end{tcolorbox} -\textbf{ 4 } \quad andrew-corsini\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries Monday of Pentecost Week }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 10:34, 42-48 }\quad{\scriptsize Gospel\ John 3:16-21 } -\textbf{ 5 } \quad agatha\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Cor. 1:26-31\quad\small Ev. Matt 19:3-12.\\ +\end{tcolorbox} -\medskip -\textbf{ 6 } \quad titus\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 10:1-9\\ -\small Com. dorothy\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries Tuesday of Pentecost Week }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 8:14-17. }\quad{\scriptsize Gospel\ John 10:1-10. } -\medskip +\end{tcolorbox} -\textbf{ 7 } \quad ef-septuagesima-sunday-3\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 13:1-13\quad\small Ev. Luke 18:31-43\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries Pentecost Ember Wednesday }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 5:12-16 }\quad{\scriptsize Gospel\ John 6:44-52. } +\end{tcolorbox} -\textbf{ 8 } \quad john-of-matha\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries Thursday of Pentecost Week }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 8:5-8 }\quad{\scriptsize Gospel\ Luke 9:1-6 } -\textbf{ 9 } \quad cyril-of-alexandria\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. appollonia\\ +\end{tcolorbox} -\medskip -\textbf{ 10 } \quad ef-ash-wednesday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Joel 2:12-19\quad\small Ev. Matt 6:16-21\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries Pentecost Ember Friday }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Joel 2:23-24; 26-27 }\quad{\scriptsize Gospel\ Luke 5:17-26 } -\medskip +\end{tcolorbox} -\textbf{ 11 } \quad ef-lent-after-ashes-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa 38:1-6\quad\small Ev. Matt 8:5-13\\ -\small Com. our-lady-of-lourdes\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries Pentecost Ember Saturday }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Rom 5:1-5. }\quad{\scriptsize Gospel\ Luke 4:38-44. } +\end{tcolorbox} -\textbf{ 12 } \quad ef-lent-after-ashes-friday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa 58:1-9\quad\small Ev. Matt 5:43-48; 6:1-4\\ -\small Com. seven-holy-servite-founders\\ -\medskip +\clearpage +\label{w5-5} +{\bfseries\large May }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 13 } \quad ef-lent-after-ashes-saturday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa 58:9-14\quad\small Ev. Mark 6:47-56\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Trinity Sunday }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rom 11:33-36. }\quad{\scriptsize Gospel\ Matt 28:18-20 } +\end{tcolorbox} -\textbf{ 14 } \quad ef-lent-sunday-1\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. 2 Cor. 6:1-10\quad\small Ev. Matt 4:1-11\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 1st Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 John 4:8-21 }\quad{\scriptsize Gospel\ Luke 6:36-42 } -\textbf{ 15 } \quad ef-lent-1-monday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Ezech 34:11-16\quad\small Ev. Matt 25:31-46\\ -\small Com. sts-faustinus-jovita\\ +\end{tcolorbox} -\medskip -\textbf{ 16 } \quad ef-lent-1-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa 55:6-11\quad\small Ev. Matt 21:10-17\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Gregory VII }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\par{\scriptsize Commemoration\ urban-pope-and-martyr } +\end{tcolorbox} -\medskip -\textbf{ 17 } \quad ef-lent-ember-wed\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 3 Kgs. 19:3-8\quad\small Ev. Matt 12:38-50\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Philip Neri }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\par{\scriptsize Commemoration\ eleutherius } +\end{tcolorbox} -\medskip -\textbf{ 18 } \quad ef-lent-1-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Ezech 18:1-9\quad\small Ev. Matt 15:21-28\\ -\small Com. simeon\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Corpus Christi }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 11:23-29 }\quad{\scriptsize Gospel\ John 6:56-59 } -\medskip +\end{tcolorbox} -\textbf{ 19 } \quad ef-lent-ember-fri\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Ezech 18:20-28\quad\small Ev. John 5:1-15\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Augustine of Canterbury }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Thess 2:2-9 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\end{tcolorbox} -\textbf{ 20 } \quad ef-lent-ember-sat\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Thess. 5:14-23\quad\small Ev. Matt 17:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Mary Magdalene de Pazzi }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\textbf{ 21 } \quad ef-lent-sunday-2\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. 1 Thess. 4:1-7\quad\small Ev. Matt 17:1-9\\ +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 22 } \quad chair-of-st-peter\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. 1 Pet 1:1-7\quad\small Ev. Matt 16:13-19\\ -\small Com. ef-lent-2-monday\\ -\small Com. paul\\ +\label{w5-6} +{\bfseries\large May }\hfill{\small Week 6}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 2nd Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } -\textbf{ 23 } \quad ef-lent-2-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 3 Kings 17:8-16\quad\small Ev. Matt 23:1-12\\ -\small Com. peter-damien\\ +\end{tcolorbox} -\medskip -\textbf{ 24 } \quad matthias\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Acts 1:15-26\quad\small Ev. Matt 11:25-30\\ -\small Com. ef-lent-2-wednesday\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Queenship of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Eccli 24:5; 14:7; 14:9-11; 24:30-31 }\quad{\scriptsize Gospel\ Luke 1:26-33 } +\par{\scriptsize Commemoration\ petronilla } +\end{tcolorbox} -\medskip -\textbf{ 25 } \quad ef-lent-2-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Jer 17:5-10\quad\small Ev. Luke 16:19-31\\ -\medskip -\textbf{ 26 } \quad ef-lent-2-friday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Gen 37:6-22\quad\small Ev. Matt 21:33-46\\ -\medskip -\textbf{ 27 } \quad ef-lent-2-saturday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Gen 27:6-40\quad\small Ev. Luke 15:11-32\\ -\small Com. gabriel-of-our-lady-of-sorrows\\ -\medskip -\textbf{ 28 } \quad ef-lent-sunday-3\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Eph 5:1-9\quad\small Ev. Luke 11:14-28\\ +\clearpage -\medskip +\label{w6-1} +{\bfseries\large June }\hfill{\small Week 1}\par\vspace{0.5mm} -\section*{ Martius } -\textbf{ 1 } \quad ef-lent-3-monday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 4 Kings 5:1-15\quad\small Ev. Luke 4:23-30\\ -\medskip -\textbf{ 2 } \quad ef-lent-3-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 4 Kings 4:1-7\quad\small Ev. Matt 18:15-22\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Angela Merici }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\end{tcolorbox} -\textbf{ 3 } \quad ef-lent-3-wednesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Ex 20:12-24\quad\small Ev. Matt 15:1-20\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 2nd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } +\par{\scriptsize Commemoration\ sts-marcellinus-peter-erasmus } +\end{tcolorbox} -\textbf{ 4 } \quad ef-lent-3-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Jer 7:1-7\quad\small Ev. Luke 4:38-44.\\ -\small Com. casimir\\ -\small Com. lucius\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par +{\bfseries Thursday of the 2nd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } -\textbf{ 5 } \quad ef-lent-3-friday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Num 20:1, 3; 6-13.\quad\small Ev. John 4:5-42\\ +\end{tcolorbox} -\medskip -\textbf{ 6 } \quad ef-lent-3-saturday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Dan 13:1-9, 15-17, 19-30, 33-62.\quad\small Ev. John 8:1-11\\ -\small Com. sts-felicitas-perpetua\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries The Sacred Heart of Jesus }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Eph 3:8-12, 14-19 }\quad{\scriptsize Gospel\ John 19:31-37 } -\medskip +\end{tcolorbox} -\textbf{ 7 } \quad ef-lent-sunday-4\\ -\small class-1 \textperiodcentered\ rose\\ -\small Ep. Gal 4:22-31\quad\small Ev. John 6:1-15\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries St. Boniface }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Ecclus 44:1-15 }\quad{\scriptsize Gospel\ Matt 5:1-12 } +\end{tcolorbox} -\textbf{ 8 } \quad ef-lent-4-monday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 3 Kings 3:16-28\quad\small Ev. John 2:13-25\\ -\small Com. john-of-god\\ -\medskip +\clearpage +\label{w6-2} +{\bfseries\large June }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 9 } \quad ef-lent-4-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Ex 32:7-14\quad\small Ev. John 7:14-31\\ -\small Com. frances-rome\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 3rd Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } +\end{tcolorbox} -\textbf{ 10 } \quad ef-lent-4-wednesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa. 1:16-19\quad\small Ev. John 9:1-38\\ -\small Com. forty-holy-martyrs-of-sebaste\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 3rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } -\textbf{ 11 } \quad ef-lent-4-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 4 Kings 4:25-38\quad\small Ev. Luke 7:11-16\\ +\end{tcolorbox} -\medskip -\textbf{ 12 } \quad ef-lent-4-friday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. 3 Kings 17:17-24\quad\small Ev. John 11:1-45\\ -\small Com. gregory-the-great\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 3rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } -\medskip +\end{tcolorbox} -\textbf{ 13 } \quad ef-lent-4-saturday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Isa 49:8-15\quad\small Ev. John 8:12-20\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 3rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } +\par{\scriptsize Commemoration\ sts-primus-felicianus } +\end{tcolorbox} -\textbf{ 14 } \quad ef-passion-sunday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Heb 9:11-15.\quad\small Ev. John 8:46-59.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Margaret of Scotland }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\end{tcolorbox} -\textbf{ 15 } \quad ef-passiontide-1-monday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Jonas 3:1-10\quad\small Ev. John 7:32-39\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries St. Barnabas }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 11:21-26; 13:1-3 }\quad{\scriptsize Gospel\ Matt 10:16-22 } -\textbf{ 16 } \quad ef-passiontide-1-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Dan 14:27, 28-42\quad\small Ev. John 7:1-13\\ +\end{tcolorbox} -\medskip -\textbf{ 17 } \quad ef-passiontide-1-wednesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Lev 19:1-2, 11-19, 25\quad\small Ev. John 10:22-38\\ -\small Com. patrick\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. John of San Fecundo }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\par{\scriptsize Commemoration\ basilidus } +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 18 } \quad ef-passiontide-1-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Dan 3:25, 34-45.\quad\small Ev. Luke 7:36-50\\ -\small Com. cyril-of-jerusalem\\ +\label{w6-3} +{\bfseries\large June }\hfill{\small Week 3}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 4th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } -\textbf{ 19 } \quad joseph-spouse-of-the-bl-virgin-mary\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 1:18-21\\ -\small Com. ef-passiontide-1-friday\\ +\end{tcolorbox} -\medskip -\textbf{ 20 } \quad ef-passiontide-1-saturday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Jer 18:18-23\quad\small Ev. John 12:10-36\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Basil the Great }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Luke 14:26-35 } -\medskip +\end{tcolorbox} -\textbf{ 21 } \quad ef-palm-sunday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Phil 2:5-11\quad\small Ev. Matt. 26:36-75; 27:1-60.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 4th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } +\par{\scriptsize Commemoration\ vitus } +\end{tcolorbox} -\textbf{ 22 } \quad ef-passiontide-2-monday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Isa 50:5-10\quad\small Ev. John 12:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 4th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } +\end{tcolorbox} -\textbf{ 23 } \quad ef-passiontide-2-tuesday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Jer 11:18-20\quad\small Ev. Mark 14:32-72; 15, 1-46\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Gregory Barbarigo }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } -\textbf{ 24 } \quad ef-passiontide-2-wednesday\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Isa 53:1-12\quad\small Ev. Luke 22:39-71; 23:1-53\\ +\end{tcolorbox} -\medskip -\textbf{ 25 } \quad Feria V in Cena Domini\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 Cor 11:20-32\quad\small Ev. John 13:1-15\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Ephrem of Syria }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ marcus-and-marcellianus } +\end{tcolorbox} -\medskip -\textbf{ 26 } \quad Feria VI in Passione et Morte Domini\\ -\small class-1 \textperiodcentered\ black\\ -\small Ep. Ex 12:1-11\quad\small Ev. John 18:1-40; 19:1-42\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Julia of Falconieri }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\par{\scriptsize Commemoration\ sts-gervasius-and-protasius } +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 27 } \quad Sabbato sancto\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Col 3:1-4\quad\small Ev. Matt 28:1-7\\ +\label{w6-4} +{\bfseries\large June }\hfill{\small Week 4}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 5th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Pet 3:8-15. }\quad{\scriptsize Gospel\ Matt 5:20-24. } -\textbf{ 28 } \quad ef-easter-sunday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 Cor 5:7-8\quad\small Ev. Mark 16:1-7\\ +\end{tcolorbox} -\medskip -\textbf{ 29 } \quad ef-easter-1-monday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Acts 10:37-43.\quad\small Ev. Luke 24:13-35\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Aloysius Gongzaga }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 22:29-40 } -\medskip +\end{tcolorbox} -\textbf{ 30 } \quad ef-easter-1-tuesday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Acts 13:16; 13:26-33\quad\small Ev. Luke 24:36-47\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Paulinus of Nola }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor. 8:9-15 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\end{tcolorbox} -\textbf{ 31 } \quad ef-easter-1-wednesday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Acts 3:13-15; 3:17-19\quad\small Ev. John 21:1-14\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Vigil of the Nativity of St. John the Baptist }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Jer 1:4-10 }\quad{\scriptsize Gospel\ Luke 1:5-17 } +\end{tcolorbox} -\section*{ Aprilis } -\textbf{ 1 } \quad ef-easter-1-thursday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Acts 8:26-40\quad\small Ev. John 20:11-18\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Nativity of St. John the Baptist }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 49:1-3, 5-7. }\quad{\scriptsize Gospel\ Luke 1:57-68 } +\end{tcolorbox} -\textbf{ 2 } \quad ef-easter-1-friday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 Pet 3:18-22\quad\small Ev. Matt 28:16-20\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. William }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. } -\textbf{ 3 } \quad ef-easter-1-saturday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:1-10\quad\small Ev. John 20:1-9\\ +\end{tcolorbox} -\medskip -\textbf{ 4 } \quad ef-low-sunday\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries Sts. John \& Paul }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Eccli 44:10-15 }\quad{\scriptsize Gospel\ Luke 12:1-8 } -\medskip +\end{tcolorbox} -\textbf{ 5 } \quad annunciation-of-the-blessed-virgin-mary\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\ +\clearpage -\medskip +\label{w6-5} +{\bfseries\large June }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 6 } \quad ef-easter-2-tuesday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 6th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 6:3-11. }\quad{\scriptsize Gospel\ Mark 8:1-9 } -\medskip +\end{tcolorbox} -\textbf{ 7 } \quad ef-easter-2-wednesday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Vigil of Sts. Peter \& Paul }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Acts 3:1-10 }\quad{\scriptsize Gospel\ John 21:15-19 } +\end{tcolorbox} -\textbf{ 8 } \quad ef-easter-2-thursday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries Sts. Peter \& Paul }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Acts 12:1-11 }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\textbf{ 9 } \quad ef-easter-2-friday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ +\end{tcolorbox} -\medskip -\textbf{ 10 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries In Commemoratione Sancti Pauli Apostoli }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Gal 1:11-20 }\quad{\scriptsize Gospel\ Matt 10:16-22 } +\par{\scriptsize Commemoration\ commemoration-of-st-peter } +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad ef-easter-sunday-3\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ -\medskip -\textbf{ 12 } \quad ef-easter-3-monday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ -\medskip +\clearpage -\textbf{ 13 } \quad hermenegild\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 10:10-14\quad\small Ev. Luke 14:26-33.\\ -\medskip +\label{w7-1} +{\bfseries\large July }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 14 } \quad justin\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Cor 1:18-25; 1:30;\quad\small Ev. Luke 12:2-8\\ -\small Com. sts-tiburtius-valerian-et-maximus-martyrs\\ -\medskip -\textbf{ 15 } \quad ef-easter-3-thursday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ -\medskip -\textbf{ 16 } \quad ef-easter-3-friday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ -\medskip -\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ -\small Com. anicetus\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries The Precious Blood of Our Lord Jesus Christ }\par +{\scriptsize 1st Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 19:30-35 } -\medskip +\end{tcolorbox} -\textbf{ 18 } \quad ef-easter-sunday-4\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Visitation of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Song 2:8-14 }\quad{\scriptsize Gospel\ Luke 1:39-47 } +\par{\scriptsize Commemoration\ processus-and-martinian } +\end{tcolorbox} -\textbf{ 19 } \quad ef-easter-4-monday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries St. Irenaeus }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Tim. 3:14-17; 4:1-5 }\quad{\scriptsize Gospel\ Matt 10:28-33 } +\end{tcolorbox} -\textbf{ 20 } \quad ef-easter-4-tuesday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ -\medskip +\clearpage +\label{w7-2} +{\bfseries\large July }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 21 } \quad anselm\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 7th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } +\end{tcolorbox} -\textbf{ 22 } \quad sts-soter-caius\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Anthony Mary Zaccariah }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Tim. 4:8-16 }\quad{\scriptsize Gospel\ Mark 10:15-21 } -\textbf{ 23 } \quad ef-easter-4-friday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ -\small Com. george\\ +\end{tcolorbox} -\medskip -\textbf{ 24 } \quad fidelis-of-sigmaringen\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 7th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } -\medskip +\end{tcolorbox} -\textbf{ 25 } \quad ef-easter-sunday-5\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Jas 1:17-21\quad\small Ev. John 16:5-14\\ -\small Com. major-litanies\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Sts. Cyril \& Methodius }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\end{tcolorbox} -\textbf{ 26 } \quad sts-cletus-marcellinus\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Elizabeth of Portugal }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\textbf{ 27 } \quad peter-canisius\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\end{tcolorbox} -\medskip -\textbf{ 28 } \quad paul-of-the-cross\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor 1:17-25.\quad\small Ev. Luke 10:1-9\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 7th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } -\medskip +\end{tcolorbox} -\textbf{ 29 } \quad peter-of-verona\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Matt 10:34-42\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par +{\bfseries Seven Holy Brothers and Sts. Rufina \& Secunda }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 12:46-50 } +\end{tcolorbox} -\textbf{ 30 } \quad catherine-of-siena\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ -\medskip +\clearpage +\label{w7-3} +{\bfseries\large July }\hfill{\small Week 3}\par\vspace{0.5mm} -\section*{ Maius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 8th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } -\textbf{ 1 } \quad joseph-the-workman\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Col. 3:14-15, 17, 23-24\quad\small Ev. Matt 13:54-58\\ +\end{tcolorbox} -\medskip -\textbf{ 2 } \quad ef-easter-sunday-6\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. John Gualbert }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 5:43-48 } +\par{\scriptsize Commemoration\ naboris-et-felicis } +\end{tcolorbox} -\medskip -\textbf{ 3 } \quad ef-rogation-monday\\ -\small class-4 \textperiodcentered\ violet\\ -\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\ -\small Com. sts-alexander-companions\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 8th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } -\medskip +\end{tcolorbox} -\textbf{ 4 } \quad monica\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Luke 7:11-16\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Bonaventure }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\end{tcolorbox} -\textbf{ 5 } \quad ef-ascension-vigil\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Eph. 4:7-13.\quad\small Ev. John 17:1-11.\\ -\small Com. pius-v\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Henry the Emperor }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\textbf{ 6 } \quad ef-ascension\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Acts 1:1-11\quad\small Ev. Mark 16:14-20\\ +\end{tcolorbox} -\medskip -\textbf{ 7 } \quad stanislaus\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 8th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } +\par{\scriptsize Commemoration\ our-lady-of-mt-carmel } +\end{tcolorbox} -\medskip -\textbf{ 8 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\par{\scriptsize Commemoration\ alexis } +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 9 } \quad ef-easter-sunday-7\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\ +\label{w7-4} +{\bfseries\large July }\hfill{\small Week 4}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 9th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 10:6-13 }\quad{\scriptsize Gospel\ Luke 19:41-47 } -\textbf{ 10 } \quad antoninus\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ -\small Com. gordiano-and-epimacho\\ +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad sts-philip-james\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Wis. 5:1-5\quad\small Ev. John 14:1-13\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Vincent de Paul }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\medskip +\end{tcolorbox} -\textbf{ 12 } \quad sts-nereus-achilleus-domitilla-pancras\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis. 5:1-5\quad\small Ev. John 4:46-53\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Jerome Emiliani }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Isa 58:7-11 }\quad{\scriptsize Gospel\ Matt 19:13-21 } +\par{\scriptsize Commemoration\ margaret } +\end{tcolorbox} -\textbf{ 13 } \quad robert-bellarmine\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Wis 7:7-14.\quad\small Ev. Matt 5:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Laurence of Brindisi }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ praxedis-virginis } +\end{tcolorbox} -\textbf{ 14 } \quad ef-easter-7-friday\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\ -\small Com. boniface-martyr\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Mary Magdalene }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Song 3:2-5; 8:6-7 }\quad{\scriptsize Gospel\ Luke 7:36-50 } +\end{tcolorbox} -\textbf{ 15 } \quad ef-pentecost-vigil\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 19:1-8.\quad\small Ev. John 14:15-21.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries St. Apollinaris }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet. 5:1-11 }\quad{\scriptsize Gospel\ Luke 22:24-30 } +\par{\scriptsize Commemoration\ liborii } +\end{tcolorbox} -\textbf{ 16 } \quad ef-pentecost\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 2:1-11.\quad\small Ev. John 14:23-31.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\par{\scriptsize Commemoration\ christina } +\end{tcolorbox} -\textbf{ 17 } \quad ef-easter-8-monday\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 10:34, 42-48\quad\small Ev. John 3:16-21\\ -\medskip +\clearpage +\label{w7-5} +{\bfseries\large July }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 18 } \quad ef-easter-8-tuesday\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 8:14-17.\quad\small Ev. John 10:1-10.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 10th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } +\par{\scriptsize Commemoration\ St. James the Greater } +\end{tcolorbox} -\textbf{ 19 } \quad ef-pentecost-ember-wed\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 5:12-16\quad\small Ev. John 6:44-52.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Anne, Mother of the Blessed Virgin }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\end{tcolorbox} -\textbf{ 20 } \quad ef-easter-8-thursday\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 8:5-8\quad\small Ev. Luke 9:1-6\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 10th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } +\par{\scriptsize Commemoration\ pantaleon } +\end{tcolorbox} -\textbf{ 21 } \quad ef-pentecost-ember-fri\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Joel 2:23-24; 26-27\quad\small Ev. Luke 5:17-26\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par +{\bfseries Sts. Nazarius \& Celsus, St. Victor I \& St. Innocent I }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 10:17-20 }\quad{\scriptsize Gospel\ Luke 21:9-19 } -\textbf{ 22 } \quad ef-pentecost-ember-sat\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Rom 5:1-5.\quad\small Ev. Luke 4:38-44.\\ +\end{tcolorbox} -\medskip -\textbf{ 23 } \quad ef-trinity\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Rom 11:33-36.\quad\small Ev. Matt 28:18-20\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Martha }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Luke 10:38-42 } +\par{\scriptsize Commemoration\ felicis-simplicii-faustini-et-beatricis } +\end{tcolorbox} -\medskip -\textbf{ 24 } \quad ef-time-after-pentecost-1-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 John 4:8-21\quad\small Ev. Luke 6:36-42\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 10th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } +\par{\scriptsize Commemoration\ sts-abdon-sennen } +\end{tcolorbox} -\medskip -\textbf{ 25 } \quad gregory-vii\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\small Com. urban-pope-and-martyr\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Ignatius Loyola }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\medskip +\end{tcolorbox} -\textbf{ 26 } \quad philip-neri\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Wis 7:7-14.\quad\small Ev. Luke 12:35-40\\ -\small Com. eleutherius\\ +\clearpage -\medskip -\textbf{ 27 } \quad ef-corpus-christi\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. 1 Cor 11:23-29\quad\small Ev. John 6:56-59\\ +\label{w8-1} +{\bfseries\large August }\hfill{\small Week 1}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 11th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 } -\textbf{ 28 } \quad augustine-of-canterbury\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Thess 2:2-9\quad\small Ev. Luke 10:1-9\\ +\end{tcolorbox} -\medskip -\textbf{ 29 } \quad mary-magdalene-de-pazzi\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Alphonsus Liguori }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim. 2:1-7 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\par{\scriptsize Commemoration\ stephen-i-pope-and-martyr } +\end{tcolorbox} -\medskip -\textbf{ 30 } \quad ef-time-after-pentecost-sunday-2\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 11th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 } -\medskip +\end{tcolorbox} -\textbf{ 31 } \quad queenship-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31\quad\small Ev. Luke 1:26-33\\ -\small Com. petronilla\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Dominic }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim. 4:1-8 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\end{tcolorbox} -\section*{ Iunius } -\textbf{ 1 } \quad angela-merici\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Dedication of the Basilica of St. Mary Major }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\medskip +\end{tcolorbox} -\textbf{ 2 } \quad ef-time-after-pentecost-2-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ -\small Com. sts-marcellinus-peter-erasmus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries Transfiguration of Our Lord }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Pet. 1:16-19 }\quad{\scriptsize Gospel\ Matt 17:1-9 } +\par{\scriptsize Commemoration\ pope-sixtus-ii-felicissimus-and-agapitus-martyrs } +\end{tcolorbox} -\textbf{ 3 } \quad ef-time-after-pentecost-2-thursday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Cajetan }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 6:24-33 } +\par{\scriptsize Commemoration\ donatus } +\end{tcolorbox} -\textbf{ 4 } \quad ef-sacred-heart\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Eph 3:8-12, 14-19\quad\small Ev. John 19:31-37\\ +\clearpage -\medskip +\label{w8-2} +{\bfseries\large August }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 5 } \quad boniface\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Ecclus 44:1-15\quad\small Ev. Matt 5:1-12\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 12th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } -\medskip +\end{tcolorbox} -\textbf{ 6 } \quad ef-time-after-pentecost-sunday-3\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Vigil of St. Lawrence }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Ecclus 51:1-8, 12 }\quad{\scriptsize Gospel\ Matt 16:24-27 } +\par{\scriptsize Commemoration\ romanus } +\end{tcolorbox} -\textbf{ 7 } \quad ef-time-after-pentecost-3-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Lawrence }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Cor. 9:6-10 }\quad{\scriptsize Gospel\ John 12:24-26 } +\end{tcolorbox} -\textbf{ 8 } \quad ef-time-after-pentecost-3-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 12th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } +\par{\scriptsize Commemoration\ sts-tiburtius-susanna } +\end{tcolorbox} -\textbf{ 9 } \quad ef-time-after-pentecost-3-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ -\small Com. sts-primus-felicianus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Clare }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\textbf{ 10 } \quad margaret-of-scotland\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad barnabas\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Acts 11:21-26; 13:1-3\quad\small Ev. Matt 10:16-22\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 12th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } +\par{\scriptsize Commemoration\ sts-hippolytus-cassian } +\end{tcolorbox} -\medskip -\textbf{ 12 } \quad john-of-san-fecundo\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\small Com. basilidus\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Vigil of the Assumption }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\par{\scriptsize Commemoration\ eusebius-confessor } +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 13 } \quad ef-time-after-pentecost-sunday-4\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ +\label{w8-3} +{\bfseries\large August }\hfill{\small Week 3}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Assumption of the Blessed Virgin Mary }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Judith 13:22-25; 15:10 }\quad{\scriptsize Gospel\ Luke 1:41-50 } +\par{\scriptsize Commemoration\ 13th Sunday after Pentecost } +\end{tcolorbox} -\textbf{ 14 } \quad basil-the-great\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Luke 14:26-35\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Joachim, Father of the Blessed Virgin }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 1:1-16 } -\textbf{ 15 } \quad ef-time-after-pentecost-4-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ -\small Com. vitus\\ +\end{tcolorbox} -\medskip -\textbf{ 16 } \quad ef-time-after-pentecost-4-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Hyacinth }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\medskip +\end{tcolorbox} -\textbf{ 17 } \quad gregory-barbarigo\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 13th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Gal 3:16-22 }\quad{\scriptsize Gospel\ Luke 17:11-19 } +\par{\scriptsize Commemoration\ agapitus } +\end{tcolorbox} -\textbf{ 18 } \quad ephrem-of-syria\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. marcus-and-marcellianus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. John Eudes }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\end{tcolorbox} -\textbf{ 19 } \quad julia-of-falconieri\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ -\small Com. sts-gervasius-and-protasius\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Bernard of Clairvaux }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 39:6-14 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\textbf{ 20 } \quad ef-time-after-pentecost-sunday-5\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Pet 3:8-15.\quad\small Ev. Matt 5:20-24.\\ +\end{tcolorbox} -\medskip -\textbf{ 21 } \quad aloysius-gongzaga\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Matt 22:29-40\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Jane Frances de Chantal }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\medskip +\end{tcolorbox} -\textbf{ 22 } \quad paulinus-of-nola\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor. 8:9-15\quad\small Ev. Luke 12:32-34\\ +\clearpage -\medskip +\label{w8-4} +{\bfseries\large August }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 23 } \quad vigil-of-the-nativity-of-st-john-the-baptist\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Jer 1:4-10\quad\small Ev. Luke 1:5-17\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 14th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 } +\par{\scriptsize Commemoration\ Immaculate Heart of Mary } +\end{tcolorbox} -\medskip -\textbf{ 24 } \quad nativity-of-st-john-the-baptist\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Isa 49:1-3, 5-7.\quad\small Ev. Luke 1:57-68\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Philip Benizi }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\medskip +\end{tcolorbox} -\textbf{ 25 } \quad william\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Bartholomew }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Cor. 12:27-31 }\quad{\scriptsize Gospel\ Luke 6:12-19 } +\end{tcolorbox} -\textbf{ 26 } \quad sts-john-paul\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Eccli 44:10-15\quad\small Ev. Luke 12:1-8\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Louis IX }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 19:12-26 } -\textbf{ 27 } \quad ef-time-after-pentecost-sunday-6\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Rom 6:3-11.\quad\small Ev. Mark 8:1-9\\ +\end{tcolorbox} -\medskip -\textbf{ 28 } \quad vigil-of-sts-peter-paul\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Acts 3:1-10\quad\small Ev. John 21:15-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par +{\bfseries Thursday of the 14th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 } +\par{\scriptsize Commemoration\ zephyrinus } +\end{tcolorbox} -\medskip -\textbf{ 29 } \quad sts-peter-paul\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Acts 12:1-11\quad\small Ev. Matt 16:13-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Joseph Calasance }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 18:1-5 } -\medskip +\end{tcolorbox} -\textbf{ 30 } \quad in-commemoratione-sancti-pauli-apostoli\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Gal 1:11-20\quad\small Ev. Matt 10:16-22\\ -\small Com. commemoration-of-st-peter\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Augustine }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ hermes } +\end{tcolorbox} +\clearpage -\section*{ Iulius } +\label{w8-5} +{\bfseries\large August }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 1 } \quad precious-blood-of-our-lord-jesus-christ\\ -\small class-1 \textperiodcentered\ red\\ -\small Ep. Heb 9:11-15.\quad\small Ev. John 19:30-35\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 15th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 } +\end{tcolorbox} -\textbf{ 2 } \quad visitation-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Song 2:8-14\quad\small Ev. Luke 1:39-47\\ -\small Com. processus-and-martinian\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Rose of Lima }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\par{\scriptsize Commemoration\ sts-felix-and-adauctus } +\end{tcolorbox} -\textbf{ 3 } \quad irenaeus\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 2 Tim. 3:14-17; 4:1-5\quad\small Ev. Matt 10:28-33\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Raymond Nonnatus }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\textbf{ 4 } \quad ef-time-after-pentecost-sunday-7\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ +\end{tcolorbox} -\medskip -\textbf{ 5 } \quad anthony-mary-zaccariah\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Tim. 4:8-16\quad\small Ev. Mark 10:15-21\\ -\medskip -\textbf{ 6 } \quad ef-time-after-pentecost-7-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ -\medskip -\textbf{ 7 } \quad sts-cyril-methodius\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Heb 7:23-27\quad\small Ev. Luke 10:1-9\\ -\medskip +\clearpage -\textbf{ 8 } \quad elizabeth-of-portugal\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ -\medskip +\label{w9-1} +{\bfseries\large September }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 9 } \quad ef-time-after-pentecost-7-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ -\medskip -\textbf{ 10 } \quad seven-holy-brothers-and-sts-rufina-secunda\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 12:46-50\\ -\medskip -\textbf{ 11 } \quad ef-time-after-pentecost-sunday-8\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 15th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 } +\par{\scriptsize Commemoration\ giles }\par{\scriptsize Commemoration\ twelve-holy-brothers-martyrs } +\end{tcolorbox} -\medskip -\textbf{ 12 } \quad john-gualbert\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 5:43-48\\ -\small Com. naboris-et-felicis\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Stephen of Hungary }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 19:12-26 } -\medskip +\end{tcolorbox} -\textbf{ 13 } \quad ef-time-after-pentecost-8-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Pius X }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Thess. 2:2-8 }\quad{\scriptsize Gospel\ John 21:15-17 } +\end{tcolorbox} -\textbf{ 14 } \quad bonaventure\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\textbf{ 15 } \quad henry-the-emperor\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 16 } \quad ef-time-after-pentecost-8-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ -\small Com. our-lady-of-mt-carmel\\ +\label{w9-2} +{\bfseries\large September }\hfill{\small Week 2}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 16th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } -\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\small Com. alexis\\ +\end{tcolorbox} -\medskip -\textbf{ 18 } \quad ef-time-after-pentecost-sunday-9\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 10:6-13\quad\small Ev. Luke 19:41-47\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 16th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } -\medskip +\end{tcolorbox} -\textbf{ 19 } \quad vincent-de-paul\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 10:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 16th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } +\end{tcolorbox} -\textbf{ 20 } \quad jerome-emiliani\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Isa 58:7-11\quad\small Ev. Matt 19:13-21\\ -\small Com. margaret\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Nativity of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Matt 1:1-16 } +\par{\scriptsize Commemoration\ hadriani } +\end{tcolorbox} -\textbf{ 21 } \quad laurence-of-brindisi\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. praxedis-virginis\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par +{\bfseries Thursday of the 16th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } +\par{\scriptsize Commemoration\ gorgonius } +\end{tcolorbox} -\textbf{ 22 } \quad mary-magdalene\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Song 3:2-5; 8:6-7\quad\small Ev. Luke 7:36-50\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Nicholas of Tolentino }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\textbf{ 23 } \quad apollinaris\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet. 5:1-11\quad\small Ev. Luke 22:24-30\\ -\small Com. liborii\\ +\end{tcolorbox} -\medskip -\textbf{ 24 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\small Com. christina\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\par{\scriptsize Commemoration\ sts-protus-hyacinth } +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 25 } \quad ef-time-after-pentecost-sunday-10\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ -\small Com. james-the-greater\\ +\label{w9-3} +{\bfseries\large September }\hfill{\small Week 3}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 17th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } -\textbf{ 26 } \quad anne-mother-of-the-blessed-virgin\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ +\end{tcolorbox} -\medskip -\textbf{ 27 } \quad ef-time-after-pentecost-10-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ -\small Com. pantaleon\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 17th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } -\medskip +\end{tcolorbox} -\textbf{ 28 } \quad sts-nazarius-celsus-st-victor-i-st-innocent-i\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 10:17-20\quad\small Ev. Luke 21:9-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries Exaltation of the Holy Cross }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ John 12:31-36 } +\end{tcolorbox} -\textbf{ 29 } \quad martha\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Luke 10:38-42\\ -\small Com. felicis-simplicii-faustini-et-beatricis\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Seven Sorrows of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Judith 13:22; 13:23-25 }\quad{\scriptsize Gospel\ John 19:25-27 } +\par{\scriptsize Commemoration\ nicomedes } +\end{tcolorbox} -\textbf{ 30 } \quad ef-time-after-pentecost-10-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ -\small Com. sts-abdon-sennen\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries Sts. Cornelius \& Cyprian }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 } +\par{\scriptsize Commemoration\ sts-euphemia-lucy-and-geminianus } +\end{tcolorbox} -\textbf{ 31 } \quad ignatius-loyola\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Luke 10:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 17th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } +\par{\scriptsize Commemoration\ stigmata-of-st-francis } +\end{tcolorbox} -\section*{ Augustus } -\textbf{ 1 } \quad ef-time-after-pentecost-sunday-11\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Joseph of Cupertino }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 13:1-8 }\quad{\scriptsize Gospel\ Matt 22:1-14 } -\medskip +\end{tcolorbox} -\textbf{ 2 } \quad alphonsus-liguori\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim. 2:1-7\quad\small Ev. Luke 10:1-9\\ -\small Com. stephen-i-pope-and-martyr\\ +\clearpage -\medskip +\label{w9-4} +{\bfseries\large September }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 3 } \quad ef-time-after-pentecost-11-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 18th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 } -\medskip +\end{tcolorbox} -\textbf{ 4 } \quad dominic\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim. 4:1-8\quad\small Ev. Luke 12:35-40\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 18th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 } +\par{\scriptsize Commemoration\ sts-eustace-companions } +\end{tcolorbox} -\textbf{ 5 } \quad dedication-of-the-basilica-of-st-mary-major\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Matthew }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Ezek 1:10-14 }\quad{\scriptsize Gospel\ Matt 9:9-13 } +\end{tcolorbox} -\textbf{ 6 } \quad transfiguration-of-our-lord\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. 2 Pet. 1:16-19\quad\small Ev. Matt 17:1-9\\ -\small Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries September Ember Wednesday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 2 Esd. 8:1-10 }\quad{\scriptsize Gospel\ Mark 9:16-28 } +\par{\scriptsize Commemoration\ St. Thomas of Villanova } +\end{tcolorbox} -\textbf{ 7 } \quad cajetan\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Matt 6:24-33\\ -\small Com. donatus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Linus }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\par{\scriptsize Commemoration\ thecla } +\end{tcolorbox} -\textbf{ 8 } \quad ef-time-after-pentecost-sunday-12\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries September Ember Friday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Osee 14:2-10 }\quad{\scriptsize Gospel\ Luke 7:36-50 } +\par{\scriptsize Commemoration\ our-lady-of-ransom } +\end{tcolorbox} -\textbf{ 9 } \quad vigil-of-st-lawrence\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Ecclus 51:1-8, 12\quad\small Ev. Matt 16:24-27\\ -\small Com. romanus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries September Ember Saturday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Heb 9:2-12 }\quad{\scriptsize Gospel\ Luke 13:6-17 } -\textbf{ 10 } \quad lawrence\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. 2 Cor. 9:6-10\quad\small Ev. John 12:24-26\\ +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 11 } \quad ef-time-after-pentecost-12-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ -\small Com. sts-tiburtius-susanna\\ +\label{w9-5} +{\bfseries\large September }\hfill{\small Week 5}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 19th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 } -\textbf{ 12 } \quad clare\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\end{tcolorbox} -\medskip -\textbf{ 13 } \quad ef-time-after-pentecost-12-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ -\small Com. sts-hippolytus-cassian\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries Sts. Cosmas \& Damian }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 5:16-20 }\quad{\scriptsize Gospel\ Luke 6:17-23 } -\medskip +\end{tcolorbox} -\textbf{ 14 } \quad vigil-of-the-assumption\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Sir 24:23-31\quad\small Ev. Luke 11:27-28\\ -\small Com. eusebius-confessor\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Wenceslaus }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 10:34-42 } +\end{tcolorbox} -\textbf{ 15 } \quad assumption-of-the-blessed-virgin-mary\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Judith 13:22-25; 15:10\quad\small Ev. Luke 1:41-50\\ -\small Com. ef-time-after-pentecost-sunday-13\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Dedication of St. Michael the Archangel }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rev 1:1-5 }\quad{\scriptsize Gospel\ Matt 18:1-10 } -\textbf{ 16 } \quad joachim-father-of-the-blessed-virgin\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Matt 1:1-16\\ +\end{tcolorbox} -\medskip -\textbf{ 17 } \quad hyacinth\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Jerome }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\medskip +\end{tcolorbox} -\textbf{ 18 } \quad ef-time-after-pentecost-13-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Gal 3:16-22\quad\small Ev. Luke 17:11-19\\ -\small Com. agapitus\\ -\medskip -\textbf{ 19 } \quad john-eudes\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\medskip +\clearpage -\textbf{ 20 } \quad bernard-of-clairvaux\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Ecclus 39:6-14\quad\small Ev. Matt 5:13-19\\ -\medskip +\label{w10-1} +{\bfseries\large October }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 21 } \quad jane-frances-de-chantal\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ -\medskip -\textbf{ 22 } \quad ef-time-after-pentecost-sunday-14\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\ -\small Com. immaculate-heart-of-mary\\ -\medskip -\textbf{ 23 } \quad philip-benizi\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ -\medskip -\textbf{ 24 } \quad bartholomew\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. 1 Cor. 12:27-31\quad\small Ev. Luke 6:12-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 19th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 } +\par{\scriptsize Commemoration\ remigius } +\end{tcolorbox} -\textbf{ 25 } \quad louis-ix\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Wis 10:10-14\quad\small Ev. Luke 19:12-26\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Holy Guardian Angels }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Exod 23:20-23 }\quad{\scriptsize Gospel\ Matt 18:1-10 } +\end{tcolorbox} -\textbf{ 26 } \quad ef-time-after-pentecost-14-thursday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\ -\small Com. zephyrinus\\ -\medskip +\clearpage +\label{w10-2} +{\bfseries\large October }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 27 } \quad joseph-calasance\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Wis 10:10-14\quad\small Ev. Matt 18:1-5\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 20th Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 } +\end{tcolorbox} -\textbf{ 28 } \quad augustine\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. hermes\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Francis of Assisi }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Gal 6:14-18 }\quad{\scriptsize Gospel\ Matt 11:25-30 } -\textbf{ 29 } \quad ef-time-after-pentecost-sunday-15\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\ +\end{tcolorbox} -\medskip -\textbf{ 30 } \quad rose-of-lima\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ -\small Com. sts-felix-and-adauctus\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 20th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 } +\par{\scriptsize Commemoration\ placid-companions } +\end{tcolorbox} -\medskip -\textbf{ 31 } \quad raymond-nonnatus\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Bruno }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\medskip +\end{tcolorbox} -\section*{ September } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady of the Rosary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 8:22-24, 32-35. }\quad{\scriptsize Gospel\ Luke 1:26-38 } +\par{\scriptsize Commemoration\ mark-i } +\end{tcolorbox} -\textbf{ 1 } \quad ef-time-after-pentecost-15-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\ -\small Com. giles\\ -\small Com. twelve-holy-brothers-martyrs\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Bridget of Sweden }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\par{\scriptsize Commemoration\ sergio-baccho-marcello-and-apulejo-martyrs } +\end{tcolorbox} -\textbf{ 2 } \quad stephen-of-hungary\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 19:12-26\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. John Leonardi }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 4:1-6; 4:15-18 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\par{\scriptsize Commemoration\ dionysius-and-companions } +\end{tcolorbox} -\textbf{ 3 } \quad pius-x\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Thess. 2:2-8\quad\small Ev. John 21:15-17\\ -\medskip +\clearpage +\label{w10-3} +{\bfseries\large October }\hfill{\small Week 3}\par\vspace{0.5mm} -\textbf{ 4 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 21st Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 } +\end{tcolorbox} -\textbf{ 5 } \quad ef-time-after-pentecost-sunday-16\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries Maternity of the Blessed Virgin Mary }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 2:43-51 } -\textbf{ 6 } \quad ef-time-after-pentecost-16-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ +\end{tcolorbox} -\medskip -\textbf{ 7 } \quad ef-time-after-pentecost-16-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 21st Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 } -\medskip +\end{tcolorbox} -\textbf{ 8 } \quad nativity-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Prov 8:22-35\quad\small Ev. Matt 1:1-16\\ -\small Com. hadriani\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Edward }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\end{tcolorbox} -\textbf{ 9 } \quad ef-time-after-pentecost-16-thursday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ -\small Com. gorgonius\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Callistus I }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\textbf{ 10 } \quad nicholas-of-tolentino\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\small Com. sts-protus-hyacinth\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Teresa of Avila }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\medskip +\end{tcolorbox} -\textbf{ 12 } \quad ef-time-after-pentecost-sunday-17\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Hedwig }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\end{tcolorbox} -\textbf{ 13 } \quad ef-time-after-pentecost-17-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ -\medskip +\clearpage +\label{w10-4} +{\bfseries\large October }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 14 } \quad exaltation-of-the-holy-cross\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Phil 2:5-11\quad\small Ev. John 12:31-36\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 22nd Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } +\end{tcolorbox} -\textbf{ 15 } \quad seven-sorrows-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Judith 13:22; 13:23-25\quad\small Ev. John 19:25-27\\ -\small Com. nicomedes\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries St. Luke the Evangelist }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Cor. 8:16-24 }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\textbf{ 16 } \quad sts-cornelius-cyprian\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\ -\small Com. sts-euphemia-lucy-and-geminianus\\ +\end{tcolorbox} -\medskip -\textbf{ 17 } \quad ef-time-after-pentecost-17-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ -\small Com. stigmata-of-st-francis\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Peter of Alcantara }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\medskip +\end{tcolorbox} -\textbf{ 18 } \quad joseph-of-cupertino\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor 13:1-8\quad\small Ev. Matt 22:1-14\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. John Cantius }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ James 2:12-17 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\end{tcolorbox} -\textbf{ 19 } \quad ef-time-after-pentecost-sunday-18\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par +{\bfseries Thursday of the 22nd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } +\par{\scriptsize Commemoration\ hilarion }\par{\scriptsize Commemoration\ ursula-and-companions } +\end{tcolorbox} -\textbf{ 20 } \quad ef-time-after-pentecost-18-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\ -\small Com. sts-eustace-companions\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 22nd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } -\textbf{ 21 } \quad matthew\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Ezek 1:10-14\quad\small Ev. Matt 9:9-13\\ +\end{tcolorbox} -\medskip -\textbf{ 22 } \quad ef-september-ember-wed\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 2 Esd. 8:1-10\quad\small Ev. Mark 9:16-28\\ -\small Com. thomas-of-villanova\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Anthony Mary Claret }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Matt 24:42-47 } -\medskip +\end{tcolorbox} -\textbf{ 23 } \quad linus\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\small Com. thecla\\ +\clearpage -\medskip +\label{w10-5} +{\bfseries\large October }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 24 } \quad ef-september-ember-fri\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Osee 14:2-10\quad\small Ev. Luke 7:36-50\\ -\small Com. our-lady-of-ransom\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 23rd Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } -\medskip +\end{tcolorbox} -\textbf{ 25 } \quad ef-september-ember-sat\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Heb 9:2-12\quad\small Ev. Luke 13:6-17\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 23rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\par{\scriptsize Commemoration\ sts-chrysanthus-daria } +\end{tcolorbox} -\textbf{ 26 } \quad ef-time-after-pentecost-sunday-19\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par +{\bfseries Tuesday of the 23rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\par{\scriptsize Commemoration\ evaristus } +\end{tcolorbox} -\textbf{ 27 } \quad sts-cosmas-damian\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 5:16-20\quad\small Ev. Luke 6:17-23\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 23rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\end{tcolorbox} -\textbf{ 28 } \quad wenceslaus\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Wis 10:10-14\quad\small Ev. Matt 10:34-42\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries Sts. Simon \& Jude }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 15:17-25 } -\textbf{ 29 } \quad dedication-of-st-michael-the-archangel\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Rev 1:1-5\quad\small Ev. Matt 18:1-10\\ +\end{tcolorbox} -\medskip -\textbf{ 30 } \quad jerome\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 23rd Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } -\medskip +\end{tcolorbox} -\section*{ October } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\textbf{ 1 } \quad ef-time-after-pentecost-19-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\ -\small Com. remigius\\ +\end{tcolorbox} -\medskip +\clearpage -\textbf{ 2 } \quad holy-guardian-angels\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Exod 23:20-23\quad\small Ev. Matt 18:1-10\\ +\label{w10-6} +{\bfseries\large October }\hfill{\small Week 6}\par\vspace{0.5mm} -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Christ the King }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } -\textbf{ 3 } \quad ef-time-after-pentecost-sunday-20\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\ +\end{tcolorbox} -\medskip -\textbf{ 4 } \quad francis-of-assisi\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Gal 6:14-18\quad\small Ev. Matt 11:25-30\\ -\medskip -\textbf{ 5 } \quad ef-time-after-pentecost-20-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\ -\small Com. placid-companions\\ -\medskip -\textbf{ 6 } \quad bruno\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\medskip -\textbf{ 7 } \quad our-lady-of-the-rosary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Prov 8:22-24, 32-35.\quad\small Ev. Luke 1:26-38\\ -\small Com. mark-i\\ -\medskip +\clearpage -\textbf{ 8 } \quad bridget-of-sweden\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Matt 13:44-52.\\ -\small Com. sergio-baccho-marcello-and-apulejo-martyrs\\ -\medskip +\label{w11-1} +{\bfseries\large November }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 9 } \quad john-leonardi\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 4:1-6; 4:15-18\quad\small Ev. Luke 10:1-9\\ -\small Com. dionysius-and-companions\\ -\medskip -\textbf{ 10 } \quad ef-time-after-pentecost-sunday-21\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries All Saints }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Apoc 7:2-12 }\quad{\scriptsize Gospel\ Matt 5:1-12 } -\medskip +\end{tcolorbox} -\textbf{ 11 } \quad maternity-of-the-blessed-virgin-mary\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Sir 24:23-31\quad\small Ev. Luke 2:43-51\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolblack}\par +{\bfseries Commemoration of All Souls }\par +{\scriptsize 1st Class \textperiodcentered\ Black }\par +{\scriptsize Epistle\ 1 Cor. 15:51-57 }\quad{\scriptsize Gospel\ John 5:25-29 } +\end{tcolorbox} -\textbf{ 12 } \quad ef-time-after-pentecost-21-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par +{\bfseries Wednesday of the 24th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } -\textbf{ 13 } \quad edward\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\end{tcolorbox} -\medskip -\textbf{ 14 } \quad callistus-i\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Charles Borromeo }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } +\par{\scriptsize Commemoration\ sts-vitalis-and-agricola-martyrs } +\end{tcolorbox} -\medskip -\textbf{ 15 } \quad teresa-of-avila\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par +{\bfseries Friday of the 24th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } -\medskip +\end{tcolorbox} -\textbf{ 16 } \quad hedwig\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\end{tcolorbox} -\textbf{ 17 } \quad ef-time-after-pentecost-sunday-22\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ -\medskip +\clearpage +\label{w11-2} +{\bfseries\large November }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 18 } \quad luke-the-evangelist\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. 2 Cor. 8:16-24\quad\small Ev. Luke 10:1-9\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 5th Sunday after Epiphany }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 } +\end{tcolorbox} -\textbf{ 19 } \quad peter-of-alcantara\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Phil 3:7-12\quad\small Ev. Luke 12:32-34\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par +{\bfseries Monday of the 25th Week of the Time after Pentecost }\par +{\scriptsize 4th Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 } +\par{\scriptsize Commemoration\ four-holy-crowned-martyrs } +\end{tcolorbox} -\textbf{ 20 } \quad john-cantius\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. James 2:12-17\quad\small Ev. Luke 12:35-40\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries Dedication of the Archbasilica of Our Holy Savior }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 } +\par{\scriptsize Commemoration\ theodore } +\end{tcolorbox} -\textbf{ 21 } \quad ef-time-after-pentecost-22-thursday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ -\small Com. hilarion\\ -\small Com. ursula-and-companions\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Andrew Avellino }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\par{\scriptsize Commemoration\ sts-tryphonis-respicii-et-nymphae } +\end{tcolorbox} -\textbf{ 22 } \quad ef-time-after-pentecost-22-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries St. Martin of Tours }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 11:33-36 } +\par{\scriptsize Commemoration\ menna } +\end{tcolorbox} -\textbf{ 23 } \quad anthony-mary-claret\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Heb 7:23-27\quad\small Ev. Matt 24:42-47\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par +{\bfseries St. Martin I }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\textbf{ 24 } \quad ef-time-after-pentecost-sunday-23\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ +\end{tcolorbox} -\medskip -\textbf{ 25 } \quad ef-time-after-pentecost-23-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ -\small Com. sts-chrysanthus-daria\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Didacus }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\medskip +\end{tcolorbox} -\textbf{ 26 } \quad ef-time-after-pentecost-23-tuesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ -\small Com. evaristus\\ +\clearpage -\medskip +\label{w11-3} +{\bfseries\large November }\hfill{\small Week 3}\par\vspace{0.5mm} -\textbf{ 27 } \quad ef-time-after-pentecost-23-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 6th Sunday after Epiphany }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ 1 Thess 1:2-10 }\quad{\scriptsize Gospel\ Matt 13:31-35 } -\medskip +\end{tcolorbox} -\textbf{ 28 } \quad sts-simon-jude\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Eph. 4:7-13.\quad\small Ev. John 15:17-25\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Albert the Great }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\end{tcolorbox} -\textbf{ 29 } \quad ef-time-after-pentecost-23-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Gertrude the Great }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\textbf{ 30 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ +\end{tcolorbox} -\medskip -\textbf{ 31 } \quad ef-christ-the-king\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Gregory the Wonderworker }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Mark 11:22-24 } -\medskip +\end{tcolorbox} -\section*{ November } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries Dedication of the Basilicas of Sts. Peter \& Paul }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 } -\textbf{ 1 } \quad all-saints\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Apoc 7:2-12\quad\small Ev. Matt 5:1-12\\ +\end{tcolorbox} -\medskip -\textbf{ 2 } \quad commemoration-of-all-souls\\ -\small class-1 \textperiodcentered\ black\\ -\small Ep. 1 Cor. 15:51-57\quad\small Ev. John 5:25-29\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Elizabeth of Hungary }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\par{\scriptsize Commemoration\ pontian } +\end{tcolorbox} -\medskip -\textbf{ 3 } \quad ef-time-after-pentecost-24-wednesday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Felix of Valois }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\medskip +\end{tcolorbox} -\textbf{ 4 } \quad charles-borromeo\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ -\small Com. sts-vitalis-and-agricola-martyrs\\ +\clearpage -\medskip +\label{w11-4} +{\bfseries\large November }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 5 } \quad ef-time-after-pentecost-24-friday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par +{\bfseries 24th and Last Sunday after Pentecost }\par +{\scriptsize 2nd Class \textperiodcentered\ Green }\par +{\scriptsize Epistle\ Col 1:9-14 }\quad{\scriptsize Gospel\ Matt 24:15-35 } -\medskip +\end{tcolorbox} -\textbf{ 6 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries St. Cecilia }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\end{tcolorbox} -\textbf{ 7 } \quad ef-time-after-epiphany-sunday-5\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Clement I }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\par{\scriptsize Commemoration\ felicity } +\end{tcolorbox} -\textbf{ 8 } \quad ef-time-after-pentecost-25-monday\\ -\small class-4 \textperiodcentered\ green\\ -\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\ -\small Com. four-holy-crowned-martyrs\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries St. John of the Cross }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ chrysogonus } +\end{tcolorbox} -\textbf{ 9 } \quad dedication-of-the-archbasilica-of-our-holy-savior\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\ -\small Com. theodore\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Catherine of Alexandria }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\textbf{ 10 } \quad andrew-avellino\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ -\small Com. sts-tryphonis-respicii-et-nymphae\\ +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad martin-of-tours\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 11:33-36\\ -\small Com. menna\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Sylvester }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. } +\par{\scriptsize Commemoration\ peter-of-alexandria } +\end{tcolorbox} -\medskip -\textbf{ 12 } \quad martin-i\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries Our Lady's Saturday Office }\par +{\scriptsize 4th Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\medskip +\end{tcolorbox} -\textbf{ 13 } \quad didacus\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor 4:9-14\quad\small Ev. Luke 12:32-34\\ +\clearpage -\medskip +\label{w11-5} +{\bfseries\large November }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 14 } \quad ef-time-after-epiphany-sunday-6\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. 1 Thess 1:2-10\quad\small Ev. Matt 13:31-35\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 1st Sunday of Advent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } -\medskip +\end{tcolorbox} -\textbf{ 15 } \quad albert-the-great\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 1st Week of Advent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } +\par{\scriptsize Commemoration\ saturninus } +\end{tcolorbox} -\textbf{ 16 } \quad gertrude-the-great\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Andrew }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Matt 4:18-22 } +\par{\scriptsize Commemoration\ Tuesday of the 1st Week of Advent } +\end{tcolorbox} -\textbf{ 17 } \quad gregory-the-wonderworker\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Mark 11:22-24\\ -\medskip -\textbf{ 18 } \quad dedication-of-the-basilicas-of-sts-peter-paul\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\ -\medskip -\textbf{ 19 } \quad elizabeth-of-hungary\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ -\small Com. pontian\\ -\medskip +\clearpage -\textbf{ 20 } \quad felix-of-valois\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ -\medskip +\label{w12-1} +{\bfseries\large December }\hfill{\small Week 1}\par\vspace{0.5mm} -\textbf{ 21 } \quad ef-time-after-pentecost-sunday-24\\ -\small class-2 \textperiodcentered\ green\\ -\small Ep. Col 1:9-14\quad\small Ev. Matt 24:15-35\\ -\medskip -\textbf{ 22 } \quad cecilia\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Sir 51:13-17.\quad\small Ev. Matt 25:1-13.\\ -\medskip -\textbf{ 23 } \quad clement-i\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 16:13-19\\ -\small Com. felicity\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 1st Week of Advent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } +\end{tcolorbox} -\textbf{ 24 } \quad john-of-the-cross\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. chrysogonus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Vivian }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\par{\scriptsize Commemoration\ Thursday of the 1st Week of Advent } +\end{tcolorbox} -\textbf{ 25 } \quad catherine-of-alexandria\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries St. Francis Xavier }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Mark 16:15-18 } +\par{\scriptsize Commemoration\ Friday of the 1st Week of Advent } +\end{tcolorbox} -\textbf{ 26 } \quad sylvester\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\ -\small Com. peter-of-alexandria\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Peter Chrysologus }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ Saturday of the 1st Week of Advent }\par{\scriptsize Commemoration\ barbara } +\end{tcolorbox} -\textbf{ 27 } \quad Officium sanctae Mariae in sabbato\\ -\small class-4 \textperiodcentered\ white\\ -\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ -\medskip +\clearpage +\label{w12-2} +{\bfseries\large December }\hfill{\small Week 2}\par\vspace{0.5mm} -\textbf{ 28 } \quad ef-advent-sunday-1\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 2nd Sunday of Advent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } +\end{tcolorbox} -\textbf{ 29 } \quad ef-advent-1-monday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ -\small Com. saturninus\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. Nicholas }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Heb 13:7-17 }\quad{\scriptsize Gospel\ Matt 25:14-23 } +\par{\scriptsize Commemoration\ Monday of the 2nd Week of Advent } +\end{tcolorbox} -\textbf{ 30 } \quad andrew\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Rom 10:10-18\quad\small Ev. Matt 4:18-22\\ -\small Com. ef-advent-1-tuesday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par +{\bfseries St. Ambrose }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\par{\scriptsize Commemoration\ Tuesday of the 2nd Week of Advent } +\end{tcolorbox} -\section*{ December } -\textbf{ 1 } \quad ef-advent-1-wednesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries Immaculate Conception of the Blessed Virgin Mary }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Luke 1:26-28 } +\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Advent } +\end{tcolorbox} -\medskip -\textbf{ 2 } \quad vivian\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. Sir 51:13-17.\quad\small Ev. Matt 13:44-52.\\ -\small Com. ef-advent-1-thursday\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 2nd Week of Advent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } -\medskip +\end{tcolorbox} -\textbf{ 3 } \quad francis-xavier\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Rom 10:10-18\quad\small Ev. Mark 16:15-18\\ -\small Com. ef-advent-1-friday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Friday of the 2nd Week of Advent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } +\par{\scriptsize Commemoration\ melchiades } +\end{tcolorbox} -\textbf{ 4 } \quad peter-chrysologus\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. ef-advent-1-saturday\\ -\small Com. barbara\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries St. Damasus I }\par +{\scriptsize 3rd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\par{\scriptsize Commemoration\ Saturday of the 2nd Week of Advent } +\end{tcolorbox} -\textbf{ 5 } \quad ef-advent-sunday-2\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ +\clearpage -\medskip +\label{w12-3} +{\bfseries\large December }\hfill{\small Week 3}\par\vspace{0.5mm} -\textbf{ 6 } \quad nicholas\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. Heb 13:7-17\quad\small Ev. Matt 25:14-23\\ -\small Com. ef-advent-2-monday\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par +{\bfseries 3rd Sunday of Advent }\par +{\scriptsize 1st Class \textperiodcentered\ Rose }\par +{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 } -\medskip +\end{tcolorbox} -\textbf{ 7 } \quad ambrose\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ -\small Com. ef-advent-2-tuesday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par +{\bfseries St. Lucy }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\par{\scriptsize Commemoration\ Monday of the 3rd Week of Advent } +\end{tcolorbox} -\textbf{ 8 } \quad immaculate-conception-of-the-blessed-virgin-mary\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Prov 8:22-35\quad\small Ev. Luke 1:26-28\\ -\small Com. ef-advent-2-wednesday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par +{\bfseries Tuesday of the 3rd Week of Advent }\par +{\scriptsize 3rd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 } +\end{tcolorbox} -\textbf{ 9 } \quad ef-advent-2-thursday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Advent Ember Wednesday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 } -\textbf{ 10 } \quad ef-advent-2-friday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ -\small Com. melchiades\\ +\end{tcolorbox} -\medskip -\textbf{ 11 } \quad damasus-i\\ -\small class-3 \textperiodcentered\ white\\ -\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ -\small Com. ef-advent-2-saturday\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par +{\bfseries St. Eusebius }\par +{\scriptsize 3rd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ 2 Cor. 1:3-7 }\quad{\scriptsize Gospel\ Matt 16:24-27. } +\par{\scriptsize Commemoration\ Thursday of the 3rd Week of Advent } +\end{tcolorbox} -\medskip -\textbf{ 12 } \quad ef-advent-sunday-3\\ -\small class-1 \textperiodcentered\ rose\\ -\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Advent Ember Friday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Isa 11:1-5 }\quad{\scriptsize Gospel\ Luke 1:39-47 } -\medskip +\end{tcolorbox} -\textbf{ 13 } \quad lucy\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 13:44-52.\\ -\small Com. ef-advent-3-monday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par +{\bfseries Advent Ember Saturday }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 2 Thess 2:1-8 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\end{tcolorbox} -\textbf{ 14 } \quad ef-advent-3-tuesday\\ -\small class-3 \textperiodcentered\ violet\\ -\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\ -\medskip +\clearpage +\label{w12-4} +{\bfseries\large December }\hfill{\small Week 4}\par\vspace{0.5mm} -\textbf{ 15 } \quad ef-advent-ember-wed\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par +{\bfseries 4th Sunday of Advent }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\end{tcolorbox} -\textbf{ 16 } \quad eusebius\\ -\small class-3 \textperiodcentered\ red\\ -\small Ep. 2 Cor. 1:3-7\quad\small Ev. Matt 16:24-27.\\ -\small Com. ef-advent-3-thursday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par +{\bfseries Monday of the 4th Week of Advent }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } -\textbf{ 17 } \quad ef-advent-ember-fri\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. Isa 11:1-5\quad\small Ev. Luke 1:39-47\\ +\end{tcolorbox} -\medskip -\textbf{ 18 } \quad ef-advent-ember-sat\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 2 Thess 2:1-8\quad\small Ev. Luke 3:1-6\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries St. Thomas }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Eph 2:19-22 }\quad{\scriptsize Gospel\ John 20:24-29 } +\par{\scriptsize Commemoration\ Tuesday of the 4th Week of Advent } +\end{tcolorbox} -\medskip -\textbf{ 19 } \quad ef-advent-sunday-4\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par +{\bfseries Wednesday of the 4th Week of Advent }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } -\medskip +\end{tcolorbox} -\textbf{ 20 } \quad ef-advent-4-monday\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par +{\bfseries Thursday of the 4th Week of Advent }\par +{\scriptsize 2nd Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\end{tcolorbox} -\textbf{ 21 } \quad thomas\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Eph 2:19-22\quad\small Ev. John 20:24-29\\ -\small Com. ef-advent-4-tuesday\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par +{\bfseries Vigil of the Nativity (Christmas Eve) }\par +{\scriptsize 1st Class \textperiodcentered\ Violet }\par +{\scriptsize Epistle\ Rom 1:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 } -\textbf{ 22 } \quad ef-advent-4-wednesday\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ +\end{tcolorbox} -\medskip -\textbf{ 23 } \quad ef-advent-4-thursday\\ -\small class-2 \textperiodcentered\ violet\\ -\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par +{\bfseries The Nativity of Our Lord (Christmas) }\par +{\scriptsize 1st Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Heb 1:1-12 }\quad{\scriptsize Gospel\ John 1:1-14 } -\medskip +\end{tcolorbox} -\textbf{ 24 } \quad ef-nativity-vigil\\ -\small class-1 \textperiodcentered\ violet\\ -\small Ep. Rom 1:1-6\quad\small Ev. Matt 1:18-21\\ +\clearpage -\medskip +\label{w12-5} +{\bfseries\large December }\hfill{\small Week 5}\par\vspace{0.5mm} -\textbf{ 25 } \quad ef-nativity\\ -\small class-1 \textperiodcentered\ white\\ -\small Ep. Heb 1:1-12\quad\small Ev. John 1:1-14\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par +{\bfseries Sunday within the Octave of the Nativity }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Gal 4:1-7 }\quad{\scriptsize Gospel\ Luke 2:33-40 } +\par{\scriptsize Commemoration\ St. Stephen } +\end{tcolorbox} -\medskip -\textbf{ 26 } \quad ef-christmas-sunday-0\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Gal 4:1-7\quad\small Ev. Luke 2:33-40\\ -\small Com. stephen\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par +{\bfseries St. John the Evangelist }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Ecclus 15:1-6 }\quad{\scriptsize Gospel\ John 21:19-24 } +\par{\scriptsize Commemoration\ ef-nativity-octave-day-3 } +\end{tcolorbox} -\medskip -\textbf{ 27 } \quad john-the-evangelist\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Ecclus 15:1-6\quad\small Ev. John 21:19-24\\ -\small Com. ef-nativity-octave-day-3\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par +{\bfseries Holy Innocents }\par +{\scriptsize 2nd Class \textperiodcentered\ Red }\par +{\scriptsize Epistle\ Apoc 14:1-5 }\quad{\scriptsize Gospel\ Matt 2:13-18 } +\par{\scriptsize Commemoration\ ef-nativity-octave-day-4 } +\end{tcolorbox} -\medskip -\textbf{ 28 } \quad holy-innocents\\ -\small class-2 \textperiodcentered\ red\\ -\small Ep. Apoc 14:1-5\quad\small Ev. Matt 2:13-18\\ -\small Com. ef-nativity-octave-day-4\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par +{\bfseries 5th Day within the Octave of the Nativity }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } +\par{\scriptsize Commemoration\ thomas-becket } +\end{tcolorbox} -\medskip -\textbf{ 29 } \quad ef-nativity-octave-day-5\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ -\small Com. thomas-becket\\ +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par +{\bfseries 6th Day within the Octave of the Nativity }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } -\medskip +\end{tcolorbox} -\textbf{ 30 } \quad ef-nativity-octave-day-6\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ -\medskip +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] +{\bfseries 31 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par +{\bfseries 7th Day within the Octave of the Nativity }\par +{\scriptsize 2nd Class \textperiodcentered\ White }\par +{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } +\par{\scriptsize Commemoration\ silvester } +\end{tcolorbox} -\textbf{ 31 } \quad ef-nativity-octave-day-7\\ -\small class-2 \textperiodcentered\ white\\ -\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ -\small Com. silvester\\ -\medskip +\clearpage \end{document} diff --git a/test/golden/ordo-2027.txt b/test/golden/ordo-2027.txt index daf66e3..c338aa4 100644 --- a/test/golden/ordo-2027.txt +++ b/test/golden/ordo-2027.txt @@ -1,1986 +1,1986 @@ -Ianuarius 2027 +January 2027 -1 ef-circumcision +1 The Octave Day of the Nativity class-1 · white - Ep. Titus 2:11-15 - Ev. Luke 2:21 + Epistle Titus 2:11-15 + Gospel Luke 2:21 -2 ef-christmas-1-saturday +2 Our Lady's Saturday Office class-4 · white - Ep. Titus 3:4-7 - Ev. Luke 2:15-20 + Epistle Titus 3:4-7 + Gospel Luke 2:15-20 -3 ef-holy-name-sunday +3 The Holy Name of Jesus class-2 · white - Ep. Acts 4:8-12 - Ev. Luke 2:21 + Epistle Acts 4:8-12 + Gospel Luke 2:21 -4 ef-christmas-1-monday +4 Monday before Epiphany class-4 · white - Ep. Titus 2:11-15 - Ev. Luke 2:21 + Epistle Titus 2:11-15 + Gospel Luke 2:21 -5 ef-christmas-1-tuesday +5 Tuesday before Epiphany class-4 · white - Ep. Titus 2:11-15 - Ev. Luke 2:21 - Com. telesphorus-pope-and-martyr + Epistle Titus 2:11-15 + Gospel Luke 2:21 + Commemoration telesphorus-pope-and-martyr -6 ef-epiphany +6 The Epiphany of Our Lord class-1 · white - Ep. Isa 60:1-6 - Ev. Matt 2:1-12 + Epistle Isa 60:1-6 + Gospel Matt 2:1-12 -7 ef-christmas-2-thursday +7 Thursday after Epiphany class-4 · white - Ep. Isa 60:1-6 - Ev. Matt 2:1-12 + Epistle Isa 60:1-6 + Gospel Matt 2:1-12 -8 ef-christmas-2-friday +8 Friday after Epiphany class-4 · white - Ep. Isa 60:1-6 - Ev. Matt 2:1-12 + Epistle Isa 60:1-6 + Gospel Matt 2:1-12 -9 ef-christmas-2-saturday +9 Our Lady's Saturday Office class-4 · white - Ep. Titus 3:4-7 - Ev. Luke 2:15-20 + Epistle Titus 3:4-7 + Gospel Luke 2:15-20 -10 ef-time-after-epiphany-sunday-1 +10 The Holy Family class-2 · white - Ep. Col 3:12-17 - Ev. Luke 2:42-52 + Epistle Col 3:12-17 + Gospel Luke 2:42-52 -11 ef-time-after-epiphany-1-monday +11 Monday of the 1st Week of the Time after Epiphany class-4 · white - Ep. Rom 12:1-5 - Ev. Luke 2:42-52 - Com. hyginus-pope-and-martyr + Epistle Rom 12:1-5 + Gospel Luke 2:42-52 + Commemoration hyginus-pope-and-martyr -12 ef-time-after-epiphany-1-tuesday +12 Tuesday of the 1st Week of the Time after Epiphany class-4 · white - Ep. Rom 12:1-5 - Ev. Luke 2:42-52 + Epistle Rom 12:1-5 + Gospel Luke 2:42-52 -13 commemoration-of-the-baptism-of-the-lord +13 Commemoration of the Baptism of the Lord class-2 · white - Ep. Isa 60:1-6 - Ev. John 1:29-34 + Epistle Isa 60:1-6 + Gospel John 1:29-34 -14 hilary +14 St. Hilary class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. felicis + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration felicis -15 paul-the-first-hermit +15 St. Paul, the First Hermit class-3 · white - Ep. Phil 3:7-12 - Ev. Matt 11:25-30 - Com. maur-abbot + Epistle Phil 3:7-12 + Gospel Matt 11:25-30 + Commemoration maur-abbot -16 marcellus-i +16 St. Marcellus I class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 -17 ef-time-after-epiphany-sunday-2 +17 2nd Sunday after Epiphany class-2 · green - Ep. Rom 12:6-16 - Ev. John 2:1-11 + Epistle Rom 12:6-16 + Gospel John 2:1-11 -18 ef-time-after-epiphany-2-monday +18 Monday of the 2nd Week of the Time after Epiphany class-4 · green - Ep. Rom 12:6-16 - Ev. John 2:1-11 - Com. prisca + Epistle Rom 12:6-16 + Gospel John 2:1-11 + Commemoration prisca -19 ef-time-after-epiphany-2-tuesday +19 Tuesday of the 2nd Week of the Time after Epiphany class-4 · green - Ep. Rom 12:6-16 - Ev. John 2:1-11 - Com. canute-martyr - Com. sts-marius-martha-audifax-abachum + Epistle Rom 12:6-16 + Gospel John 2:1-11 + Commemoration canute-martyr + Commemoration sts-marius-martha-audifax-abachum -20 sts-fabian-sebastian +20 Sts. Fabian & Sebastian class-3 · red - Ep. Heb 11:33-39 - Ev. Luke 6:17-23 + Epistle Heb 11:33-39 + Gospel Luke 6:17-23 -21 agnes +21 St. Agnes class-3 · red - Ep. Sir 51:1-8; 51:12 - Ev. Matt 25:1-13. + Epistle Sir 51:1-8; 51:12 + Gospel Matt 25:1-13. -22 sts-vincent-anastasius +22 Sts. Vincent & Anastasius class-3 · red - Ep. Wis 3:1-8 - Ev. Luke 21:9-19 + Epistle Wis 3:1-8 + Gospel Luke 21:9-19 -23 raymond-of-pe-afort +23 St. Raymond of Peñafort class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 - Com. emerentiana + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 + Commemoration emerentiana -24 ef-septuagesima-sunday-1 +24 Septuagesima Sunday class-2 · violet - Ep. 1 Cor. 9:24-27; 10:1-5 - Ev. Matt 20:1-16 + Epistle 1 Cor. 9:24-27; 10:1-5 + Gospel Matt 20:1-16 -25 conversion-of-st-paul +25 Conversion of St. Paul class-3 · white - Ep. Acts 9:1-22 - Ev. Matt 19:27-29. - Com. peter + Epistle Acts 9:1-22 + Gospel Matt 19:27-29. + Commemoration peter -26 polycarp +26 St. Polycarp class-3 · red - Ep. 1 John 3:10-16 - Ev. Matt 10:26-32. + Epistle 1 John 3:10-16 + Gospel Matt 10:26-32. -27 john-chrysostom +27 St. John Chrysostom class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -28 peter-nolasco +28 St. Peter Nolasco class-3 · white - Ep. 1 Cor. 4:9-14 - Ev. Luke 12:32-34 - Com. agnes-secundo + Epistle 1 Cor. 4:9-14 + Gospel Luke 12:32-34 + Commemoration agnes-secundo -29 francis-de-sales +29 St. Francis de Sales class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -30 martina +30 St. Martina class-3 · red - Ep. Sir 51:1-8; 51:12 - Ev. Matt 25:1-13. + Epistle Sir 51:1-8; 51:12 + Gospel Matt 25:1-13. -31 ef-septuagesima-sunday-2 +31 Sexagesima Sunday class-2 · violet - Ep. 2 Cor. 11:19-33; 12:1-9 - Ev. Luke 8:4-15 + Epistle 2 Cor. 11:19-33; 12:1-9 + Gospel Luke 8:4-15 -Februarius 2027 +February 2027 -1 ignatius-of-antioch +1 St. Ignatius of Antioch class-3 · red - Ep. Rom 8:35-39 - Ev. John 12:24-26 + Epistle Rom 8:35-39 + Gospel John 12:24-26 -2 purification-of-the-blessed-virgin-mary +2 Purification of the Blessed Virgin Mary class-2 · white - Ep. Mal 3:1-4 - Ev. Luke 2:22-32 + Epistle Mal 3:1-4 + Gospel Luke 2:22-32 -3 ef-septuagesima-2-wednesday +3 Wednesday of the 2nd Week of Septuagesimatide class-4 · violet - Ep. 2 Cor. 11:19-33; 12:1-9 - Ev. Luke 8:4-15 - Com. blaise + Epistle 2 Cor. 11:19-33; 12:1-9 + Gospel Luke 8:4-15 + Commemoration blaise -4 andrew-corsini +4 St. Andrew Corsini class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Matt 25:14-23 + Epistle Sir 44:16-27; 45:3-20 + Gospel Matt 25:14-23 -5 agatha +5 St. Agatha class-3 · red - Ep. 1 Cor. 1:26-31 - Ev. Matt 19:3-12. + Epistle 1 Cor. 1:26-31 + Gospel Matt 19:3-12. -6 titus +6 St. Titus class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Luke 10:1-9 - Com. dorothy + Epistle Sir 44:16-27; 45:3-20 + Gospel Luke 10:1-9 + Commemoration dorothy -7 ef-septuagesima-sunday-3 +7 Quinquagesima Sunday class-2 · violet - Ep. 1 Cor. 13:1-13 - Ev. Luke 18:31-43 + Epistle 1 Cor. 13:1-13 + Gospel Luke 18:31-43 -8 john-of-matha +8 St. John of Matha class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -9 cyril-of-alexandria +9 St. Cyril of Alexandria class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. appollonia + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration appollonia -10 ef-ash-wednesday +10 Ash Wednesday class-1 · violet - Ep. Joel 2:12-19 - Ev. Matt 6:16-21 + Epistle Joel 2:12-19 + Gospel Matt 6:16-21 -11 ef-lent-after-ashes-thursday +11 Thursday after Ash Wednesday class-3 · violet - Ep. Isa 38:1-6 - Ev. Matt 8:5-13 - Com. our-lady-of-lourdes + Epistle Isa 38:1-6 + Gospel Matt 8:5-13 + Commemoration Our Lady of Lourdes -12 ef-lent-after-ashes-friday +12 Friday after Ash Wednesday class-3 · violet - Ep. Isa 58:1-9 - Ev. Matt 5:43-48; 6:1-4 - Com. seven-holy-servite-founders + Epistle Isa 58:1-9 + Gospel Matt 5:43-48; 6:1-4 + Commemoration Seven Holy Servite Founders -13 ef-lent-after-ashes-saturday +13 Saturday after Ash Wednesday class-3 · violet - Ep. Isa 58:9-14 - Ev. Mark 6:47-56 + Epistle Isa 58:9-14 + Gospel Mark 6:47-56 -14 ef-lent-sunday-1 +14 1st Sunday of Lent class-1 · violet - Ep. 2 Cor. 6:1-10 - Ev. Matt 4:1-11 + Epistle 2 Cor. 6:1-10 + Gospel Matt 4:1-11 -15 ef-lent-1-monday +15 Monday of the 1st Week of Lent class-3 · violet - Ep. Ezech 34:11-16 - Ev. Matt 25:31-46 - Com. sts-faustinus-jovita + Epistle Ezech 34:11-16 + Gospel Matt 25:31-46 + Commemoration sts-faustinus-jovita -16 ef-lent-1-tuesday +16 Tuesday of the 1st Week of Lent class-3 · violet - Ep. Isa 55:6-11 - Ev. Matt 21:10-17 + Epistle Isa 55:6-11 + Gospel Matt 21:10-17 -17 ef-lent-ember-wed +17 Lenten Ember Wednesday class-2 · violet - Ep. 3 Kgs. 19:3-8 - Ev. Matt 12:38-50 + Epistle 3 Kgs. 19:3-8 + Gospel Matt 12:38-50 -18 ef-lent-1-thursday +18 Thursday of the 1st Week of Lent class-3 · violet - Ep. Ezech 18:1-9 - Ev. Matt 15:21-28 - Com. simeon + Epistle Ezech 18:1-9 + Gospel Matt 15:21-28 + Commemoration simeon -19 ef-lent-ember-fri +19 Lenten Ember Friday class-2 · violet - Ep. Ezech 18:20-28 - Ev. John 5:1-15 + Epistle Ezech 18:20-28 + Gospel John 5:1-15 -20 ef-lent-ember-sat +20 Lenten Ember Saturday class-2 · violet - Ep. 1 Thess. 5:14-23 - Ev. Matt 17:1-9 + Epistle 1 Thess. 5:14-23 + Gospel Matt 17:1-9 -21 ef-lent-sunday-2 +21 2nd Sunday of Lent class-1 · violet - Ep. 1 Thess. 4:1-7 - Ev. Matt 17:1-9 + Epistle 1 Thess. 4:1-7 + Gospel Matt 17:1-9 -22 chair-of-st-peter +22 Chair of St. Peter class-2 · white - Ep. 1 Pet 1:1-7 - Ev. Matt 16:13-19 - Com. ef-lent-2-monday - Com. paul + Epistle 1 Pet 1:1-7 + Gospel Matt 16:13-19 + Commemoration Monday of the 2nd Week of Lent + Commemoration paul -23 ef-lent-2-tuesday +23 Tuesday of the 2nd Week of Lent class-3 · violet - Ep. 3 Kings 17:8-16 - Ev. Matt 23:1-12 - Com. peter-damien + Epistle 3 Kings 17:8-16 + Gospel Matt 23:1-12 + Commemoration St. Peter Damien -24 matthias +24 St. Matthias class-2 · red - Ep. Acts 1:15-26 - Ev. Matt 11:25-30 - Com. ef-lent-2-wednesday + Epistle Acts 1:15-26 + Gospel Matt 11:25-30 + Commemoration Wednesday of the 2nd Week of Lent -25 ef-lent-2-thursday +25 Thursday of the 2nd Week of Lent class-3 · violet - Ep. Jer 17:5-10 - Ev. Luke 16:19-31 + Epistle Jer 17:5-10 + Gospel Luke 16:19-31 -26 ef-lent-2-friday +26 Friday of the 2nd Week of Lent class-3 · violet - Ep. Gen 37:6-22 - Ev. Matt 21:33-46 + Epistle Gen 37:6-22 + Gospel Matt 21:33-46 -27 ef-lent-2-saturday +27 Saturday of the 2nd Week of Lent class-3 · violet - Ep. Gen 27:6-40 - Ev. Luke 15:11-32 - Com. gabriel-of-our-lady-of-sorrows + Epistle Gen 27:6-40 + Gospel Luke 15:11-32 + Commemoration St. Gabriel of Our Lady of Sorrows -28 ef-lent-sunday-3 +28 3rd Sunday of Lent class-1 · violet - Ep. Eph 5:1-9 - Ev. Luke 11:14-28 + Epistle Eph 5:1-9 + Gospel Luke 11:14-28 -Martius 2027 +March 2027 -1 ef-lent-3-monday +1 Monday of the 3rd Week of Lent class-3 · violet - Ep. 4 Kings 5:1-15 - Ev. Luke 4:23-30 + Epistle 4 Kings 5:1-15 + Gospel Luke 4:23-30 -2 ef-lent-3-tuesday +2 Tuesday of the 3rd Week of Lent class-3 · violet - Ep. 4 Kings 4:1-7 - Ev. Matt 18:15-22 + Epistle 4 Kings 4:1-7 + Gospel Matt 18:15-22 -3 ef-lent-3-wednesday +3 Wednesday of the 3rd Week of Lent class-3 · violet - Ep. Ex 20:12-24 - Ev. Matt 15:1-20 + Epistle Ex 20:12-24 + Gospel Matt 15:1-20 -4 ef-lent-3-thursday +4 Thursday of the 3rd Week of Lent class-3 · violet - Ep. Jer 7:1-7 - Ev. Luke 4:38-44. - Com. casimir - Com. lucius + Epistle Jer 7:1-7 + Gospel Luke 4:38-44. + Commemoration St. Casimir + Commemoration lucius -5 ef-lent-3-friday +5 Friday of the 3rd Week of Lent class-3 · violet - Ep. Num 20:1, 3; 6-13. - Ev. John 4:5-42 + Epistle Num 20:1, 3; 6-13. + Gospel John 4:5-42 -6 ef-lent-3-saturday +6 Saturday of the 3rd Week of Lent class-3 · violet - Ep. Dan 13:1-9, 15-17, 19-30, 33-62. - Ev. John 8:1-11 - Com. sts-felicitas-perpetua + Epistle Dan 13:1-9, 15-17, 19-30, 33-62. + Gospel John 8:1-11 + Commemoration Sts. Felicitas & Perpetua -7 ef-lent-sunday-4 +7 4th Sunday of Lent class-1 · rose - Ep. Gal 4:22-31 - Ev. John 6:1-15 + Epistle Gal 4:22-31 + Gospel John 6:1-15 -8 ef-lent-4-monday +8 Monday of the 4th Week of Lent class-3 · violet - Ep. 3 Kings 3:16-28 - Ev. John 2:13-25 - Com. john-of-god + Epistle 3 Kings 3:16-28 + Gospel John 2:13-25 + Commemoration St. John of God -9 ef-lent-4-tuesday +9 Tuesday of the 4th Week of Lent class-3 · violet - Ep. Ex 32:7-14 - Ev. John 7:14-31 - Com. frances-rome + Epistle Ex 32:7-14 + Gospel John 7:14-31 + Commemoration St. Frances Rome -10 ef-lent-4-wednesday +10 Wednesday of the 4th Week of Lent class-3 · violet - Ep. Isa. 1:16-19 - Ev. John 9:1-38 - Com. forty-holy-martyrs-of-sebaste + Epistle Isa. 1:16-19 + Gospel John 9:1-38 + Commemoration forty-holy-martyrs-of-sebaste -11 ef-lent-4-thursday +11 Thursday of the 4th Week of Lent class-3 · violet - Ep. 4 Kings 4:25-38 - Ev. Luke 7:11-16 + Epistle 4 Kings 4:25-38 + Gospel Luke 7:11-16 -12 ef-lent-4-friday +12 Friday of the 4th Week of Lent class-3 · violet - Ep. 3 Kings 17:17-24 - Ev. John 11:1-45 - Com. gregory-the-great + Epistle 3 Kings 17:17-24 + Gospel John 11:1-45 + Commemoration gregory-the-great -13 ef-lent-4-saturday +13 Saturday of the 4th Week of Lent class-3 · violet - Ep. Isa 49:8-15 - Ev. John 8:12-20 + Epistle Isa 49:8-15 + Gospel John 8:12-20 -14 ef-passion-sunday +14 Passion Sunday class-1 · violet - Ep. Heb 9:11-15. - Ev. John 8:46-59. + Epistle Heb 9:11-15. + Gospel John 8:46-59. -15 ef-passiontide-1-monday +15 Monday of the 1st Week of Passion Week class-3 · violet - Ep. Jonas 3:1-10 - Ev. John 7:32-39 + Epistle Jonas 3:1-10 + Gospel John 7:32-39 -16 ef-passiontide-1-tuesday +16 Tuesday of the 1st Week of Passion Week class-3 · violet - Ep. Dan 14:27, 28-42 - Ev. John 7:1-13 + Epistle Dan 14:27, 28-42 + Gospel John 7:1-13 -17 ef-passiontide-1-wednesday +17 Wednesday of the 1st Week of Passion Week class-3 · violet - Ep. Lev 19:1-2, 11-19, 25 - Ev. John 10:22-38 - Com. patrick + Epistle Lev 19:1-2, 11-19, 25 + Gospel John 10:22-38 + Commemoration patrick -18 ef-passiontide-1-thursday +18 Thursday of the 1st Week of Passion Week class-3 · violet - Ep. Dan 3:25, 34-45. - Ev. Luke 7:36-50 - Com. cyril-of-jerusalem + Epistle Dan 3:25, 34-45. + Gospel Luke 7:36-50 + Commemoration cyril-of-jerusalem -19 joseph-spouse-of-the-bl-virgin-mary +19 St. Joseph, Spouse of the Bl. Virgin Mary class-1 · white - Ep. Ecclus 45:1-6 - Ev. Matt 1:18-21 - Com. ef-passiontide-1-friday + Epistle Ecclus 45:1-6 + Gospel Matt 1:18-21 + Commemoration Friday of the 1st Week of Passion Week -20 ef-passiontide-1-saturday +20 Saturday of the 1st Week of Passion Week class-3 · violet - Ep. Jer 18:18-23 - Ev. John 12:10-36 + Epistle Jer 18:18-23 + Gospel John 12:10-36 -21 ef-palm-sunday +21 Palm Sunday class-1 · violet - Ep. Phil 2:5-11 - Ev. Matt. 26:36-75; 27:1-60. + Epistle Phil 2:5-11 + Gospel Matt. 26:36-75; 27:1-60. -22 ef-passiontide-2-monday +22 Monday of Holy Week class-1 · violet - Ep. Isa 50:5-10 - Ev. John 12:1-9 + Epistle Isa 50:5-10 + Gospel John 12:1-9 -23 ef-passiontide-2-tuesday +23 Tuesday of Holy Week class-1 · violet - Ep. Jer 11:18-20 - Ev. Mark 14:32-72; 15, 1-46 + Epistle Jer 11:18-20 + Gospel Mark 14:32-72; 15, 1-46 -24 ef-passiontide-2-wednesday +24 Wednesday of Holy Week (Spy Wednesday) class-1 · violet - Ep. Isa 53:1-12 - Ev. Luke 22:39-71; 23:1-53 + Epistle Isa 53:1-12 + Gospel Luke 22:39-71; 23:1-53 -25 ef-passiontide-2-thursday +25 Holy Thursday (Maundy Thursday) class-1 · white - Ep. 1 Cor 11:20-32 - Ev. John 13:1-15 + Epistle 1 Cor 11:20-32 + Gospel John 13:1-15 -26 ef-passiontide-2-friday +26 Good Friday class-1 · black - Ep. Ex 12:1-11 - Ev. John 18:1-40; 19:1-42 + Epistle Ex 12:1-11 + Gospel John 18:1-40; 19:1-42 -27 ef-passiontide-2-saturday +27 Holy Saturday class-1 · violet - Ep. Col 3:1-4 - Ev. Matt 28:1-7 + Epistle Col 3:1-4 + Gospel Matt 28:1-7 -28 ef-easter-sunday +28 Easter Sunday class-1 · white - Ep. 1 Cor 5:7-8 - Ev. Mark 16:1-7 + Epistle 1 Cor 5:7-8 + Gospel Mark 16:1-7 -29 ef-easter-1-monday +29 Monday of Easter Week class-1 · white - Ep. Acts 10:37-43. - Ev. Luke 24:13-35 + Epistle Acts 10:37-43. + Gospel Luke 24:13-35 -30 ef-easter-1-tuesday +30 Tuesday of Easter Week class-1 · white - Ep. Acts 13:16; 13:26-33 - Ev. Luke 24:36-47 + Epistle Acts 13:16; 13:26-33 + Gospel Luke 24:36-47 -31 ef-easter-1-wednesday +31 Wednesday of Easter Week class-1 · white - Ep. Acts 3:13-15; 3:17-19 - Ev. John 21:1-14 + Epistle Acts 3:13-15; 3:17-19 + Gospel John 21:1-14 -Aprilis 2027 +April 2027 -1 ef-easter-1-thursday +1 Thursday of Easter Week class-1 · white - Ep. Acts 8:26-40 - Ev. John 20:11-18 + Epistle Acts 8:26-40 + Gospel John 20:11-18 -2 ef-easter-1-friday +2 Friday of Easter Week class-1 · white - Ep. 1 Pet 3:18-22 - Ev. Matt 28:16-20 + Epistle 1 Pet 3:18-22 + Gospel Matt 28:16-20 -3 ef-easter-1-saturday +3 Saturday of Easter Week class-1 · white - Ep. 1 Pet 2:1-10 - Ev. John 20:1-9 + Epistle 1 Pet 2:1-10 + Gospel John 20:1-9 -4 ef-low-sunday +4 Low Sunday (Sunday in Easter Octave) class-1 · white - Ep. 1 John 5:4-10 - Ev. John 20:19-31 + Epistle 1 John 5:4-10 + Gospel John 20:19-31 -5 annunciation-of-the-blessed-virgin-mary +5 Annunciation of the Blessed Virgin Mary class-1 · white - Ep. Isa 7:10-15 - Ev. Luke 1:26-38 + Epistle Isa 7:10-15 + Gospel Luke 1:26-38 -6 ef-easter-2-tuesday +6 Tuesday of the 2nd Week of Eastertide class-4 · white - Ep. 1 John 5:4-10 - Ev. John 20:19-31 + Epistle 1 John 5:4-10 + Gospel John 20:19-31 -7 ef-easter-2-wednesday +7 Wednesday of the 2nd Week of Eastertide class-4 · white - Ep. 1 John 5:4-10 - Ev. John 20:19-31 + Epistle 1 John 5:4-10 + Gospel John 20:19-31 -8 ef-easter-2-thursday +8 Thursday of the 2nd Week of Eastertide class-4 · white - Ep. 1 John 5:4-10 - Ev. John 20:19-31 + Epistle 1 John 5:4-10 + Gospel John 20:19-31 -9 ef-easter-2-friday +9 Friday of the 2nd Week of Eastertide class-4 · white - Ep. 1 John 5:4-10 - Ev. John 20:19-31 + Epistle 1 John 5:4-10 + Gospel John 20:19-31 -10 ef-easter-2-saturday +10 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. John 19:25-27 + Epistle Ecclus 24:14-16 + Gospel John 19:25-27 -11 ef-easter-sunday-3 +11 2nd Sunday after Easter class-2 · white - Ep. 1 Pet 2:21-25 - Ev. John 10:11-16 + Epistle 1 Pet 2:21-25 + Gospel John 10:11-16 -12 ef-easter-3-monday +12 Monday of the 3rd Week of Eastertide class-4 · white - Ep. 1 Pet 2:21-25 - Ev. John 10:11-16 + Epistle 1 Pet 2:21-25 + Gospel John 10:11-16 -13 hermenegild +13 St. Hermenegild class-3 · red - Ep. Wis 10:10-14 - Ev. Luke 14:26-33. + Epistle Wis 10:10-14 + Gospel Luke 14:26-33. -14 justin +14 St. Justin class-3 · red - Ep. 1 Cor 1:18-25; 1:30; - Ev. Luke 12:2-8 - Com. sts-tiburtius-valerian-et-maximus-martyrs + Epistle 1 Cor 1:18-25; 1:30; + Gospel Luke 12:2-8 + Commemoration sts-tiburtius-valerian-et-maximus-martyrs -15 ef-easter-3-thursday +15 Thursday of the 3rd Week of Eastertide class-4 · white - Ep. 1 Pet 2:21-25 - Ev. John 10:11-16 + Epistle 1 Pet 2:21-25 + Gospel John 10:11-16 -16 ef-easter-3-friday +16 Friday of the 3rd Week of Eastertide class-4 · white - Ep. 1 Pet 2:21-25 - Ev. John 10:11-16 + Epistle 1 Pet 2:21-25 + Gospel John 10:11-16 -17 ef-easter-3-saturday +17 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. John 19:25-27 - Com. anicetus + Epistle Ecclus 24:14-16 + Gospel John 19:25-27 + Commemoration anicetus -18 ef-easter-sunday-4 +18 3rd Sunday after Easter class-2 · white - Ep. 1 Pet 2:11-19 - Ev. John 16:16-22 + Epistle 1 Pet 2:11-19 + Gospel John 16:16-22 -19 ef-easter-4-monday +19 Monday of the 4th Week of Eastertide class-4 · white - Ep. 1 Pet 2:11-19 - Ev. John 16:16-22 + Epistle 1 Pet 2:11-19 + Gospel John 16:16-22 -20 ef-easter-4-tuesday +20 Tuesday of the 4th Week of Eastertide class-4 · white - Ep. 1 Pet 2:11-19 - Ev. John 16:16-22 + Epistle 1 Pet 2:11-19 + Gospel John 16:16-22 -21 anselm +21 St. Anselm class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -22 sts-soter-caius +22 Sts. Soter & Caius class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 -23 ef-easter-4-friday +23 Friday of the 4th Week of Eastertide class-4 · white - Ep. 1 Pet 2:11-19 - Ev. John 16:16-22 - Com. george + Epistle 1 Pet 2:11-19 + Gospel John 16:16-22 + Commemoration george -24 fidelis-of-sigmaringen +24 St. Fidelis of Sigmaringen class-3 · red - Ep. Wis 5:1-5 - Ev. John 15:1-7 + Epistle Wis 5:1-5 + Gospel John 15:1-7 -25 ef-easter-sunday-5 +25 4th Sunday after Easter class-2 · white - Ep. Jas 1:17-21 - Ev. John 16:5-14 - Com. major-litanies + Epistle Jas 1:17-21 + Gospel John 16:5-14 + Commemoration major-litanies -26 sts-cletus-marcellinus +26 Sts. Cletus & Marcellinus class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 -27 peter-canisius +27 St. Peter Canisius class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -28 paul-of-the-cross +28 St. Paul of the Cross class-3 · white - Ep. 1 Cor 1:17-25. - Ev. Luke 10:1-9 + Epistle 1 Cor 1:17-25. + Gospel Luke 10:1-9 -29 peter-of-verona +29 St. Peter of Verona class-3 · red - Ep. 2 Tim. 2:8-10; 3:10-12. - Ev. Matt 10:34-42 + Epistle 2 Tim. 2:8-10; 3:10-12. + Gospel Matt 10:34-42 -30 catherine-of-siena +30 St. Catherine of Siena class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -Maius 2027 +May 2027 -1 joseph-the-workman +1 St. Joseph the Workman class-1 · white - Ep. Col. 3:14-15, 17, 23-24 - Ev. Matt 13:54-58 + Epistle Col. 3:14-15, 17, 23-24 + Gospel Matt 13:54-58 -2 ef-easter-sunday-6 +2 5th Sunday after Easter class-2 · white - Ep. Jas 1:22-27 - Ev. John 16:23-30 + Epistle Jas 1:22-27 + Gospel John 16:23-30 -3 ef-rogation-monday +3 Rogation Monday class-4 · violet - Ep. Jas 1:22-27 - Ev. John 16:23-30 - Com. sts-alexander-companions + Epistle Jas 1:22-27 + Gospel John 16:23-30 + Commemoration sts-alexander-companions -4 monica +4 St. Monica class-3 · white - Ep. 1 Tim. 5:3-10. - Ev. Luke 7:11-16 + Epistle 1 Tim. 5:3-10. + Gospel Luke 7:11-16 -5 ef-ascension-vigil +5 Vigil of the Ascension class-2 · white - Ep. Eph. 4:7-13. - Ev. John 17:1-11. - Com. pius-v + Epistle Eph. 4:7-13. + Gospel John 17:1-11. + Commemoration St. Pius V -6 ef-ascension +6 The Ascension of Our Lord class-1 · white - Ep. Acts 1:1-11 - Ev. Mark 16:14-20 + Epistle Acts 1:1-11 + Gospel Mark 16:14-20 -7 stanislaus +7 St. Stanislaus class-3 · red - Ep. Wis 5:1-5 - Ev. John 15:1-7 + Epistle Wis 5:1-5 + Gospel John 15:1-7 -8 ef-easter-6-saturday +8 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. John 19:25-27 + Epistle Ecclus 24:14-16 + Gospel John 19:25-27 -9 ef-easter-sunday-7 +9 Sunday after the Ascension class-2 · white - Ep. 1 Pet 4:7-11. - Ev. John 15:26-27; 16:1-4. + Epistle 1 Pet 4:7-11. + Gospel John 15:26-27; 16:1-4. -10 antoninus +10 St. Antoninus class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Matt 25:14-23 - Com. gordiano-and-epimacho + Epistle Sir 44:16-27; 45:3-20 + Gospel Matt 25:14-23 + Commemoration gordiano-and-epimacho -11 sts-philip-james +11 Sts. Philip & James class-2 · red - Ep. Wis. 5:1-5 - Ev. John 14:1-13 + Epistle Wis. 5:1-5 + Gospel John 14:1-13 -12 sts-nereus-achilleus-domitilla-pancras +12 Sts. Nereus, Achilleus, Domitilla, & Pancras class-3 · red - Ep. Wis. 5:1-5 - Ev. John 4:46-53 + Epistle Wis. 5:1-5 + Gospel John 4:46-53 -13 robert-bellarmine +13 St. Robert Bellarmine class-3 · white - Ep. Wis 7:7-14. - Ev. Matt 5:13-19 + Epistle Wis 7:7-14. + Gospel Matt 5:13-19 -14 ef-easter-7-friday +14 Friday of the 7th Week of Eastertide class-4 · white - Ep. 1 Pet 4:7-11. - Ev. John 15:26-27; 16:1-4. - Com. boniface-martyr + Epistle 1 Pet 4:7-11. + Gospel John 15:26-27; 16:1-4. + Commemoration boniface-martyr -15 ef-pentecost-vigil +15 Vigil of Pentecost class-1 · red - Ep. Acts 19:1-8. - Ev. John 14:15-21. + Epistle Acts 19:1-8. + Gospel John 14:15-21. -16 ef-pentecost +16 Pentecost Sunday (Whitsunday) class-1 · red - Ep. Acts 2:1-11. - Ev. John 14:23-31. + Epistle Acts 2:1-11. + Gospel John 14:23-31. -17 ef-easter-8-monday +17 Monday of Pentecost Week class-1 · red - Ep. Acts 10:34, 42-48 - Ev. John 3:16-21 + Epistle Acts 10:34, 42-48 + Gospel John 3:16-21 -18 ef-easter-8-tuesday +18 Tuesday of Pentecost Week class-1 · red - Ep. Acts 8:14-17. - Ev. John 10:1-10. + Epistle Acts 8:14-17. + Gospel John 10:1-10. -19 ef-pentecost-ember-wed +19 Pentecost Ember Wednesday class-1 · red - Ep. Acts 5:12-16 - Ev. John 6:44-52. + Epistle Acts 5:12-16 + Gospel John 6:44-52. -20 ef-easter-8-thursday +20 Thursday of Pentecost Week class-1 · red - Ep. Acts 8:5-8 - Ev. Luke 9:1-6 + Epistle Acts 8:5-8 + Gospel Luke 9:1-6 -21 ef-pentecost-ember-fri +21 Pentecost Ember Friday class-1 · red - Ep. Joel 2:23-24; 26-27 - Ev. Luke 5:17-26 + Epistle Joel 2:23-24; 26-27 + Gospel Luke 5:17-26 -22 ef-pentecost-ember-sat +22 Pentecost Ember Saturday class-1 · red - Ep. Rom 5:1-5. - Ev. Luke 4:38-44. + Epistle Rom 5:1-5. + Gospel Luke 4:38-44. -23 ef-trinity +23 Trinity Sunday class-1 · white - Ep. Rom 11:33-36. - Ev. Matt 28:18-20 + Epistle Rom 11:33-36. + Gospel Matt 28:18-20 -24 ef-time-after-pentecost-1-monday +24 Monday of the 1st Week of the Time after Pentecost class-4 · green - Ep. 1 John 4:8-21 - Ev. Luke 6:36-42 + Epistle 1 John 4:8-21 + Gospel Luke 6:36-42 -25 gregory-vii +25 St. Gregory VII class-3 · white - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 - Com. urban-pope-and-martyr + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 + Commemoration urban-pope-and-martyr -26 philip-neri +26 St. Philip Neri class-3 · white - Ep. Wis 7:7-14. - Ev. Luke 12:35-40 - Com. eleutherius + Epistle Wis 7:7-14. + Gospel Luke 12:35-40 + Commemoration eleutherius -27 ef-corpus-christi +27 Corpus Christi class-1 · white - Ep. 1 Cor 11:23-29 - Ev. John 6:56-59 + Epistle 1 Cor 11:23-29 + Gospel John 6:56-59 -28 augustine-of-canterbury +28 St. Augustine of Canterbury class-3 · white - Ep. 1 Thess 2:2-9 - Ev. Luke 10:1-9 + Epistle 1 Thess 2:2-9 + Gospel Luke 10:1-9 -29 mary-magdalene-de-pazzi +29 St. Mary Magdalene de Pazzi class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -30 ef-time-after-pentecost-sunday-2 +30 2nd Sunday after Pentecost class-2 · green - Ep. 1 John 3:13-18. - Ev. Luke 14:16-24. + Epistle 1 John 3:13-18. + Gospel Luke 14:16-24. -31 queenship-of-the-blessed-virgin-mary +31 Queenship of the Blessed Virgin Mary class-2 · white - Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 - Ev. Luke 1:26-33 - Com. petronilla + Epistle Eccli 24:5; 14:7; 14:9-11; 24:30-31 + Gospel Luke 1:26-33 + Commemoration petronilla -Iunius 2027 +June 2027 -1 angela-merici +1 St. Angela Merici class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -2 ef-time-after-pentecost-2-wednesday +2 Wednesday of the 2nd Week of the Time after Pentecost class-4 · green - Ep. 1 John 3:13-18. - Ev. Luke 14:16-24. - Com. sts-marcellinus-peter-erasmus + Epistle 1 John 3:13-18. + Gospel Luke 14:16-24. + Commemoration sts-marcellinus-peter-erasmus -3 ef-time-after-pentecost-2-thursday +3 Thursday of the 2nd Week of the Time after Pentecost class-4 · green - Ep. 1 John 3:13-18. - Ev. Luke 14:16-24. + Epistle 1 John 3:13-18. + Gospel Luke 14:16-24. -4 ef-sacred-heart +4 The Sacred Heart of Jesus class-1 · white - Ep. Eph 3:8-12, 14-19 - Ev. John 19:31-37 + Epistle Eph 3:8-12, 14-19 + Gospel John 19:31-37 -5 boniface +5 St. Boniface class-3 · red - Ep. Ecclus 44:1-15 - Ev. Matt 5:1-12 + Epistle Ecclus 44:1-15 + Gospel Matt 5:1-12 -6 ef-time-after-pentecost-sunday-3 +6 3rd Sunday after Pentecost class-2 · green - Ep. 1 Pet. 5:6-11 - Ev. Luke 15:1-10 + Epistle 1 Pet. 5:6-11 + Gospel Luke 15:1-10 -7 ef-time-after-pentecost-3-monday +7 Monday of the 3rd Week of the Time after Pentecost class-4 · green - Ep. 1 Pet. 5:6-11 - Ev. Luke 15:1-10 + Epistle 1 Pet. 5:6-11 + Gospel Luke 15:1-10 -8 ef-time-after-pentecost-3-tuesday +8 Tuesday of the 3rd Week of the Time after Pentecost class-4 · green - Ep. 1 Pet. 5:6-11 - Ev. Luke 15:1-10 + Epistle 1 Pet. 5:6-11 + Gospel Luke 15:1-10 -9 ef-time-after-pentecost-3-wednesday +9 Wednesday of the 3rd Week of the Time after Pentecost class-4 · green - Ep. 1 Pet. 5:6-11 - Ev. Luke 15:1-10 - Com. sts-primus-felicianus + Epistle 1 Pet. 5:6-11 + Gospel Luke 15:1-10 + Commemoration sts-primus-felicianus -10 margaret-of-scotland +10 St. Margaret of Scotland class-3 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. -11 barnabas +11 St. Barnabas class-3 · red - Ep. Acts 11:21-26; 13:1-3 - Ev. Matt 10:16-22 + Epistle Acts 11:21-26; 13:1-3 + Gospel Matt 10:16-22 -12 john-of-san-fecundo +12 St. John of San Fecundo class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 - Com. basilidus + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 + Commemoration basilidus -13 ef-time-after-pentecost-sunday-4 +13 4th Sunday after Pentecost class-2 · green - Ep. Rom 8:18-23 - Ev. Luke 5:1-11 + Epistle Rom 8:18-23 + Gospel Luke 5:1-11 -14 basil-the-great +14 St. Basil the Great class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Luke 14:26-35 + Epistle 2 Tim 4:1-8 + Gospel Luke 14:26-35 -15 ef-time-after-pentecost-4-tuesday +15 Tuesday of the 4th Week of the Time after Pentecost class-4 · green - Ep. Rom 8:18-23 - Ev. Luke 5:1-11 - Com. vitus + Epistle Rom 8:18-23 + Gospel Luke 5:1-11 + Commemoration vitus -16 ef-time-after-pentecost-4-wednesday +16 Wednesday of the 4th Week of the Time after Pentecost class-4 · green - Ep. Rom 8:18-23 - Ev. Luke 5:1-11 + Epistle Rom 8:18-23 + Gospel Luke 5:1-11 -17 gregory-barbarigo +17 St. Gregory Barbarigo class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Matt 25:14-23 + Epistle Sir 44:16-27; 45:3-20 + Gospel Matt 25:14-23 -18 ephrem-of-syria +18 St. Ephrem of Syria class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. marcus-and-marcellianus + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration marcus-and-marcellianus -19 julia-of-falconieri +19 St. Julia of Falconieri class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. - Com. sts-gervasius-and-protasius + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. + Commemoration sts-gervasius-and-protasius -20 ef-time-after-pentecost-sunday-5 +20 5th Sunday after Pentecost class-2 · green - Ep. 1 Pet 3:8-15. - Ev. Matt 5:20-24. + Epistle 1 Pet 3:8-15. + Gospel Matt 5:20-24. -21 aloysius-gongzaga +21 St. Aloysius Gongzaga class-3 · white - Ep. Sir 31:8-11 - Ev. Matt 22:29-40 + Epistle Sir 31:8-11 + Gospel Matt 22:29-40 -22 paulinus-of-nola +22 St. Paulinus of Nola class-3 · white - Ep. 2 Cor. 8:9-15 - Ev. Luke 12:32-34 + Epistle 2 Cor. 8:9-15 + Gospel Luke 12:32-34 -23 vigil-of-the-nativity-of-st-john-the-baptist +23 Vigil of the Nativity of St. John the Baptist class-2 · violet - Ep. Jer 1:4-10 - Ev. Luke 1:5-17 + Epistle Jer 1:4-10 + Gospel Luke 1:5-17 -24 nativity-of-st-john-the-baptist +24 Nativity of St. John the Baptist class-1 · white - Ep. Isa 49:1-3, 5-7. - Ev. Luke 1:57-68 + Epistle Isa 49:1-3, 5-7. + Gospel Luke 1:57-68 -25 william +25 St. William class-3 · white - Ep. Ecclus 45:1-6 - Ev. Matt 19:27-29. + Epistle Ecclus 45:1-6 + Gospel Matt 19:27-29. -26 sts-john-paul +26 Sts. John & Paul class-3 · red - Ep. Eccli 44:10-15 - Ev. Luke 12:1-8 + Epistle Eccli 44:10-15 + Gospel Luke 12:1-8 -27 ef-time-after-pentecost-sunday-6 +27 6th Sunday after Pentecost class-2 · green - Ep. Rom 6:3-11. - Ev. Mark 8:1-9 + Epistle Rom 6:3-11. + Gospel Mark 8:1-9 -28 vigil-of-sts-peter-paul +28 Vigil of Sts. Peter & Paul class-2 · violet - Ep. Acts 3:1-10 - Ev. John 21:15-19 + Epistle Acts 3:1-10 + Gospel John 21:15-19 -29 sts-peter-paul +29 Sts. Peter & Paul class-1 · red - Ep. Acts 12:1-11 - Ev. Matt 16:13-19 + Epistle Acts 12:1-11 + Gospel Matt 16:13-19 -30 in-commemoratione-sancti-pauli-apostoli +30 In Commemoratione Sancti Pauli Apostoli class-3 · red - Ep. Gal 1:11-20 - Ev. Matt 10:16-22 - Com. commemoration-of-st-peter + Epistle Gal 1:11-20 + Gospel Matt 10:16-22 + Commemoration commemoration-of-st-peter -Iulius 2027 +July 2027 -1 precious-blood-of-our-lord-jesus-christ +1 The Precious Blood of Our Lord Jesus Christ class-1 · red - Ep. Heb 9:11-15. - Ev. John 19:30-35 + Epistle Heb 9:11-15. + Gospel John 19:30-35 -2 visitation-of-the-blessed-virgin-mary +2 Visitation of the Blessed Virgin Mary class-2 · white - Ep. Song 2:8-14 - Ev. Luke 1:39-47 - Com. processus-and-martinian + Epistle Song 2:8-14 + Gospel Luke 1:39-47 + Commemoration processus-and-martinian -3 irenaeus +3 St. Irenaeus class-3 · red - Ep. 2 Tim. 3:14-17; 4:1-5 - Ev. Matt 10:28-33 + Epistle 2 Tim. 3:14-17; 4:1-5 + Gospel Matt 10:28-33 -4 ef-time-after-pentecost-sunday-7 +4 7th Sunday after Pentecost class-2 · green - Ep. Rom 6:19-23 - Ev. Matt 7:15-21 + Epistle Rom 6:19-23 + Gospel Matt 7:15-21 -5 anthony-mary-zaccariah +5 St. Anthony Mary Zaccariah class-3 · white - Ep. 1 Tim. 4:8-16 - Ev. Mark 10:15-21 + Epistle 1 Tim. 4:8-16 + Gospel Mark 10:15-21 -6 ef-time-after-pentecost-7-tuesday +6 Tuesday of the 7th Week of the Time after Pentecost class-4 · green - Ep. Rom 6:19-23 - Ev. Matt 7:15-21 + Epistle Rom 6:19-23 + Gospel Matt 7:15-21 -7 sts-cyril-methodius +7 Sts. Cyril & Methodius class-3 · white - Ep. Heb 7:23-27 - Ev. Luke 10:1-9 + Epistle Heb 7:23-27 + Gospel Luke 10:1-9 -8 elizabeth-of-portugal +8 St. Elizabeth of Portugal class-3 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. -9 ef-time-after-pentecost-7-friday +9 Friday of the 7th Week of the Time after Pentecost class-4 · green - Ep. Rom 6:19-23 - Ev. Matt 7:15-21 + Epistle Rom 6:19-23 + Gospel Matt 7:15-21 -10 seven-holy-brothers-and-sts-rufina-secunda +10 Seven Holy Brothers and Sts. Rufina & Secunda class-3 · red - Ep. Prov 31:10-31 - Ev. Matt 12:46-50 + Epistle Prov 31:10-31 + Gospel Matt 12:46-50 -11 ef-time-after-pentecost-sunday-8 +11 8th Sunday after Pentecost class-2 · green - Ep. Rom 8:12-17 - Ev. Luke 16:1-9 + Epistle Rom 8:12-17 + Gospel Luke 16:1-9 -12 john-gualbert +12 St. John Gualbert class-3 · white - Ep. Ecclus 45:1-6 - Ev. Matt 5:43-48 - Com. naboris-et-felicis + Epistle Ecclus 45:1-6 + Gospel Matt 5:43-48 + Commemoration naboris-et-felicis -13 ef-time-after-pentecost-8-tuesday +13 Tuesday of the 8th Week of the Time after Pentecost class-4 · green - Ep. Rom 8:12-17 - Ev. Luke 16:1-9 + Epistle Rom 8:12-17 + Gospel Luke 16:1-9 -14 bonaventure +14 St. Bonaventure class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -15 henry-the-emperor +15 St. Henry the Emperor class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -16 ef-time-after-pentecost-8-friday +16 Friday of the 8th Week of the Time after Pentecost class-4 · green - Ep. Rom 8:12-17 - Ev. Luke 16:1-9 - Com. our-lady-of-mt-carmel + Epistle Rom 8:12-17 + Gospel Luke 16:1-9 + Commemoration our-lady-of-mt-carmel -17 ef-time-after-pentecost-8-saturday +17 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 - Com. alexis + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 + Commemoration alexis -18 ef-time-after-pentecost-sunday-9 +18 9th Sunday after Pentecost class-2 · green - Ep. 1 Cor. 10:6-13 - Ev. Luke 19:41-47 + Epistle 1 Cor. 10:6-13 + Gospel Luke 19:41-47 -19 vincent-de-paul +19 St. Vincent de Paul class-3 · white - Ep. 1 Cor. 4:9-14 - Ev. Luke 10:1-9 + Epistle 1 Cor. 4:9-14 + Gospel Luke 10:1-9 -20 jerome-emiliani +20 St. Jerome Emiliani class-3 · white - Ep. Isa 58:7-11 - Ev. Matt 19:13-21 - Com. margaret + Epistle Isa 58:7-11 + Gospel Matt 19:13-21 + Commemoration margaret -21 laurence-of-brindisi +21 St. Laurence of Brindisi class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. praxedis-virginis + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration praxedis-virginis -22 mary-magdalene +22 St. Mary Magdalene class-3 · white - Ep. Song 3:2-5; 8:6-7 - Ev. Luke 7:36-50 + Epistle Song 3:2-5; 8:6-7 + Gospel Luke 7:36-50 -23 apollinaris +23 St. Apollinaris class-3 · red - Ep. 1 Pet. 5:1-11 - Ev. Luke 22:24-30 - Com. liborii + Epistle 1 Pet. 5:1-11 + Gospel Luke 22:24-30 + Commemoration liborii -24 ef-time-after-pentecost-9-saturday +24 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 - Com. christina + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 + Commemoration christina -25 ef-time-after-pentecost-sunday-10 +25 10th Sunday after Pentecost class-2 · green - Ep. 1 Cor. 12:2-11 - Ev. Luke 18:9-14 - Com. james-the-greater + Epistle 1 Cor. 12:2-11 + Gospel Luke 18:9-14 + Commemoration St. James the Greater -26 anne-mother-of-the-blessed-virgin +26 St. Anne, Mother of the Blessed Virgin class-2 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. -27 ef-time-after-pentecost-10-tuesday +27 Tuesday of the 10th Week of the Time after Pentecost class-4 · green - Ep. 1 Cor. 12:2-11 - Ev. Luke 18:9-14 - Com. pantaleon + Epistle 1 Cor. 12:2-11 + Gospel Luke 18:9-14 + Commemoration pantaleon -28 sts-nazarius-celsus-st-victor-i-st-innocent-i +28 Sts. Nazarius & Celsus, St. Victor I & St. Innocent I class-3 · red - Ep. Wis 10:17-20 - Ev. Luke 21:9-19 + Epistle Wis 10:17-20 + Gospel Luke 21:9-19 -29 martha +29 St. Martha class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Luke 10:38-42 - Com. felicis-simplicii-faustini-et-beatricis + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Luke 10:38-42 + Commemoration felicis-simplicii-faustini-et-beatricis -30 ef-time-after-pentecost-10-friday +30 Friday of the 10th Week of the Time after Pentecost class-4 · green - Ep. 1 Cor. 12:2-11 - Ev. Luke 18:9-14 - Com. sts-abdon-sennen + Epistle 1 Cor. 12:2-11 + Gospel Luke 18:9-14 + Commemoration sts-abdon-sennen -31 ignatius-loyola +31 St. Ignatius Loyola class-3 · white - Ep. 2 Tim. 2:8-10; 3:10-12. - Ev. Luke 10:1-9 + Epistle 2 Tim. 2:8-10; 3:10-12. + Gospel Luke 10:1-9 -Augustus 2027 +August 2027 -1 ef-time-after-pentecost-sunday-11 +1 11th Sunday after Pentecost class-2 · green - Ep. 1 Cor. 15:1-10 - Ev. Mark 7:31-37 + Epistle 1 Cor. 15:1-10 + Gospel Mark 7:31-37 -2 alphonsus-liguori +2 St. Alphonsus Liguori class-3 · white - Ep. 2 Tim. 2:1-7 - Ev. Luke 10:1-9 - Com. stephen-i-pope-and-martyr + Epistle 2 Tim. 2:1-7 + Gospel Luke 10:1-9 + Commemoration stephen-i-pope-and-martyr -3 ef-time-after-pentecost-11-tuesday +3 Tuesday of the 11th Week of the Time after Pentecost class-4 · green - Ep. 1 Cor. 15:1-10 - Ev. Mark 7:31-37 + Epistle 1 Cor. 15:1-10 + Gospel Mark 7:31-37 -4 dominic +4 St. Dominic class-3 · white - Ep. 2 Tim. 4:1-8 - Ev. Luke 12:35-40 + Epistle 2 Tim. 4:1-8 + Gospel Luke 12:35-40 -5 dedication-of-the-basilica-of-st-mary-major +5 Dedication of the Basilica of St. Mary Major class-3 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 -6 transfiguration-of-our-lord +6 Transfiguration of Our Lord class-2 · white - Ep. 2 Pet. 1:16-19 - Ev. Matt 17:1-9 - Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs + Epistle 2 Pet. 1:16-19 + Gospel Matt 17:1-9 + Commemoration pope-sixtus-ii-felicissimus-and-agapitus-martyrs -7 cajetan +7 St. Cajetan class-3 · white - Ep. Sir 31:8-11 - Ev. Matt 6:24-33 - Com. donatus + Epistle Sir 31:8-11 + Gospel Matt 6:24-33 + Commemoration donatus -8 ef-time-after-pentecost-sunday-12 +8 12th Sunday after Pentecost class-2 · green - Ep. 2 Cor. 3:4-9 - Ev. Luke 10:23-37 + Epistle 2 Cor. 3:4-9 + Gospel Luke 10:23-37 -9 vigil-of-st-lawrence +9 Vigil of St. Lawrence class-3 · violet - Ep. Ecclus 51:1-8, 12 - Ev. Matt 16:24-27 - Com. romanus + Epistle Ecclus 51:1-8, 12 + Gospel Matt 16:24-27 + Commemoration romanus -10 lawrence +10 St. Lawrence class-2 · red - Ep. 2 Cor. 9:6-10 - Ev. John 12:24-26 + Epistle 2 Cor. 9:6-10 + Gospel John 12:24-26 -11 ef-time-after-pentecost-12-wednesday +11 Wednesday of the 12th Week of the Time after Pentecost class-4 · green - Ep. 2 Cor. 3:4-9 - Ev. Luke 10:23-37 - Com. sts-tiburtius-susanna + Epistle 2 Cor. 3:4-9 + Gospel Luke 10:23-37 + Commemoration sts-tiburtius-susanna -12 clare +12 St. Clare class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -13 ef-time-after-pentecost-12-friday +13 Friday of the 12th Week of the Time after Pentecost class-4 · green - Ep. 2 Cor. 3:4-9 - Ev. Luke 10:23-37 - Com. sts-hippolytus-cassian + Epistle 2 Cor. 3:4-9 + Gospel Luke 10:23-37 + Commemoration sts-hippolytus-cassian -14 vigil-of-the-assumption +14 Vigil of the Assumption class-2 · violet - Ep. Sir 24:23-31 - Ev. Luke 11:27-28 - Com. eusebius-confessor + Epistle Sir 24:23-31 + Gospel Luke 11:27-28 + Commemoration eusebius-confessor -15 assumption-of-the-blessed-virgin-mary +15 Assumption of the Blessed Virgin Mary class-1 · white - Ep. Judith 13:22-25; 15:10 - Ev. Luke 1:41-50 - Com. ef-time-after-pentecost-sunday-13 + Epistle Judith 13:22-25; 15:10 + Gospel Luke 1:41-50 + Commemoration 13th Sunday after Pentecost -16 joachim-father-of-the-blessed-virgin +16 St. Joachim, Father of the Blessed Virgin class-2 · white - Ep. Sir 31:8-11 - Ev. Matt 1:1-16 + Epistle Sir 31:8-11 + Gospel Matt 1:1-16 -17 hyacinth +17 St. Hyacinth class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -18 ef-time-after-pentecost-13-wednesday +18 Wednesday of the 13th Week of the Time after Pentecost class-4 · green - Ep. Gal 3:16-22 - Ev. Luke 17:11-19 - Com. agapitus + Epistle Gal 3:16-22 + Gospel Luke 17:11-19 + Commemoration agapitus -19 john-eudes +19 St. John Eudes class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -20 bernard-of-clairvaux +20 St. Bernard of Clairvaux class-3 · white - Ep. Ecclus 39:6-14 - Ev. Matt 5:13-19 + Epistle Ecclus 39:6-14 + Gospel Matt 5:13-19 -21 jane-frances-de-chantal +21 St. Jane Frances de Chantal class-3 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. -22 ef-time-after-pentecost-sunday-14 +22 14th Sunday after Pentecost class-2 · green - Ep. Gal 5:16-24 - Ev. Matt 6:24-33 - Com. immaculate-heart-of-mary + Epistle Gal 5:16-24 + Gospel Matt 6:24-33 + Commemoration Immaculate Heart of Mary -23 philip-benizi +23 St. Philip Benizi class-3 · white - Ep. 1 Cor. 4:9-14 - Ev. Luke 12:32-34 + Epistle 1 Cor. 4:9-14 + Gospel Luke 12:32-34 -24 bartholomew +24 St. Bartholomew class-2 · red - Ep. 1 Cor. 12:27-31 - Ev. Luke 6:12-19 + Epistle 1 Cor. 12:27-31 + Gospel Luke 6:12-19 -25 louis-ix +25 St. Louis IX class-3 · white - Ep. Wis 10:10-14 - Ev. Luke 19:12-26 + Epistle Wis 10:10-14 + Gospel Luke 19:12-26 -26 ef-time-after-pentecost-14-thursday +26 Thursday of the 14th Week of the Time after Pentecost class-4 · green - Ep. Gal 5:16-24 - Ev. Matt 6:24-33 - Com. zephyrinus + Epistle Gal 5:16-24 + Gospel Matt 6:24-33 + Commemoration zephyrinus -27 joseph-calasance +27 St. Joseph Calasance class-3 · white - Ep. Wis 10:10-14 - Ev. Matt 18:1-5 + Epistle Wis 10:10-14 + Gospel Matt 18:1-5 -28 augustine +28 St. Augustine class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. hermes + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration hermes -29 ef-time-after-pentecost-sunday-15 +29 15th Sunday after Pentecost class-2 · green - Ep. Gal 5:25-26; 6:1-10 - Ev. Luke 7:11-16 + Epistle Gal 5:25-26; 6:1-10 + Gospel Luke 7:11-16 -30 rose-of-lima +30 St. Rose of Lima class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. - Com. sts-felix-and-adauctus + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. + Commemoration sts-felix-and-adauctus -31 raymond-nonnatus +31 St. Raymond Nonnatus class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 September 2027 -1 ef-time-after-pentecost-15-wednesday +1 Wednesday of the 15th Week of the Time after Pentecost class-4 · green - Ep. Gal 5:25-26; 6:1-10 - Ev. Luke 7:11-16 - Com. giles - Com. twelve-holy-brothers-martyrs + Epistle Gal 5:25-26; 6:1-10 + Gospel Luke 7:11-16 + Commemoration giles + Commemoration twelve-holy-brothers-martyrs -2 stephen-of-hungary +2 St. Stephen of Hungary class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 19:12-26 + Epistle Sir 31:8-11 + Gospel Luke 19:12-26 -3 pius-x +3 St. Pius X class-3 · white - Ep. 1 Thess. 2:2-8 - Ev. John 21:15-17 + Epistle 1 Thess. 2:2-8 + Gospel John 21:15-17 -4 ef-time-after-pentecost-15-saturday +4 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 -5 ef-time-after-pentecost-sunday-16 +5 16th Sunday after Pentecost class-2 · green - Ep. Eph 3:13-21 - Ev. Luke 14:1-11 + Epistle Eph 3:13-21 + Gospel Luke 14:1-11 -6 ef-time-after-pentecost-16-monday +6 Monday of the 16th Week of the Time after Pentecost class-4 · green - Ep. Eph 3:13-21 - Ev. Luke 14:1-11 + Epistle Eph 3:13-21 + Gospel Luke 14:1-11 -7 ef-time-after-pentecost-16-tuesday +7 Tuesday of the 16th Week of the Time after Pentecost class-4 · green - Ep. Eph 3:13-21 - Ev. Luke 14:1-11 + Epistle Eph 3:13-21 + Gospel Luke 14:1-11 -8 nativity-of-the-blessed-virgin-mary +8 Nativity of the Blessed Virgin Mary class-2 · white - Ep. Prov 8:22-35 - Ev. Matt 1:1-16 - Com. hadriani + Epistle Prov 8:22-35 + Gospel Matt 1:1-16 + Commemoration hadriani -9 ef-time-after-pentecost-16-thursday +9 Thursday of the 16th Week of the Time after Pentecost class-4 · green - Ep. Eph 3:13-21 - Ev. Luke 14:1-11 - Com. gorgonius + Epistle Eph 3:13-21 + Gospel Luke 14:1-11 + Commemoration gorgonius -10 nicholas-of-tolentino +10 St. Nicholas of Tolentino class-3 · white - Ep. 1 Cor. 4:9-14 - Ev. Luke 12:32-34 + Epistle 1 Cor. 4:9-14 + Gospel Luke 12:32-34 -11 ef-time-after-pentecost-16-saturday +11 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 - Com. sts-protus-hyacinth + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 + Commemoration sts-protus-hyacinth -12 ef-time-after-pentecost-sunday-17 +12 17th Sunday after Pentecost class-2 · green - Ep. Eph 4:1-6 - Ev. Matt 22:34-46 + Epistle Eph 4:1-6 + Gospel Matt 22:34-46 -13 ef-time-after-pentecost-17-monday +13 Monday of the 17th Week of the Time after Pentecost class-4 · green - Ep. Eph 4:1-6 - Ev. Matt 22:34-46 + Epistle Eph 4:1-6 + Gospel Matt 22:34-46 -14 exaltation-of-the-holy-cross +14 Exaltation of the Holy Cross class-2 · red - Ep. Phil 2:5-11 - Ev. John 12:31-36 + Epistle Phil 2:5-11 + Gospel John 12:31-36 -15 seven-sorrows-of-the-blessed-virgin-mary +15 Seven Sorrows of the Blessed Virgin Mary class-2 · white - Ep. Judith 13:22; 13:23-25 - Ev. John 19:25-27 - Com. nicomedes + Epistle Judith 13:22; 13:23-25 + Gospel John 19:25-27 + Commemoration nicomedes -16 sts-cornelius-cyprian +16 Sts. Cornelius & Cyprian class-3 · red - Ep. Wis 3:1-8 - Ev. Luke 21:9-19 - Com. sts-euphemia-lucy-and-geminianus + Epistle Wis 3:1-8 + Gospel Luke 21:9-19 + Commemoration sts-euphemia-lucy-and-geminianus -17 ef-time-after-pentecost-17-friday +17 Friday of the 17th Week of the Time after Pentecost class-4 · green - Ep. Eph 4:1-6 - Ev. Matt 22:34-46 - Com. stigmata-of-st-francis + Epistle Eph 4:1-6 + Gospel Matt 22:34-46 + Commemoration stigmata-of-st-francis -18 joseph-of-cupertino +18 St. Joseph of Cupertino class-3 · white - Ep. 1 Cor 13:1-8 - Ev. Matt 22:1-14 + Epistle 1 Cor 13:1-8 + Gospel Matt 22:1-14 -19 ef-time-after-pentecost-sunday-18 +19 18th Sunday after Pentecost class-2 · green - Ep. 1 Cor. 1:4-8 - Ev. Matt 9:1-8 + Epistle 1 Cor. 1:4-8 + Gospel Matt 9:1-8 -20 ef-time-after-pentecost-18-monday +20 Monday of the 18th Week of the Time after Pentecost class-4 · green - Ep. 1 Cor. 1:4-8 - Ev. Matt 9:1-8 - Com. sts-eustace-companions + Epistle 1 Cor. 1:4-8 + Gospel Matt 9:1-8 + Commemoration sts-eustace-companions -21 matthew +21 St. Matthew class-2 · red - Ep. Ezek 1:10-14 - Ev. Matt 9:9-13 + Epistle Ezek 1:10-14 + Gospel Matt 9:9-13 -22 ef-september-ember-wed +22 September Ember Wednesday class-2 · violet - Ep. 2 Esd. 8:1-10 - Ev. Mark 9:16-28 - Com. thomas-of-villanova + Epistle 2 Esd. 8:1-10 + Gospel Mark 9:16-28 + Commemoration St. Thomas of Villanova -23 linus +23 St. Linus class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 - Com. thecla + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 + Commemoration thecla -24 ef-september-ember-fri +24 September Ember Friday class-2 · violet - Ep. Osee 14:2-10 - Ev. Luke 7:36-50 - Com. our-lady-of-ransom + Epistle Osee 14:2-10 + Gospel Luke 7:36-50 + Commemoration our-lady-of-ransom -25 ef-september-ember-sat +25 September Ember Saturday class-2 · violet - Ep. Heb 9:2-12 - Ev. Luke 13:6-17 + Epistle Heb 9:2-12 + Gospel Luke 13:6-17 -26 ef-time-after-pentecost-sunday-19 +26 19th Sunday after Pentecost class-2 · green - Ep. Eph 4:23-28 - Ev. Matt 22:1-14 + Epistle Eph 4:23-28 + Gospel Matt 22:1-14 -27 sts-cosmas-damian +27 Sts. Cosmas & Damian class-3 · red - Ep. Wis 5:16-20 - Ev. Luke 6:17-23 + Epistle Wis 5:16-20 + Gospel Luke 6:17-23 -28 wenceslaus +28 St. Wenceslaus class-3 · red - Ep. Wis 10:10-14 - Ev. Matt 10:34-42 + Epistle Wis 10:10-14 + Gospel Matt 10:34-42 -29 dedication-of-st-michael-the-archangel +29 Dedication of St. Michael the Archangel class-1 · white - Ep. Rev 1:1-5 - Ev. Matt 18:1-10 + Epistle Rev 1:1-5 + Gospel Matt 18:1-10 -30 jerome +30 St. Jerome class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 October 2027 -1 ef-time-after-pentecost-19-friday +1 Friday of the 19th Week of the Time after Pentecost class-4 · green - Ep. Eph 4:23-28 - Ev. Matt 22:1-14 - Com. remigius + Epistle Eph 4:23-28 + Gospel Matt 22:1-14 + Commemoration remigius -2 holy-guardian-angels +2 Holy Guardian Angels class-3 · white - Ep. Exod 23:20-23 - Ev. Matt 18:1-10 + Epistle Exod 23:20-23 + Gospel Matt 18:1-10 -3 ef-time-after-pentecost-sunday-20 +3 20th Sunday after Pentecost class-2 · green - Ep. Eph 5:15-21 - Ev. John 4:46-53 + Epistle Eph 5:15-21 + Gospel John 4:46-53 -4 francis-of-assisi +4 St. Francis of Assisi class-3 · white - Ep. Gal 6:14-18 - Ev. Matt 11:25-30 + Epistle Gal 6:14-18 + Gospel Matt 11:25-30 -5 ef-time-after-pentecost-20-tuesday +5 Tuesday of the 20th Week of the Time after Pentecost class-4 · green - Ep. Eph 5:15-21 - Ev. John 4:46-53 - Com. placid-companions + Epistle Eph 5:15-21 + Gospel John 4:46-53 + Commemoration placid-companions -6 bruno +6 St. Bruno class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -7 our-lady-of-the-rosary +7 Our Lady of the Rosary class-2 · white - Ep. Prov 8:22-24, 32-35. - Ev. Luke 1:26-38 - Com. mark-i + Epistle Prov 8:22-24, 32-35. + Gospel Luke 1:26-38 + Commemoration mark-i -8 bridget-of-sweden +8 St. Bridget of Sweden class-3 · white - Ep. 1 Tim. 5:3-10. - Ev. Matt 13:44-52. - Com. sergio-baccho-marcello-and-apulejo-martyrs + Epistle 1 Tim. 5:3-10. + Gospel Matt 13:44-52. + Commemoration sergio-baccho-marcello-and-apulejo-martyrs -9 john-leonardi +9 St. John Leonardi class-3 · white - Ep. 2 Cor 4:1-6; 4:15-18 - Ev. Luke 10:1-9 - Com. dionysius-and-companions + Epistle 2 Cor 4:1-6; 4:15-18 + Gospel Luke 10:1-9 + Commemoration dionysius-and-companions -10 ef-time-after-pentecost-sunday-21 +10 21st Sunday after Pentecost class-2 · green - Ep. Eph 6:10-17 - Ev. Matt 18:23-35 + Epistle Eph 6:10-17 + Gospel Matt 18:23-35 -11 maternity-of-the-blessed-virgin-mary +11 Maternity of the Blessed Virgin Mary class-2 · white - Ep. Sir 24:23-31 - Ev. Luke 2:43-51 + Epistle Sir 24:23-31 + Gospel Luke 2:43-51 -12 ef-time-after-pentecost-21-tuesday +12 Tuesday of the 21st Week of the Time after Pentecost class-4 · green - Ep. Eph 6:10-17 - Ev. Matt 18:23-35 + Epistle Eph 6:10-17 + Gospel Matt 18:23-35 -13 edward +13 St. Edward class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 -14 callistus-i +14 St. Callistus I class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 -15 teresa-of-avila +15 St. Teresa of Avila class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -16 hedwig +16 St. Hedwig class-3 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. -17 ef-time-after-pentecost-sunday-22 +17 22nd Sunday after Pentecost class-2 · green - Ep. Phil 1:6-11 - Ev. Matt 22:15-21 + Epistle Phil 1:6-11 + Gospel Matt 22:15-21 -18 luke-the-evangelist +18 St. Luke the Evangelist class-2 · red - Ep. 2 Cor. 8:16-24 - Ev. Luke 10:1-9 + Epistle 2 Cor. 8:16-24 + Gospel Luke 10:1-9 -19 peter-of-alcantara +19 St. Peter of Alcantara class-3 · white - Ep. Phil 3:7-12 - Ev. Luke 12:32-34 + Epistle Phil 3:7-12 + Gospel Luke 12:32-34 -20 john-cantius +20 St. John Cantius class-3 · white - Ep. James 2:12-17 - Ev. Luke 12:35-40 + Epistle James 2:12-17 + Gospel Luke 12:35-40 -21 ef-time-after-pentecost-22-thursday +21 Thursday of the 22nd Week of the Time after Pentecost class-4 · green - Ep. Phil 1:6-11 - Ev. Matt 22:15-21 - Com. hilarion - Com. ursula-and-companions + Epistle Phil 1:6-11 + Gospel Matt 22:15-21 + Commemoration hilarion + Commemoration ursula-and-companions -22 ef-time-after-pentecost-22-friday +22 Friday of the 22nd Week of the Time after Pentecost class-4 · green - Ep. Phil 1:6-11 - Ev. Matt 22:15-21 + Epistle Phil 1:6-11 + Gospel Matt 22:15-21 -23 anthony-mary-claret +23 St. Anthony Mary Claret class-3 · white - Ep. Heb 7:23-27 - Ev. Matt 24:42-47 + Epistle Heb 7:23-27 + Gospel Matt 24:42-47 -24 ef-time-after-pentecost-sunday-23 +24 23rd Sunday after Pentecost class-2 · green - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 9:18-26 + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 9:18-26 -25 ef-time-after-pentecost-23-monday +25 Monday of the 23rd Week of the Time after Pentecost class-4 · green - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 9:18-26 - Com. sts-chrysanthus-daria + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 9:18-26 + Commemoration sts-chrysanthus-daria -26 ef-time-after-pentecost-23-tuesday +26 Tuesday of the 23rd Week of the Time after Pentecost class-4 · green - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 9:18-26 - Com. evaristus + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 9:18-26 + Commemoration evaristus -27 ef-time-after-pentecost-23-wednesday +27 Wednesday of the 23rd Week of the Time after Pentecost class-4 · green - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 9:18-26 + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 9:18-26 -28 sts-simon-jude +28 Sts. Simon & Jude class-2 · red - Ep. Eph. 4:7-13. - Ev. John 15:17-25 + Epistle Eph. 4:7-13. + Gospel John 15:17-25 -29 ef-time-after-pentecost-23-friday +29 Friday of the 23rd Week of the Time after Pentecost class-4 · green - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 9:18-26 + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 9:18-26 -30 ef-time-after-pentecost-23-saturday +30 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 -31 ef-christ-the-king +31 Christ the King class-1 · white - Ep. Col 1:12-20. - Ev. John 18:33-37 + Epistle Col 1:12-20. + Gospel John 18:33-37 November 2027 -1 all-saints +1 All Saints class-1 · white - Ep. Apoc 7:2-12 - Ev. Matt 5:1-12 + Epistle Apoc 7:2-12 + Gospel Matt 5:1-12 -2 commemoration-of-all-souls +2 Commemoration of All Souls class-1 · black - Ep. 1 Cor. 15:51-57 - Ev. John 5:25-29 + Epistle 1 Cor. 15:51-57 + Gospel John 5:25-29 -3 ef-time-after-pentecost-24-wednesday +3 Wednesday of the 24th Week of the Time after Pentecost class-4 · green - Ep. Col 1:12-20. - Ev. John 18:33-37 + Epistle Col 1:12-20. + Gospel John 18:33-37 -4 charles-borromeo +4 St. Charles Borromeo class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Matt 25:14-23 - Com. sts-vitalis-and-agricola-martyrs + Epistle Sir 44:16-27; 45:3-20 + Gospel Matt 25:14-23 + Commemoration sts-vitalis-and-agricola-martyrs -5 ef-time-after-pentecost-24-friday +5 Friday of the 24th Week of the Time after Pentecost class-4 · green - Ep. Col 1:12-20. - Ev. John 18:33-37 + Epistle Col 1:12-20. + Gospel John 18:33-37 -6 ef-time-after-pentecost-24-saturday +6 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 -7 ef-time-after-epiphany-sunday-5 +7 5th Sunday after Epiphany class-2 · green - Ep. Col 3:12-17 - Ev. Matt 13:24-30 + Epistle Col 3:12-17 + Gospel Matt 13:24-30 -8 ef-time-after-pentecost-25-monday +8 Monday of the 25th Week of the Time after Pentecost class-4 · green - Ep. Col 3:12-17 - Ev. Matt 13:24-30 - Com. four-holy-crowned-martyrs + Epistle Col 3:12-17 + Gospel Matt 13:24-30 + Commemoration four-holy-crowned-martyrs -9 dedication-of-the-archbasilica-of-our-holy-savior +9 Dedication of the Archbasilica of Our Holy Savior class-2 · white - Ep. Rev 21:2-5 - Ev. Luke 19:1-10 - Com. theodore + Epistle Rev 21:2-5 + Gospel Luke 19:1-10 + Commemoration theodore -10 andrew-avellino +10 St. Andrew Avellino class-3 · white - Ep. Sir 31:8-11 - Ev. Luke 12:35-40 - Com. sts-tryphonis-respicii-et-nymphae + Epistle Sir 31:8-11 + Gospel Luke 12:35-40 + Commemoration sts-tryphonis-respicii-et-nymphae -11 martin-of-tours +11 St. Martin of Tours class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Luke 11:33-36 - Com. menna + Epistle Sir 44:16-27; 45:3-20 + Gospel Luke 11:33-36 + Commemoration menna -12 martin-i +12 St. Martin I class-3 · red - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 -13 didacus +13 St. Didacus class-3 · white - Ep. 1 Cor 4:9-14 - Ev. Luke 12:32-34 + Epistle 1 Cor 4:9-14 + Gospel Luke 12:32-34 -14 ef-time-after-epiphany-sunday-6 +14 6th Sunday after Epiphany class-2 · green - Ep. 1 Thess 1:2-10 - Ev. Matt 13:31-35 + Epistle 1 Thess 1:2-10 + Gospel Matt 13:31-35 -15 albert-the-great +15 St. Albert the Great class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 -16 gertrude-the-great +16 St. Gertrude the Great class-3 · white - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 25:1-13. + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 25:1-13. -17 gregory-the-wonderworker +17 St. Gregory the Wonderworker class-3 · white - Ep. Sir 44:16-27; 45:3-20 - Ev. Mark 11:22-24 + Epistle Sir 44:16-27; 45:3-20 + Gospel Mark 11:22-24 -18 dedication-of-the-basilicas-of-sts-peter-paul +18 Dedication of the Basilicas of Sts. Peter & Paul class-3 · white - Ep. Rev 21:2-5 - Ev. Luke 19:1-10 + Epistle Rev 21:2-5 + Gospel Luke 19:1-10 -19 elizabeth-of-hungary +19 St. Elizabeth of Hungary class-3 · white - Ep. Prov 31:10-31 - Ev. Matt 13:44-52. - Com. pontian + Epistle Prov 31:10-31 + Gospel Matt 13:44-52. + Commemoration pontian -20 felix-of-valois +20 St. Felix of Valois class-3 · white - Ep. 1 Cor. 4:9-14 - Ev. Luke 12:32-34 + Epistle 1 Cor. 4:9-14 + Gospel Luke 12:32-34 -21 ef-time-after-pentecost-sunday-24 +21 24th and Last Sunday after Pentecost class-2 · green - Ep. Col 1:9-14 - Ev. Matt 24:15-35 + Epistle Col 1:9-14 + Gospel Matt 24:15-35 -22 cecilia +22 St. Cecilia class-3 · red - Ep. Sir 51:13-17. - Ev. Matt 25:1-13. + Epistle Sir 51:13-17. + Gospel Matt 25:1-13. -23 clement-i +23 St. Clement I class-3 · red - Ep. Phil 3:17-21; 4:1-3 - Ev. Matt 16:13-19 - Com. felicity + Epistle Phil 3:17-21; 4:1-3 + Gospel Matt 16:13-19 + Commemoration felicity -24 john-of-the-cross +24 St. John of the Cross class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. chrysogonus + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration chrysogonus -25 catherine-of-alexandria +25 St. Catherine of Alexandria class-3 · red - Ep. Sir 51:1-8; 51:12 - Ev. Matt 25:1-13. + Epistle Sir 51:1-8; 51:12 + Gospel Matt 25:1-13. -26 sylvester +26 St. Sylvester class-3 · white - Ep. Ecclus 45:1-6 - Ev. Matt 19:27-29. - Com. peter-of-alexandria + Epistle Ecclus 45:1-6 + Gospel Matt 19:27-29. + Commemoration peter-of-alexandria -27 ef-time-after-pentecost-27-saturday +27 Our Lady's Saturday Office class-4 · white - Ep. Ecclus 24:14-16 - Ev. Luke 11:27-28 + Epistle Ecclus 24:14-16 + Gospel Luke 11:27-28 -28 ef-advent-sunday-1 +28 1st Sunday of Advent class-1 · violet - Ep. Rom 13:11-14 - Ev. Luke 21:25-33 + Epistle Rom 13:11-14 + Gospel Luke 21:25-33 -29 ef-advent-1-monday +29 Monday of the 1st Week of Advent class-3 · violet - Ep. Rom 13:11-14 - Ev. Luke 21:25-33 - Com. saturninus + Epistle Rom 13:11-14 + Gospel Luke 21:25-33 + Commemoration saturninus -30 andrew +30 St. Andrew class-2 · red - Ep. Rom 10:10-18 - Ev. Matt 4:18-22 - Com. ef-advent-1-tuesday + Epistle Rom 10:10-18 + Gospel Matt 4:18-22 + Commemoration Tuesday of the 1st Week of Advent December 2027 -1 ef-advent-1-wednesday +1 Wednesday of the 1st Week of Advent class-3 · violet - Ep. Rom 13:11-14 - Ev. Luke 21:25-33 + Epistle Rom 13:11-14 + Gospel Luke 21:25-33 -2 vivian +2 St. Vivian class-3 · red - Ep. Sir 51:13-17. - Ev. Matt 13:44-52. - Com. ef-advent-1-thursday + Epistle Sir 51:13-17. + Gospel Matt 13:44-52. + Commemoration Thursday of the 1st Week of Advent -3 francis-xavier +3 St. Francis Xavier class-3 · white - Ep. Rom 10:10-18 - Ev. Mark 16:15-18 - Com. ef-advent-1-friday + Epistle Rom 10:10-18 + Gospel Mark 16:15-18 + Commemoration Friday of the 1st Week of Advent -4 peter-chrysologus +4 St. Peter Chrysologus class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. ef-advent-1-saturday - Com. barbara + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration Saturday of the 1st Week of Advent + Commemoration barbara -5 ef-advent-sunday-2 +5 2nd Sunday of Advent class-1 · violet - Ep. Rom 15:4-13 - Ev. Matt 11:2-10 + Epistle Rom 15:4-13 + Gospel Matt 11:2-10 -6 nicholas +6 St. Nicholas class-3 · white - Ep. Heb 13:7-17 - Ev. Matt 25:14-23 - Com. ef-advent-2-monday + Epistle Heb 13:7-17 + Gospel Matt 25:14-23 + Commemoration Monday of the 2nd Week of Advent -7 ambrose +7 St. Ambrose class-3 · white - Ep. 2 Tim 4:1-8 - Ev. Matt 5:13-19 - Com. ef-advent-2-tuesday + Epistle 2 Tim 4:1-8 + Gospel Matt 5:13-19 + Commemoration Tuesday of the 2nd Week of Advent -8 immaculate-conception-of-the-blessed-virgin-mary +8 Immaculate Conception of the Blessed Virgin Mary class-1 · white - Ep. Prov 8:22-35 - Ev. Luke 1:26-28 - Com. ef-advent-2-wednesday + Epistle Prov 8:22-35 + Gospel Luke 1:26-28 + Commemoration Wednesday of the 2nd Week of Advent -9 ef-advent-2-thursday +9 Thursday of the 2nd Week of Advent class-3 · violet - Ep. Rom 15:4-13 - Ev. Matt 11:2-10 + Epistle Rom 15:4-13 + Gospel Matt 11:2-10 -10 ef-advent-2-friday +10 Friday of the 2nd Week of Advent class-3 · violet - Ep. Rom 15:4-13 - Ev. Matt 11:2-10 - Com. melchiades + Epistle Rom 15:4-13 + Gospel Matt 11:2-10 + Commemoration melchiades -11 damasus-i +11 St. Damasus I class-3 · white - Ep. 1 Pet 5:1-4; 5:10-11. - Ev. Matt 16:13-19 - Com. ef-advent-2-saturday + Epistle 1 Pet 5:1-4; 5:10-11. + Gospel Matt 16:13-19 + Commemoration Saturday of the 2nd Week of Advent -12 ef-advent-sunday-3 +12 3rd Sunday of Advent class-1 · rose - Ep. Phil 4:4-7 - Ev. John 1:19-28 + Epistle Phil 4:4-7 + Gospel John 1:19-28 -13 lucy +13 St. Lucy class-3 · red - Ep. 2 Cor 10:17-18; 11:1-2 - Ev. Matt 13:44-52. - Com. ef-advent-3-monday + Epistle 2 Cor 10:17-18; 11:1-2 + Gospel Matt 13:44-52. + Commemoration Monday of the 3rd Week of Advent -14 ef-advent-3-tuesday +14 Tuesday of the 3rd Week of Advent class-3 · violet - Ep. Phil 4:4-7 - Ev. John 1:19-28 + Epistle Phil 4:4-7 + Gospel John 1:19-28 -15 ef-advent-ember-wed +15 Advent Ember Wednesday class-2 · violet - Ep. Isa 7:10-15 - Ev. Luke 1:26-38 + Epistle Isa 7:10-15 + Gospel Luke 1:26-38 -16 eusebius +16 St. Eusebius class-3 · red - Ep. 2 Cor. 1:3-7 - Ev. Matt 16:24-27. - Com. ef-advent-3-thursday + Epistle 2 Cor. 1:3-7 + Gospel Matt 16:24-27. + Commemoration Thursday of the 3rd Week of Advent -17 ef-advent-ember-fri +17 Advent Ember Friday class-2 · violet - Ep. Isa 11:1-5 - Ev. Luke 1:39-47 + Epistle Isa 11:1-5 + Gospel Luke 1:39-47 -18 ef-advent-ember-sat +18 Advent Ember Saturday class-2 · violet - Ep. 2 Thess 2:1-8 - Ev. Luke 3:1-6 + Epistle 2 Thess 2:1-8 + Gospel Luke 3:1-6 -19 ef-advent-sunday-4 +19 4th Sunday of Advent class-1 · violet - Ep. 1 Cor. 4:1-5 - Ev. Luke 3:1-6 + Epistle 1 Cor. 4:1-5 + Gospel Luke 3:1-6 -20 ef-advent-4-monday +20 Monday of the 4th Week of Advent class-2 · violet - Ep. 1 Cor. 4:1-5 - Ev. Luke 3:1-6 + Epistle 1 Cor. 4:1-5 + Gospel Luke 3:1-6 -21 thomas +21 St. Thomas class-2 · red - Ep. Eph 2:19-22 - Ev. John 20:24-29 - Com. ef-advent-4-tuesday + Epistle Eph 2:19-22 + Gospel John 20:24-29 + Commemoration Tuesday of the 4th Week of Advent -22 ef-advent-4-wednesday +22 Wednesday of the 4th Week of Advent class-2 · violet - Ep. 1 Cor. 4:1-5 - Ev. Luke 3:1-6 + Epistle 1 Cor. 4:1-5 + Gospel Luke 3:1-6 -23 ef-advent-4-thursday +23 Thursday of the 4th Week of Advent class-2 · violet - Ep. 1 Cor. 4:1-5 - Ev. Luke 3:1-6 + Epistle 1 Cor. 4:1-5 + Gospel Luke 3:1-6 -24 ef-nativity-vigil +24 Vigil of the Nativity (Christmas Eve) class-1 · violet - Ep. Rom 1:1-6 - Ev. Matt 1:18-21 + Epistle Rom 1:1-6 + Gospel Matt 1:18-21 -25 ef-nativity +25 The Nativity of Our Lord (Christmas) class-1 · white - Ep. Heb 1:1-12 - Ev. John 1:1-14 + Epistle Heb 1:1-12 + Gospel John 1:1-14 -26 ef-christmas-sunday-0 +26 Sunday within the Octave of the Nativity class-2 · white - Ep. Gal 4:1-7 - Ev. Luke 2:33-40 - Com. stephen + Epistle Gal 4:1-7 + Gospel Luke 2:33-40 + Commemoration St. Stephen -27 john-the-evangelist +27 St. John the Evangelist class-2 · white - Ep. Ecclus 15:1-6 - Ev. John 21:19-24 - Com. ef-nativity-octave-day-3 + Epistle Ecclus 15:1-6 + Gospel John 21:19-24 + Commemoration ef-nativity-octave-day-3 -28 holy-innocents +28 Holy Innocents class-2 · red - Ep. Apoc 14:1-5 - Ev. Matt 2:13-18 - Com. ef-nativity-octave-day-4 + Epistle Apoc 14:1-5 + Gospel Matt 2:13-18 + Commemoration ef-nativity-octave-day-4 -29 ef-nativity-octave-day-5 +29 5th Day within the Octave of the Nativity class-2 · white - Ep. Titus 3:4-7 - Ev. Luke 2:15-20 - Com. thomas-becket + Epistle Titus 3:4-7 + Gospel Luke 2:15-20 + Commemoration thomas-becket -30 ef-nativity-octave-day-6 +30 6th Day within the Octave of the Nativity class-2 · white - Ep. Titus 3:4-7 - Ev. Luke 2:15-20 + Epistle Titus 3:4-7 + Gospel Luke 2:15-20 -31 ef-nativity-octave-day-7 +31 7th Day within the Octave of the Nativity class-2 · white - Ep. Titus 3:4-7 - Ev. Luke 2:15-20 - Com. silvester + Epistle Titus 3:4-7 + Gospel Luke 2:15-20 + Commemoration silvester |
