Added services descriptions, fixed margins/paddings
This commit is contained in:
parent
771c63df54
commit
b452114233
2 changed files with 54 additions and 35 deletions
25
index.hbs
25
index.hbs
|
@ -11,6 +11,9 @@
|
|||
<style>
|
||||
i.las, i.lab { margin-right: 0.5rem }
|
||||
details { margin-top: calc(var(--spacing) * 0.25) }
|
||||
fieldset > blockquote { margin-top: calc(var(--spacing) * 0.25) }
|
||||
fieldset:last-child > blockquote { margin-bottom: 0 }
|
||||
section { margin-bottom: var(--spacing) }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -39,6 +42,7 @@
|
|||
fullstack developer
|
||||
</h2>
|
||||
</hgroup>
|
||||
<section>
|
||||
<div class="grid">
|
||||
{{#each profiles}}
|
||||
<div>
|
||||
|
@ -49,6 +53,7 @@
|
|||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</section>
|
||||
<div>
|
||||
{{#each about}}
|
||||
<div>
|
||||
|
@ -90,20 +95,24 @@
|
|||
<h1>Services on dc09.ru</h1>
|
||||
<h2>{{vps}}</h2>
|
||||
</hgroup>
|
||||
<aside>
|
||||
<nav>
|
||||
<ul>
|
||||
<div>
|
||||
{{#each selfhosted}}
|
||||
<li>
|
||||
<fieldset>
|
||||
<a href="https://{{domain}}">
|
||||
<i class="{{icon}}"></i>
|
||||
{{domain}}
|
||||
</a>
|
||||
</li>
|
||||
<blockquote>
|
||||
{{description}}
|
||||
<footer>
|
||||
<a href="{{source}}" class="secondary">
|
||||
Source Code
|
||||
</a>
|
||||
</footer>
|
||||
</blockquote>
|
||||
</fieldset>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</nav>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
</main>
|
||||
</body>
|
||||
|
|
34
index.json
34
index.json
|
@ -36,7 +36,7 @@
|
|||
"Дайте танк (!)",
|
||||
"Pizza/Пицца"
|
||||
],
|
||||
"listTitle": "Fav Music Bands"
|
||||
"listTitle": "Favorite Music Bands"
|
||||
},
|
||||
{
|
||||
"icon": "las la-desktop",
|
||||
|
@ -418,37 +418,47 @@
|
|||
],
|
||||
"vps": "Hosted on timeweb.cloud",
|
||||
"selfhosted": [
|
||||
{
|
||||
"icon": "las la-home",
|
||||
"domain": "dc09.ru"
|
||||
},
|
||||
{
|
||||
"icon": "las la-search",
|
||||
"domain": "searx.dc09.ru"
|
||||
"domain": "searx.dc09.ru",
|
||||
"description": "SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled.",
|
||||
"source": "https://github.com/searxng/searxng"
|
||||
},
|
||||
{
|
||||
"icon": "lab la-git-alt",
|
||||
"domain": "git.dc09.ru"
|
||||
"domain": "git.dc09.ru",
|
||||
"description": "Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license.",
|
||||
"source": "https://github.com/go-gitea/gitea"
|
||||
},
|
||||
{
|
||||
"icon": "las la-play",
|
||||
"domain": "yt.dc09.ru"
|
||||
"domain": "yt.dc09.ru",
|
||||
"description": "Piped is an alternative privacy-friendly YouTube frontend which is efficient by design.",
|
||||
"source": "https://github.com/TeamPiped/Piped"
|
||||
},
|
||||
{
|
||||
"icon": "las la-link",
|
||||
"domain": "url.dc09.ru"
|
||||
"domain": "url.dc09.ru",
|
||||
"description": "Shlink is a PHP-based self-hosted URL shortener that can be used to serve shortened URLs under your own domain.",
|
||||
"source": "https://github.com/shlinkio/shlink"
|
||||
},
|
||||
{
|
||||
"icon": "las la-key",
|
||||
"domain": "pswd.dc09.ru"
|
||||
"domain": "pswd.dc09.ru",
|
||||
"description": "Vaultwarden is an unofficial Bitwarden compatible server written in Rust",
|
||||
"source": "https://github.com/dani-garcia/vaultwarden"
|
||||
},
|
||||
{
|
||||
"icon": "las la-cloud",
|
||||
"domain": "cloud.dc09.ru"
|
||||
"domain": "cloud.dc09.ru",
|
||||
"description": "Nextcloud is a safe home for all your data – community-driven, free & open source",
|
||||
"source": "https://github.com/nextcloud/all-in-one"
|
||||
},
|
||||
{
|
||||
"icon": "lab la-wikipedia-w",
|
||||
"domain": "wt.dc09.ru"
|
||||
"domain": "wt.dc09.ru",
|
||||
"description": "Just a redirection to Russian Wiktionary with a shorter domain",
|
||||
"source": "https://wt.dc09.ru/!about"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue