Skip to content

Commit

Permalink
Merge pull request #48 from xldrkp/main
Browse files Browse the repository at this point in the history
Add reverse order for membership
  • Loading branch information
xldrkp authored Oct 6, 2023
2 parents 2c128a2 + 2a86e79 commit 3f6fb72
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 82 deletions.
6 changes: 5 additions & 1 deletion .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ module.exports = (config) => {
);
});

config.addFilter("convertDate", (dateObj) => {
date = new Date(dateObj);
return date.toLocaleDateString("en-US");
});

// Nunjucks Shortcode
config.addShortcode("register", function (link, target) {
html = "";
Expand Down Expand Up @@ -74,5 +79,4 @@ module.exports = (config) => {
return {
pathPrefix: "/p/",
};

};
Loading

0 comments on commit 3f6fb72

Please sign in to comment.