-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upload blog, add nojs support, add implications-of-deadline.html, add…
… polaroid-guide.html, adjust landing page
- Loading branch information
1 parent
f7d1cd9
commit 5f6b9fc
Showing
27 changed files
with
834 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@font-face { | ||
font-family: "Roboto"; | ||
src: url(font/Roboto-Regular.ttf); | ||
} | ||
|
||
p:not(.custom-heading), | ||
a:not(.custom-heading) { | ||
font-family: "Roboto", serif; | ||
font-optical-sizing: auto; | ||
font-weight: 400; | ||
font-style: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,9 @@ | |
<link rel="stylesheet" href="css/style.css" /> | ||
<link rel="stylesheet" href="css/custom.css" /> | ||
|
||
<title>blackshibe</title> | ||
<title>welcome - blackshibe</title> | ||
</head> | ||
<body class="font-ibm-mono leading-6 bg-image-1"> | ||
<body class="font-custom leading-6 bg-image-1"> | ||
<div class="custom-bg-opaque"> | ||
<div class="custom-site-content"> | ||
<article class="flex flex-col gap-2 justify-center items-start h-screen"> | ||
|
@@ -24,33 +24,30 @@ | |
<div class="flex flex-col gap-1 md:p-4 text-xs md:text-base"> | ||
<p>blackshibe</p> | ||
<p class="half-opacity">professional programmer & hobbyist musician</p> | ||
|
||
<hr /> | ||
|
||
<p>foxes and text editors</p> | ||
<p>the world is a fuck</p> | ||
<p>all good things must end</p> | ||
<p class="half-opacity">thanks, Jax</p> | ||
|
||
<hr /> | ||
|
||
<p>message [email protected] if you'd like to contact me</p> | ||
|
||
|
||
<hr /> | ||
|
||
|
||
<p>[email protected] by email</p> | ||
<p>@blackshibe on discord</p> | ||
<p>@blackshibe on github</p> | ||
<p>@shibesongs on soundcloud</p> | ||
|
||
<hr /> | ||
|
||
<a href="https://twitter.com/Serpent____x">the man behind the art on this page</a> | ||
<a href="" id="random-tag">visit a friendly website</a> | ||
|
||
<hr /> | ||
|
||
<a href="page/music.html">music archive</a> | ||
<a href="page/wallpapers.html">wallpaper archive</a> | ||
<a href="page/music.html">my music</a> | ||
<a href="page/blog.html">my blog</a> | ||
<a href="page/wallpapers.html">my wallpapers</a> | ||
</div> | ||
</div> | ||
</article> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta property="og:title" content="blackshibe's portfolio" /> | ||
<meta property="og:description" content="Programmer, professional survivor of coping" /> | ||
<meta property="og:image" content="../fox.webp" /> | ||
<meta name="theme-color" content="#808080" /> | ||
|
||
<script src="https://cdn.tailwindcss.com"></script> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<link rel="stylesheet" href="/css/style.css" /> | ||
<link rel="stylesheet" href="/css/custom.css" /> | ||
|
||
<style> | ||
footer { | ||
margin-top: 1rem; | ||
} | ||
|
||
/* did i ever tell you the definition of insanity? */ | ||
ul { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 0.25rem; | ||
} | ||
|
||
/* i am actually insane and dangerous */ | ||
ul hr { | ||
opacity: 0%; | ||
min-height: 1rem; | ||
} | ||
</style> | ||
|
||
<title>blog - blackshibe</title> | ||
</head> | ||
<!-- i can't be bothered to build this from some macro or express webpage --> | ||
<body class="font-custom leading-6 text-lg"> | ||
<div class="custom-site-content"> | ||
<article class="flex flex-col gap-2"> | ||
<div class="custom-card"> | ||
<p class="custom-heading">my blog</p> | ||
</div> | ||
|
||
<div class="custom-card"> | ||
<p class="custom-heading">2024</p> | ||
<hr /> | ||
|
||
<div> | ||
<a href="blog/implications-of-deadline.html">Implications of Deadline</a> | ||
<p class="opacity-75">- Have you ever had a project succeed at the age of 13?</p> | ||
<p class="opacity-75">- 24/06/2024</p> | ||
</div> | ||
|
||
<div> | ||
<a href="blog/polaroid-guide.html">Shooting Decent Photos With Polaroid</a> | ||
<p class="opacity-75"> | ||
- Got too much disposable income and a taste for the 80s? This guide will tell you the | ||
basics of shooting modern Polaroid cameras. | ||
</p> | ||
<p class="opacity-75">- 24/06/2024</p> | ||
</div> | ||
</div> | ||
</article> | ||
</div> | ||
|
||
<div class="custom-bg-opaque custom-fixed-bg bg-image-2"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta property="og:title" content="blackshibe's portfolio" /> | ||
<meta property="og:description" content="Programmer, professional survivor of coping" /> | ||
<meta property="og:image" content="../fox.webp" /> | ||
<meta name="theme-color" content="#808080" /> | ||
|
||
<script src="https://cdn.tailwindcss.com"></script> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<link rel="stylesheet" href="/css/style.css" /> | ||
<link rel="stylesheet" href="/css/custom.css" /> | ||
<link rel="stylesheet" href="/css/blog.css" /> | ||
|
||
<title>__TEMPLATE - blackshibes</title> | ||
</head> | ||
<!-- i can't be bothered to build this from some macro or express webpage --> | ||
<body class="font-custom leading-6 text-lg"> | ||
<div class="custom-site-content"> | ||
<div style="height: 10vh"></div> | ||
<article class="flex flex-col gap-2 min-h-screen"> | ||
<div class="custom-card"> | ||
<p class="custom-heading">__TEMPLATE</p> | ||
<hr /> | ||
</div> | ||
|
||
<div class="custom-card"> | ||
<p class="custom-heading">Hello world</p> | ||
<hr /> | ||
|
||
<p> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Placeat, porro itaque labore, facilis, | ||
assumenda sunt cum distinctio corporis excepturi iure corrupti aliquam? Quidem provident | ||
pariatur repellat nemo culpa possimus quia. | ||
</p> | ||
|
||
<img src="img/istockphoto-1197121742-170667a.webp" alt="" /> | ||
</div> | ||
</article> | ||
<div style="height: 25vh"></div> | ||
</div> | ||
|
||
<div class="custom-bg-opaque custom-fixed-bg bg-image-2"></div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.