Skip to content

Commit

Permalink
Feature/new logo (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
danieltott authored Nov 2, 2020
1 parent 9aa71ed commit b196b25
Show file tree
Hide file tree
Showing 38 changed files with 12,958 additions and 136 deletions.
12 changes: 11 additions & 1 deletion .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ module.exports = function (eleventyConfig) {
const resolvedOptions = {
...opts,
};
return DateTime.fromISO(dateString).setZone("America/New_York").toFormat(format, resolvedOptions);
return DateTime.fromISO(dateString)
.setZone('America/New_York')
.toFormat(format, resolvedOptions);
}
);

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

eleventyConfig.addFilter('qualifiedUrl', function (path) {
if (process.env.DEPLOY_PRIME_URL) {
return process.env.DEPLOY_PRIME_URL + path;
}

return path;
});

/* Markdown Overrides */
let markdownLibrary = markdownIt({
html: true,
Expand Down
3 changes: 3 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
title: Virtual Coffee Code of Conduct
layout: layouts/default.njk
permalink: code-of-conduct/
eleventyNavigation:
key: Code of Conduct
order: 2
---

# Virtual Coffee Code of Conduct
Expand Down
Loading

0 comments on commit b196b25

Please sign in to comment.