Skip to content

Commit b196b25

Browse files
authored
Feature/new logo (#75)
1 parent 9aa71ed commit b196b25

38 files changed

+12958
-136
lines changed

.eleventy.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ module.exports = function (eleventyConfig) {
2525
const resolvedOptions = {
2626
...opts,
2727
};
28-
return DateTime.fromISO(dateString).setZone("America/New_York").toFormat(format, resolvedOptions);
28+
return DateTime.fromISO(dateString)
29+
.setZone('America/New_York')
30+
.toFormat(format, resolvedOptions);
2931
}
3032
);
3133

@@ -52,6 +54,14 @@ module.exports = function (eleventyConfig) {
5254
return value;
5355
});
5456

57+
eleventyConfig.addFilter('qualifiedUrl', function (path) {
58+
if (process.env.DEPLOY_PRIME_URL) {
59+
return process.env.DEPLOY_PRIME_URL + path;
60+
}
61+
62+
return path;
63+
});
64+
5565
/* Markdown Overrides */
5666
let markdownLibrary = markdownIt({
5767
html: true,

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title: Virtual Coffee Code of Conduct
33
layout: layouts/default.njk
44
permalink: code-of-conduct/
5+
eleventyNavigation:
6+
key: Code of Conduct
7+
order: 2
58
---
69

710
# Virtual Coffee Code of Conduct

0 commit comments

Comments
 (0)