add picturez

This commit is contained in:
maren 2023-11-25 20:51:17 -05:00
parent 9a23b82e38
commit 59870f7fae
10 changed files with 53 additions and 9 deletions

View file

@ -1,3 +1,4 @@
<h2>blog</h2>
<ul>
<li><a href="/blog/diy-sms-ftw-vs-ig-fb-etc">diy sms ftw vs ig, fb, etc. | November 2023</a></li>
<li><a href="/blog/init">init | October 2023</a></li>

View file

@ -14,6 +14,9 @@ cat head.html blog.html foot.html > ./site/blog/index.html
# copy one-offs
cp style.css ./site/style.css
cp robots.txt ./site/robots.txt
cp venus.jpg ./site/venus.jpg
cp forest.jpg ./site/forest.jpg
cp pitcher.jpg ./site/pitcher.jpg
# build feed
cp ./feed/feed.atom ./site/feed.atom

BIN
forest.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -9,7 +9,16 @@
<body>
<section class="head">
<h1>thiss <a href="https://en.wikipedia.org/wiki/Moss">moss</a> iss <a href="https://en.wikipedia.org/wiki/Silence">still</a> <a href="https://en.wikipedia.org/wiki/Green">greenn</a></h1>
<p>
<a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a>
</p>
<p><a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a></p>
<div class="row">
<div class="column">
<img src="/venus.jpg" alt="venus flytraps and moss" style="width:100%">
</div>
<div class="column">
<img src="/forest.jpg" alt="a coastal pine savannah forest" style="width:100%">
</div>
<div class="column">
<img src="/pitcher.jpg" alt="a cluster of pitcher plants" style="width:100%">
</div>
</div>
</section>

View file

@ -1,3 +1,4 @@
<h2>home</h2>
<p>hello my name is maren and this is the domain i purchased with usd.</p>
<p>i live in the mountains in north carolina in the us.</p>
<p>i do computer things and other things too. i think this site is mostly about the computer things</p>

BIN
pitcher.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -9,9 +9,18 @@
<body>
<section class="head">
<h1>thiss <a href="https://en.wikipedia.org/wiki/Moss">moss</a> iss <a href="https://en.wikipedia.org/wiki/Silence">still</a> <a href="https://en.wikipedia.org/wiki/Green">greenn</a></h1>
<p>
<a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a>
</p>
<p><a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a></p>
<div class="row">
<div class="column">
<img src="/venus.jpg" alt="venus flytraps and moss" style="width:100%">
</div>
<div class="column">
<img src="/forest.jpg" alt="a coastal pine savannah forest" style="width:100%">
</div>
<div class="column">
<img src="/pitcher.jpg" alt="a cluster of pitcher plants" style="width:100%">
</div>
</div>
</section>
<h2>diy sms ftw vs ig, fb, etc.</h2>

View file

@ -9,9 +9,18 @@
<body>
<section class="head">
<h1>thiss <a href="https://en.wikipedia.org/wiki/Moss">moss</a> iss <a href="https://en.wikipedia.org/wiki/Silence">still</a> <a href="https://en.wikipedia.org/wiki/Green">greenn</a></h1>
<p>
<a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a>
</p>
<p><a href="/">home</a> | <a href="/blog">blog</a> | <a href="/links">links</a> | <a href="/feed.atom">feed</a></p>
<div class="row">
<div class="column">
<img src="/venus.jpg" alt="venus flytraps and moss" style="width:100%">
</div>
<div class="column">
<img src="/forest.jpg" alt="a coastal pine savannah forest" style="width:100%">
</div>
<div class="column">
<img src="/pitcher.jpg" alt="a cluster of pitcher plants" style="width:100%">
</div>
</div>
</section>
<h2>init</h2>
<p><em>september 30th 2023</em></p>

View file

@ -44,6 +44,18 @@ section.head {
padding: 1em;
}
/* header images */
.row {
display: flex;
padding-top: .5em;
padding-bottom: .25em;
}
.column {
flex: 33.33%;
padding-left: .5em;
padding-right: .5em;
}
/* foot */
.foot {
background: #471f38;

BIN
venus.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB