💄 feat: Last minute adjustments

This commit is contained in:
marleyrae 2023-06-08 18:01:48 -07:00
parent ab6411bd6e
commit 7fb5ea7712
10 changed files with 45 additions and 20 deletions

View file

@ -13,7 +13,7 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy('src/style/assets')
// Copy collections & links
eleventyConfig.addPassthroughCopy('src/collections/images')
eleventyConfig.addPassthroughCopy('src/collections/images/**/*')
eleventyConfig.addPassthroughCopy('src/images')
// Process JS

2
.gitignore vendored
View file

@ -1,3 +1,3 @@
node_modules
dist/**
**/.DS_Store
.DS_Store

15
dist/about/index.html vendored
View file

@ -26,7 +26,7 @@
</button>
<a href="/about/" class="Nav-link">about</a>
<a href="/manifesto/" class="Nav-link">manifesto</a>
<a href="/diary/" class="Nav-link Status--new">diary</a>
<a href="/links/" class="Nav-link">links</a>
<hr>
@ -56,7 +56,7 @@
<p>
Absolutely everything on this site was coded by me and always will be, with only three exceptions - hit counter,
because NeoCities doesn't allow PHP and doing a JS only counter is a little more complicated (but will be done
because Neocities doesn't allow PHP and doing a JS only counter is a little more complicated (but will be done
eventually); the cursor trail script, because I don't have the brain for that sort of thing lol; and the cbox.
</p>
@ -100,10 +100,13 @@
<aside class="Site-info Info">
<b>visitors:</b>
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter" style="display: inline-block;">
<!-- Counter Code END -->
<div class="HitCounter">
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter"
style="display: inline-block;">
<!-- Counter Code END -->
</div>
</aside>

19
dist/links/index.html vendored
View file

@ -26,7 +26,7 @@
</button>
<a href="/about/" class="Nav-link">about</a>
<a href="/manifesto/" class="Nav-link">manifesto</a>
<a href="/diary/" class="Nav-link Status--new">diary</a>
<a href="/links/" class="Nav-link">links</a>
<hr>
@ -69,14 +69,23 @@
</a>
</div>
<ul class="List">
<li class="List-item">
<a href="https://www.cameronsworld.net/" target="_blank" class="Link">Cameron's World</a>
</li>
</ul>
</main>
<aside class="Site-info Info">
<b>visitors:</b>
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter" style="display: inline-block;">
<!-- Counter Code END -->
<div class="HitCounter">
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter"
style="display: inline-block;">
<!-- Counter Code END -->
</div>
</aside>

File diff suppressed because one or more lines are too long

View file

@ -5,7 +5,7 @@
</button>
<a href="/about/" class="Nav-link">about</a>
<a href="/manifesto/" class="Nav-link">manifesto</a>
<a href="/diary/" class="Nav-link Status--new">diary</a>
{% comment %}<a href="/diary/" class="Nav-link Status--new">diary</a>{% endcomment %}
<a href="/links/" class="Nav-link">links</a>
<hr>

View file

@ -1,5 +1,8 @@
<b>visitors:</b>
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter" style="display: inline-block;">
<!-- Counter Code END -->
<div class="HitCounter">
<!-- Counter Code START -->
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter"
style="display: inline-block;">
<!-- Counter Code END -->
</div>

View file

@ -23,3 +23,9 @@ layout: layout.liquid
<img src="/images/links/wiby.gif" alt="Wiby Search">
</a>
</div>
<ul class="List">
<li class="List-item">
<a href="https://www.cameronsworld.net/" target="_blank" class="Link">Cameron's World</a>
</li>
</ul>

View file

@ -1,7 +1,7 @@
---
layout: layout.liquid
---
<h2 class="Title--sizeH3 u-textCenter">The Small Web Manifesto</h2>
<h2 class="Title--sizeH4 u-textCenter">The Small Web Manifesto</h2>
<p>
I grew up with the internet.

View file

@ -1,3 +1,7 @@
@use 'mixins';
.u-textCenter {
text-align: center;
}
@include mixins.rainbowify-text('.u-rainbowifyChildren', --rainbow-text);