💄 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') eleventyConfig.addPassthroughCopy('src/style/assets')
// Copy collections & links // Copy collections & links
eleventyConfig.addPassthroughCopy('src/collections/images') eleventyConfig.addPassthroughCopy('src/collections/images/**/*')
eleventyConfig.addPassthroughCopy('src/images') eleventyConfig.addPassthroughCopy('src/images')
// Process JS // Process JS

2
.gitignore vendored
View file

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

15
dist/about/index.html vendored
View file

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

19
dist/links/index.html vendored
View file

@ -26,7 +26,7 @@
</button> </button>
<a href="/about/" class="Nav-link">about</a> <a href="/about/" class="Nav-link">about</a>
<a href="/manifesto/" class="Nav-link">manifesto</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> <a href="/links/" class="Nav-link">links</a>
<hr> <hr>
@ -69,14 +69,23 @@
</a> </a>
</div> </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> </main>
<aside class="Site-info Info"> <aside class="Site-info Info">
<b>visitors:</b> <b>visitors:</b>
<!-- Counter Code START --> <div class="HitCounter">
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script> <!-- Counter Code START -->
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter" style="display: inline-block;"> <script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<!-- Counter Code END --> <img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter"
style="display: inline-block;">
<!-- Counter Code END -->
</div>
</aside> </aside>

File diff suppressed because one or more lines are too long

View file

@ -5,7 +5,7 @@
</button> </button>
<a href="/about/" class="Nav-link">about</a> <a href="/about/" class="Nav-link">about</a>
<a href="/manifesto/" class="Nav-link">manifesto</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> <a href="/links/" class="Nav-link">links</a>
<hr> <hr>

View file

@ -1,5 +1,8 @@
<b>visitors:</b> <b>visitors:</b>
<!-- Counter Code START --> <div class="HitCounter">
<script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script> <!-- Counter Code START -->
<img src="http://hitcounters.net/counter.php?id=11368&cmd=img_only" alt="hit counter" style="display: inline-block;"> <script src="http://hitcounters.net/counter.php?id=11368&cmd=cookie"></script>
<!-- Counter Code END --> <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"> <img src="/images/links/wiby.gif" alt="Wiby Search">
</a> </a>
</div> </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 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> <p>
I grew up with the internet. I grew up with the internet.

View file

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