mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
wip: 2024-11-29T10:29:15+0100 (1732872555)
This commit is contained in:
parent
17698e1ebb
commit
001ddd1b6b
20 changed files with 46 additions and 14 deletions
|
@ -90,7 +90,6 @@
|
|||
->limit($_GET[PARAM_LIMIT])
|
||||
->select([
|
||||
WorkModel::ID->value,
|
||||
WorkModel::REF_NAMESPACE_ID->value,
|
||||
WorkModel::TITLE->value,
|
||||
WorkModel::SUMMARY->value,
|
||||
WorkModel::IS_LISTED->value,
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
const TABLE = "work";
|
||||
|
||||
case ID = "id";
|
||||
case REF_NAMESPACE_ID = "ref_namespace_id";
|
||||
case TITLE = "title";
|
||||
case SUMMARY = "summary";
|
||||
case COVER_SRCSET = "cover_srcset";
|
||||
|
|
15
public/assets/css/pages/work/wip.css
Normal file
15
public/assets/css/pages/work/wip.css
Normal file
|
@ -0,0 +1,15 @@
|
|||
/* # Overrides */
|
||||
|
||||
:root {
|
||||
--primer-color-accent: 3, 255, 219;
|
||||
--color-accent: rgb(var(--primer-color-accent));
|
||||
}
|
||||
|
||||
vv-shell {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--padding);
|
||||
width: 100%;
|
||||
max-width: 1200px;
|
||||
overflow-x: initial;
|
||||
}
|
|
@ -50,7 +50,7 @@
|
|||
</div>
|
||||
<p><?= $work->get_summary("vlw/vegvisir") ?></p>
|
||||
<div class="actions">
|
||||
<a href="https://vegvisir.vlw.se"><button class="inline">Read more</button></a>
|
||||
<a href="https://vegvisir.vlw.se"><button class="inline">read more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -62,7 +62,7 @@
|
|||
</div>
|
||||
<p><?= $work->get_summary("vlw/reflect") ?></p>
|
||||
<div class="actions">
|
||||
<a href="https://reflect.vlw.se"><button class="inline">Read more</button></a>
|
||||
<a href="https://reflect.vlw.se"><button class="inline">read more</button></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -75,7 +75,7 @@
|
|||
<h3>vlw.se</h3>
|
||||
<p>Can I put my own website here, is that cheating? Maybe, but I think this site counts as the most important thing I've personally created. I've only used my own libraries and frameworks to create this website, so it kind of works as a live demonstration of many of my web projects bundled together.</p>
|
||||
<div class="actions">
|
||||
<a href="/work/vlw/vlw.se"><button class="inline">read more</button></a>
|
||||
<a href="https://codeberg.org/vlw/vlw.se"><button class="inline">view source</button></a>
|
||||
</div>
|
||||
</featured-item>
|
||||
<featured-item>
|
||||
|
@ -83,7 +83,7 @@
|
|||
<?= VV::embed("public/assets/media/icons/vw.svg") ?>
|
||||
</div>
|
||||
<h3>Silly dabbles</h3>
|
||||
<p>I play around with a lot of technologies and sometimes create smaller programs for fun that aren't trying to do anything useful, or might not merit to a lot on their own. I made a page that I call the "playground" for all those things.. and other silly stuff!</p>
|
||||
<p>I create silly things for fun to challenge myself sometimes, and putting them all on the timeline is not right. So I made an appropriately-themed and named page to highlight most of my "what if I could" projects.</p>
|
||||
<div class="actions">
|
||||
<a href="/playground"><button class="inline">playground</button></a>
|
||||
</div>
|
||||
|
@ -91,14 +91,11 @@
|
|||
<featured-item>
|
||||
<div class="title">
|
||||
<?= VV::embed("public/assets/media/icons/repo.svg") ?>
|
||||
<div>
|
||||
<button class="lang">PHP</button>
|
||||
</div>
|
||||
</div>
|
||||
<h3>vlw/php-mysql</h3>
|
||||
<p><?= $work->get_summary("vlw/php-mysql") ?></p>
|
||||
<div class="actions">
|
||||
<a href="PHP"><button class="inline">read more</button></a>
|
||||
<a href="https://codeberg.org/vlw/php-mysql"><button class="inline">view source</button></a>
|
||||
</div>
|
||||
</featured-item>
|
||||
<featured-item>
|
||||
|
@ -108,7 +105,7 @@
|
|||
<h3>Website for iCellate Medical</h3>
|
||||
<p><?= $work->get_summary("icellate/website") ?></p>
|
||||
<div class="actions">
|
||||
<a href=""><button class="inline">read more</button></a>
|
||||
<a href="/work/icellate/website"><button class="inline">read more</button></a>
|
||||
</div>
|
||||
</featured-item>
|
||||
<featured-item>
|
||||
|
@ -118,7 +115,7 @@
|
|||
<h3>Modernizing GeneMate by iCellate</h3>
|
||||
<p><?= $work->get_summary("icellate/genemate") ?></p>
|
||||
<div class="actions">
|
||||
<a href=""><button class="inline">read more</button></a>
|
||||
<a href="/work/icellate/genemate"><button class="inline">read more</button></a>
|
||||
</div>
|
||||
</featured-item>
|
||||
<featured-item>
|
||||
|
@ -128,7 +125,7 @@
|
|||
<h3>Custom pages for Deltaco AB</h3>
|
||||
<p><?= $work->get_summary("deltaco/asyncapp") ?></p>
|
||||
<div class="actions">
|
||||
<a href=""><button class="inline">read more</button></a>
|
||||
<a href="/work/deltaco/asyncapp"><button class="inline">read more</button></a>
|
||||
</div>
|
||||
</featured-item>
|
||||
</section>
|
||||
|
|
1
public/work/deltaco/asyncapp.php
Normal file
1
public/work/deltaco/asyncapp.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/deltaco/distit.php
Normal file
1
public/work/deltaco/distit.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/deltaco/e-charge.php
Normal file
1
public/work/deltaco/e-charge.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/deltaco/office.php
Normal file
1
public/work/deltaco/office.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/deltaco/pdf-generator.php
Normal file
1
public/work/deltaco/pdf-generator.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/deltaco/reseller-form.php
Normal file
1
public/work/deltaco/reseller-form.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/icellate/genemate.php
Normal file
1
public/work/icellate/genemate.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/icellate/website.php
Normal file
1
public/work/icellate/website.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/itg/lan.php
Normal file
1
public/work/itg/lan.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/itg/upload.php
Normal file
1
public/work/itg/upload.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
|
@ -98,7 +98,7 @@
|
|||
<style><?= VV::css("public/assets/css/pages/work/timeline") ?></style>
|
||||
<section class="git">
|
||||
<?= VV::embed("public/assets/media/icons/codeberg.svg") ?>
|
||||
<p>This timeline contains most but not all of my FOSS software. If you want to see a list of all things I've created for the free software world, check out my repos on Codeberg or Forgejo.</p>
|
||||
<p>This timeline has most but not all of my FOSS software. If you want to see a list of all things I've created for the free software world, check out my repos on Codeberg or Forgejo.</p>
|
||||
<div class="buttons">
|
||||
<a href="https://codeberg.org/vlw"><button class="inline solid">Codeberg</button></a>
|
||||
<a href="https://git.vlw.se"><button class="inline">Forgejo</button></a>
|
||||
|
|
1
public/work/vlw/camera-obscura.php
Normal file
1
public/work/vlw/camera-obscura.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/vlw/dediprison.php
Normal file
1
public/work/vlw/dediprison.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/vlw/eyeart.php
Normal file
1
public/work/vlw/eyeart.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
1
public/work/vlw/ion-musik.php
Normal file
1
public/work/vlw/ion-musik.php
Normal file
|
@ -0,0 +1 @@
|
|||
<?= VV::include("public/work/wip") ?>
|
8
public/work/wip.php
Normal file
8
public/work/wip.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<style><?= VV::css("public/assets/css/pages/work/wip") ?></style>
|
||||
<section class="disclaimer">
|
||||
<h1>Soon, very soon!</h1>
|
||||
<p>Bear with me as I cook up some texts about this project! Hopefully with some pictures too.</p>
|
||||
</section>
|
||||
<section class="actions">
|
||||
<a href="/work"><button class="inline">to featured work</button></a>
|
||||
</section>
|
Loading…
Add table
Reference in a new issue