add timestamps to blender renders, add alien animation, add empty project page

This commit is contained in:
Crispy 2022-01-28 13:53:38 +01:00
parent b6cf5d1ba2
commit 04e37fd612
7 changed files with 96 additions and 4 deletions

View file

@ -23,16 +23,29 @@
</ul>
</nav>
<main>
<h1>Blender renders</h1>
<h1>Blender creations</h1>
<p>I have been using Blender since around august 2020 on and off, and did a course in it 2021, which boosted my motivation a lot. I just like to make art in it and of course use it for game jams.</p>
<h2>Alien Creatures animation</h2>
<p>January 2022</p>
<p><a href="https://youtu.be/AfRJvExamX4">youtu.be/AfRJvExamX4</a></p>
<iframe width="854" height="480" src="https://www.youtube-nocookie.com/embed/AfRJvExamX4"></iframe>
<h2>Alien Tree</h2>
<p>January 2022</p>
<a href="media/alien_tree.png"><img src="media/alien_tree_preview.png" alt="Alien Tree" title="Click for full resolution"></a>
<h2>Decapod Alien</h2>
<p>January 2022</p>
<a href="media/decapod_shock.png"><img src="media/decapod_shock_preview.png" alt="Decapod Alien" title="Click for full resolution"></a>
<h2>Crab</h2>
<p>October 2021</p>
<a href="media/crab.png"><img src="media/crab_preview.png" alt="Crab" title="Click for full resolution"></a>
<h2>Shork Wallpaper</h2>
<p>This is a wallpaper for the game <a href="https://crispypin.itch.io/ld-48">Shork</a>.</p>
<p>May 2021</p>
<a href="media/shork_wallpaper.png"><img src="media/shork_wallpaper_preview.png" alt="Shork Wallpaper" title="Click for full resolution"></a>
</main>
<footer>

View file

@ -24,7 +24,7 @@
</nav>
<main>
<h1>Hello!</h1>
<p>Welcome to my corner of the internet. I use this page to showcase some of my interesting projects in an easier to see way compared to just github.</p>
<p>Welcome to my corner of the internet. I use this page to showcase some of my interesting projects in an easier to see way compared to just github. (This is very much a WIP)</p>
</main>
<footer>
<p>Copyright © 2022 - CrispyPin</p>

38
docs/projects/index.html Normal file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/x-icon" href="/icons/favicon.png">
<title>Projects</title>
</head>
<body>
<header>
<a href="/" id="logo"><img src="/logo.png" alt=""></a>
</header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blender/">Blender stuff</a></li>
<li><a href="/projects/">Projects</a></li>
<li><a href="/fractals/">Fractals</a></li>
<li><a href="https://crispypin.github.io/gol-wallpaper">Game of Life</a></li>
<li><a href="https://crispypin.itch.io/">Games</a></li>
</ul>
</nav>
<main>
<pre>TODO: write things</pre>
</main>
<footer>
<p>Copyright © 2022 - CrispyPin</p>
<div class="links">
<a href="https://github.com/CrispyPin"><img src="/icons/github.png" alt="" width=32px></a>
<a href="https://crispypin.itch.io/"><img src="/icons/itchio.svg" alt="" width=32px></a>
<a href="https://twitter.com/CrispyPin42"><img src="/icons/twitter.png" alt="" width=32px></a>
<a href="https://www.youtube.com/channel/UCFW1QTsbFgux8VrduCz_ckQ"><img src="/icons/youtube.png" alt="" width=32px></a>
</div>
</footer>
</body>
</html>

View file

@ -7,16 +7,29 @@
<body>
<include header.html/>
<main>
<h1>Blender renders</h1>
<h1>Blender creations</h1>
<p>I have been using Blender since around august 2020 on and off, and did a course in it 2021, which boosted my motivation a lot. I just like to make art in it and of course use it for game jams.</p>
<h2>Alien Creatures animation</h2>
<p>January 2022</p>
<p><a href="https://youtu.be/AfRJvExamX4">youtu.be/AfRJvExamX4</a></p>
<iframe width="854" height="480" src="https://www.youtube-nocookie.com/embed/AfRJvExamX4"></iframe>
<h2>Alien Tree</h2>
<p>January 2022</p>
<a href="media/alien_tree.png"><img src="media/alien_tree_preview.png" alt="Alien Tree" title="Click for full resolution"></a>
<h2>Decapod Alien</h2>
<p>January 2022</p>
<a href="media/decapod_shock.png"><img src="media/decapod_shock_preview.png" alt="Decapod Alien" title="Click for full resolution"></a>
<h2>Crab</h2>
<p>October 2021</p>
<a href="media/crab.png"><img src="media/crab_preview.png" alt="Crab" title="Click for full resolution"></a>
<h2>Shork Wallpaper</h2>
<p>This is a wallpaper for the game <a href="https://crispypin.itch.io/ld-48">Shork</a>.</p>
<p>May 2021</p>
<a href="media/shork_wallpaper.png"><img src="media/shork_wallpaper_preview.png" alt="Shork Wallpaper" title="Click for full resolution"></a>
</main>
<include footer.html/>

View file

@ -8,7 +8,7 @@
<include header.html/>
<main>
<h1>Hello!</h1>
<p>Welcome to my corner of the internet. I use this page to showcase some of my interesting projects in an easier to see way compared to just github.</p>
<p>Welcome to my corner of the internet. I use this page to showcase some of my interesting projects in an easier to see way compared to just github. (This is very much a WIP)</p>
</main>
<include footer.html/>
</body>

14
pages/projects/index.html Normal file
View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<include meta.html/>
<title>Projects</title>
</head>
<body>
<include header.html/>
<main>
<pre>TODO: write things</pre>
</main>
<include footer.html/>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<include meta.html/>
<title>TITLE HERE</title>
</head>
<body>
<include header.html/>
<main>
<p>CONTENT HERE</p>
</main>
<include footer.html/>
</body>
</html>