Skip to content

Commit 7760432

Browse files
committed
Updated some stuff
1 parent a1df22b commit 7760432

5 files changed

Lines changed: 33 additions & 24 deletions

File tree

_layouts/main-pc.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
<marquee>
6262
<div>
6363
<img src='https://www.free-website-hit-counter.com/zc.php?d=9&id=4484&s=18' border='0'>
64-
<img src="/assets/img/pictures/buttons/any_browser.gif">
65-
<a href="https://bmh.neocities.org/"><img src="/assets/img/pictures/buttons/bestview.gif"></a>
66-
<img src="/assets/img/pictures/buttons/bmhonline_button.gif">
67-
<img src="/assets/img/pictures/buttons/can_iam.gif">
68-
<img src="/assets/img/pictures/buttons/linux_powered.gif">
64+
{% for button in site.data.buttons %}
65+
{% if button.tag == "fun" %}
66+
<img src="{{ button.img }}" alt="{{ button.name }}">
67+
{% endif %}
68+
{% endfor %}
6969
</div>
7070
</marquee>
7171
<section class="field-row" style="justify-content: flex-end">

_layouts/main.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
<marquee>
6262
<div>
6363
<img src='https://www.free-website-hit-counter.com/zc.php?d=9&id=4484&s=18' border='0'>
64-
<img src="/assets/img/pictures/buttons/any_browser.gif">
65-
<a href="https://bmh.neocities.org/"><img src="/assets/img/pictures/buttons/bestview.gif"></a>
66-
<img src="/assets/img/pictures/buttons/bmhonline_button.gif">
67-
<img src="/assets/img/pictures/buttons/can_iam.gif">
68-
<img src="/assets/img/pictures/buttons/linux_powered.gif">
64+
{% for button in site.data.buttons %}
65+
{% if button.tag == "fun" %}
66+
<img src="{{ button.img }}" alt="{{ button.name }}">
67+
{% endif %}
68+
{% endfor %}
6969
</div>
7070
</marquee>
7171
<section class="field-row" style="justify-content: flex-end">

assets/js/main.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,12 @@ function loadTheme() {
4343
break
4444
}
4545
}
46+
47+
function hideWindow() {
48+
var x = document.getElementById("hide");
49+
if (x.style.display === "none") {
50+
x.style.display = "block";
51+
} else {
52+
x.style.display = "none";
53+
}
54+
}

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
</div>
1616
<div class="window-body">
1717
<fieldset>
18-
<p>Welcome to DamiDoop.XYZ! This website is going to primarily a place for me to make blog posts, have
19-
pages for any projects I may end up making, and really anything else I may want to host here.</p>
20-
<p>If you're looking for anything specific, like a project page or something self-hosted, take a look
21-
to the left at the navigation window! I hope you can find what you're looking for!</p>
22-
<p>Some warning about this site, however. It is not designed for small or portrait displays, such as
23-
phones or tablets. With that in mind, enjoy your time here!</p>
18+
<p>Welcome to my website, DamiDoop.XYZ! This website will be where I write blog posts about whatever it
19+
may be that I want to get out of my head, I'll have pages for all the projects I'm working on, and really
20+
just about anything else I want to put on this website.</p>
21+
<p>Luckily for all, this website is fairly easy to navigate! Either to the left or just above, you'll
22+
see the navigation window. You can click on most of the options, while some are just dropdowns. Keep in
23+
mind that all the pages under "Archives" and "Services" will all open external sites in this tab.</p>
2424
</fieldset>
2525
</div>
2626
</div>

mypc.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
{% if computer.image %}
4141
<img src="{{ computer.image }}" alt="{{ computer.name }}" style="width:100%">
4242
{% endif %}
43-
<p>CPU: {{ computer.cpu }}</p>
44-
<p>GPU: {{ computer.gpu }}</p>
45-
<p>RAM: {{ computer.ram }}</p>
46-
<p>Resolution: {{ computer.res }}</p>
43+
<p><strong>CPU:</strong> {{ computer.cpu }}</p>
44+
<p><strong>GPU:</strong> {{ computer.gpu }}</p>
45+
<p><strong>RAM:</strong> {{ computer.ram }}</p>
46+
<p><strong>Resolution:</strong> {{ computer.res }}</p>
4747
<p><strong>Description:</strong><br>{{ computer.desc }}</p>
4848
<section class="field-row" style="justify-content: flex-end;">
4949
{% if computer.doc %}
@@ -82,10 +82,10 @@
8282
{% if computer.image %}
8383
<img src="{{ computer.image }}" alt="{{ computer.name }}" style="width:100%;">
8484
{% endif %}
85-
<p>CPU: {{ computer.cpu }}</p>
86-
<p>GPU: {{ computer.gpu }}</p>
87-
<p>RAM: {{ computer.ram }}</p>
88-
<p>Resolution: {{ computer.res }}</p>
85+
<p><strong>CPU:</strong> {{ computer.cpu }}</p>
86+
<p><strong>GPU:</strong> {{ computer.gpu }}</p>
87+
<p><strong>RAM:</strong> {{ computer.ram }}</p>
88+
<p><strong>Resolution:</strong> {{ computer.res }}</p>
8989
<p><strong>Description:</strong><br>{{ computer.desc }}</p>
9090
<section class="field-row" style="justify-content: flex-end;">
9191
{% if computer.doc %}

0 commit comments

Comments
 (0)