diff --git a/customize.dist/images/aaron.jpg b/customize.dist/images/aaron.jpg new file mode 100644 index 000000000..f746cf7e4 Binary files /dev/null and b/customize.dist/images/aaron.jpg differ diff --git a/customize.dist/images/caleb.jpg b/customize.dist/images/caleb.jpg new file mode 100644 index 000000000..1903d87b9 Binary files /dev/null and b/customize.dist/images/caleb.jpg differ diff --git a/customize.dist/images/yann.jpg b/customize.dist/images/yann.jpg new file mode 100644 index 000000000..6c5e144fd Binary files /dev/null and b/customize.dist/images/yann.jpg differ diff --git a/customize.dist/pages.js b/customize.dist/pages.js index c6147f995..f1f4fa721 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -87,17 +87,17 @@ define([ h('h2', 'Core Developers'), h('div.row', [ h('div.col-md-4', [ - h('img.bio-avatar', {'src': '/customize/images/avatar.png'}), + h('img.bio-avatar', {'src': '/customize/images/aaron.jpg'}), h('h3', "Aaron MacSween"), setHTML(h('div#bio'), '
Aaron transitioned into distributed systems development from a background in jazz and live stage performance.
He appreciates the elegance of biological systems and functional programming, and focused on both as a student at the University of Toronto, where he studied cognitive and computer sciences.
He moved to Paris in 2015 to work as a research engineer at XWiki SAS, after having dedicated significant time to various cryptography-related software projects.
He spends his spare time experimenting with guitars, photography, science fiction, and spicy food.
') ]), h('div.col-md-4', [ - h('img.bio-avatar', {'src': '/customize/images/avatar.png'}), + h('img.bio-avatar', {'src': '/customize/images/caleb.jpg'}), h('h3', "Caleb James Delisle"), setHTML(h('div#bio'), 'Caleb is a cryptography developer, Machine Technology graduate of the Franklin County Technical School and lifelong tinkerer.
In 2011, he started the cjdns Open Source project to show that secure networking could be invisible and easily deployed.
After joining XWiki SAS in 2014, he started the CryptPad project with the intent of bringing the same transparent security to collaborative editing.
He\'s always trying to learn from more experienced colleagues and when someone passes through the Research Team office, his favorite words are "Pull up a chair!".
') ]), h('div.col-md-4', [ - h('img.bio-avatar', {'src': '/customize/images/avatar.png'}), + h('img.bio-avatar', {'src': '/customize/images/yann.jpg'}), h('h3', "Yann Flory"), setHTML(h('div#bio'), 'Yann is a mysterious person.
') ]), @@ -170,9 +170,13 @@ define([ }; Pages['/contact.html'] = function () { - return h('div#main_other', [ - h('center', h('h1', Msg.contact)), - setHTML(h('p'), Msg.main_about_p2) + return h('div#cp-main.cp-page-contact', [ + infopageTopbar(), + h('div.container.cp-container', [ + h('center', h('h1', Msg.contact)), + setHTML(h('p'), Msg.main_about_p2) + ]), + infopageFooter(), ]); };