Skip to content

Commit 294f948

Browse files
committed
room designer added
1 parent 572308a commit 294f948

File tree

5 files changed

+1400
-1
lines changed

5 files changed

+1400
-1
lines changed

.eleventy.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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({

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
.DS_Store
1010
Thumbs.db
1111
.vscode/
12-
/docs/
12+
/docs/
13+
node_modules/.bin/eleventy

_includes/canvas.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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&#39;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">&copy; <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>

0 commit comments

Comments
 (0)