File tree Expand file tree Collapse file tree 5 files changed +1400
-1
lines changed Expand file tree Collapse file tree 5 files changed +1400
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ module.exports = function (eleventyConfig) {
2323 eleventyConfig . addPassthroughCopy ( "styles.css" ) ;
2424 // This copies the favicon to the output folder
2525 eleventyConfig . addPassthroughCopy ( "favicon.ico" ) ;
26+ // This copies the room.js file to docs/tools/roomcanvas/room.js
27+ eleventyConfig . addPassthroughCopy ( {
28+ "content/tools/room.js" : "tools/roomcanvas/room.js"
29+ } ) ;
2630
2731 // Enable excerpts
2832 eleventyConfig . setFrontMatterParsingOptions ( {
Original file line number Diff line number Diff line change 99.DS_Store
1010Thumbs.db
1111.vscode /
12- /docs /
12+ /docs /
13+ node_modules /.bin /eleventy
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > {{ title | default:"rsomonte's website" }}</ title >
7+ < link rel ="stylesheet " href ="/styles.css ">
8+ < link rel ="icon " href ="/favicon.ico " type ="image/x-icon ">
9+ </ head >
10+ < body >
11+ < header >
12+ < a href ="/ " class ="home-link "> rsomonte's website</ a >
13+ < nav >
14+ < h2 class ="visually-hidden " id ="top-level-navigation-menu "> Top level navigation menu</ h2 >
15+ < ul class ="nav ">
16+ < li class ="nav-item "> < a href ="/ "> Home</ a > </ li >
17+ < li class ="nav-item "> < a href ="/posts/ "> Blog</ a > </ li >
18+ < li class ="nav-item "> < a href ="/cv/ "> Curriculum Vitae</ a > </ li >
19+ < li class ="nav-item "> < a href ="/tools/ "> Tools</ a > </ li >
20+ </ ul >
21+ </ nav >
22+ </ header >
23+ < main style ="max-width: 100%; color: black ">
24+ <!-- Page-specific content goes here -->
25+ {{ content }}
26+ </ main >
27+ < footer >
28+ < hr >
29+ < div class ="footer-content ">
30+ < p class ="copyright "> © < script > document . write ( / \d { 4 } / . exec ( Date ( ) ) [ 0 ] ) </ script > rsomonte</ p >
31+ < div class ="social-icons ">
32+ < a href ="https://www.github.com/rsomonte ">
33+ < img src ="https://icon-library.com/images/github-icon-white/github-icon-white-6.jpg " alt ="GitHub icon " style ="height:3em; vertical-align: middle; ">
34+ </ a >
35+ < a href ="https://www.linkedin.com/in/rodrigo-de-diego-de-somonte/ ">
36+ < img src ="https://bit.ly/4eIqFwg " alt ="LinkedIn icon " style ="height: 2em; vertical-align: middle; ">
37+ </ a >
38+ </ div >
39+ </ div >
40+ < p class ="built-with "> < em > Built with < a href ="https://www.11ty.dev/ "> Eleventy v3.1.0</ a > </ em > </ p >
41+ </ footer >
42+ </ body >
43+ </ html >
You can’t perform that action at this time.
0 commit comments