-
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.
- Loading branch information
Showing
2 changed files
with
42 additions
and
15 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 |
---|---|---|
@@ -1,3 +1,43 @@ | ||
</body> | ||
<script src="main.js"></script> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
body { | ||
font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif; | ||
margin: 0; | ||
} | ||
.top-container { | ||
background: #a7dee5; | ||
text-align: center; | ||
position: relative; | ||
padding: 1em 1em; | ||
} | ||
.top-container > img { | ||
border-radius: 500rem; | ||
display: block; | ||
width: 200px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
.top-container > h1 { | ||
margin: 0; | ||
} | ||
|
||
.main-container > h2 { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="top-container"> | ||
<img src="https://cdn.bsky.app/img/avatar/plain/did:plc:p7gnw6dyxzd2m5tmy7ucpiut/bafkreicu2hkyuvojwzss367fycu33hr4wfqvfszbwwc4optoghesxnuw4u@jpeg"> | ||
<h1>lokxii</h1> | ||
</div> | ||
<div class="main-container"> | ||
<h2>ろくしぃ / lokxii</h2> | ||
<div class="projects"> | ||
</div> | ||
</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 |
---|---|---|
@@ -1,13 +0,0 @@ | ||
async function request() { | ||
const response = await fetch("https://bsky.social/xrpc/app.bsky.feed.getFeed?feed=at://did:plc:wvh2nzdw4o4fnw5qhaxzereb/app.bsky.feed.generator/aaac6poj633x4", { | ||
method: "GET", | ||
headers: { | ||
"Content-Type": "application/json", | ||
}, | ||
}); | ||
return response.json(); | ||
} | ||
|
||
request().then((data) => { | ||
console.log(data) | ||
}) | ||