Skip to content

Commit 3ec7e51

Browse files
committed
Rebranding
1 parent 38499fa commit 3ec7e51

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
This is a library for calculating the weeks of the Western Christian church calendar. This Christian calendar is also called the liturgical year. Each Sunday has a set of appointed readings called pericopes. The lectionary has pericopes as well as prayers, which together are the propers.
44

5-
This library comes from [sanctus.org](https://sanctus.org). I built the first [sanctus.org](https://sanctus.org) with friends while at college. It was first built to help my friends and I organize our dorm devotions. When the Lutheran Church Missouri Synod began work on a new hymnal we added it to the site. The hymnal committee put a Microsoft Word doc with the propers online for review. It included a revision of the one year lectionary and a new daily lectionary.
6-
7-
I am amazed that so many years later people still use [sanctus.org](https://sanctus.org). I open sourced the calculator used by the website in PHP before. This JavaScript library includes a similar calculator as well as calendar building tooling. It also includes structured data of the various propers. I hope that by open sourcing this library it will enable other to build new tools and applications.
5+
This library comes from I first build with friends while at college. It was first built to help my friends and I organize our dorm devotions. When the Lutheran Church Missouri Synod began work on a new hymnal we added it to the site. The hymnal committee put a Microsoft Word doc with the propers online for review. It included a revision of the one year lectionary and a new daily lectionary.
6+
7+
I am amazed that so many years later people still use the site. I open sourced the calculator used by the website in PHP before. This JavaScript library includes a similar calculator as well as calendar building tooling. It also includes structured data of the various propers. I hope that by open sourcing this library it will enable other to build new tools and applications.
88

99
_All of the code in this repository is available free under the [MIT](LICENSE) license. Lectionary data belongs to the church at large throughout time._
1010

1111
## Getting Started
1212

13-
This repository includes the calculator library and a [React](http://reactjs.org) web app. The web app serves up a version of [sanctus.org](https://sanctus.org).
13+
This repository includes the calculator library and a [React](http://reactjs.org) web app.
1414

1515
You can see the app in action at:
1616

app/Calendar.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default class Calendar extends React.Component {
6565
window.document.title = `${this.getYearAndMonthLabel({
6666
year,
6767
month,
68-
})} · Sanctus.org`;
68+
})} · Lutheran Lectionary`;
6969

7070
const builder = new CalendarBuilder(year, month);
7171
return builder.build(loader.load);

app/Day.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default class Day extends React.Component {
114114
window.scrollTo({ top: 0, behavior: "smooth" });
115115
};
116116

117-
document.title = `${title} · Sanctus.org`;
117+
document.title = `${title} · Lutheran Lectionary`;
118118

119119
return (
120120
<div className="propers">
@@ -206,7 +206,7 @@ export default class Day extends React.Component {
206206
<img
207207
width="24"
208208
height="24"
209-
src="https://sanctus.org/images/accordance-64.png"
209+
src="/images/accordance-64.png"
210210
/>
211211
</a>
212212
</>

app/index.html

+21-21
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Sanctus.org</title>
5+
<title>Lutheran Lectionary</title>
66
<meta name="description" content="">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
88
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
@@ -216,7 +216,7 @@
216216
.versenum {
217217
display: inline;
218218
}
219-
219+
220220
/* Liturgical Colors */
221221

222222
.highlight-violet {
@@ -261,7 +261,7 @@
261261
.red {
262262
color: #ff0000;
263263
}
264-
264+
265265
.highlight-black {
266266
background-color: #000;
267267
color: #ffffff;
@@ -278,7 +278,7 @@
278278
#calendar td {
279279
height: 160px;
280280
max-height: 210px;
281-
width: 14%;
281+
width: 14%;
282282
}
283283
}
284284

@@ -304,28 +304,28 @@
304304
}
305305

306306
/* Force table to not be like tables anymore */
307-
#calendar table,
308-
#calendar thead,
309-
#calendar tbody,
310-
#calendar th,
311-
#calendar td,
312-
#calendar tr {
313-
display: block;
307+
#calendar table,
308+
#calendar thead,
309+
#calendar tbody,
310+
#calendar th,
311+
#calendar td,
312+
#calendar tr {
313+
display: block;
314314
}
315315

316316
#calendar {
317317
border-left: none;
318318
border-right: none;
319319
}
320-
320+
321321
/* Hide table headers (but not display: none;, for accessibility) */
322-
#calendar thead tr {
322+
#calendar thead tr {
323323
position: absolute;
324324
top: -9999px;
325325
left: -9999px;
326326
}
327-
328-
#calendar td {
327+
328+
#calendar td {
329329
/* Behave like a "row" */
330330
border-top: none;
331331
border-left: none;
@@ -336,19 +336,19 @@
336336
font-size: 18px;
337337
}
338338

339-
#calendar td:before {
339+
#calendar td:before {
340340
/* Now like a table header */
341341
position: absolute;
342342
/* Top/left values mimic padding */
343343
top: 6px;
344344
left: 6px;
345-
width: 45%;
346-
padding-right: 10px;
345+
width: 45%;
346+
padding-right: 10px;
347347
white-space: nowrap;
348348
text-align:left;
349349
font-weight: bold;
350350
}
351-
351+
352352
.highlight-none { display: none !important; }
353353
}
354354

@@ -392,11 +392,11 @@
392392
<div id="top"></div>
393393

394394
<header class="title-bar">
395-
<h1>Sanctus.org</h1>
395+
<h1>Lutheran Lectionary</h1>
396396
</header>
397397

398398
<div id="root"></div>
399-
399+
400400
<footer>
401401
<p>
402402
Copyright &copy; <a target="_blank" href="https://stanlemon.com">Stan Lemon</a>.

0 commit comments

Comments
 (0)