-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85995f2
commit d50d5bd
Showing
74 changed files
with
478 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
<!-- Badges for Website repositories --> | ||
|
||
<p align="right"> | ||
<img src="https://img.shields.io/github/languages/code-size/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/repo-size/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/commit-activity/t/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/last-commit/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/website/https/miguelpimentel.do.svg" /> | ||
</p> | ||
|
||
<!-- Badges for Firefox extension repositories --> | ||
<p align=center> | ||
<img alt="Mozilla Add-on" | ||
src="https://img.shields.io/amo/v/%7Ba16c3799-d903-44e3-b044-a032197f5ef8%7D?style=for-the-badge"> | ||
<img src="https://img.shields.io/amo/rating/%7Ba16c3799-d903-44e3-b044-a032197f5ef8%7D?style=for-the-badge" /> | ||
<img src="https://img.shields.io/amo/dw/%7Ba16c3799-d903-44e3-b044-a032197f5ef8%7D?style=for-the-badge" /> | ||
<img src="https://img.shields.io/amo/users/%7Ba16c3799-d903-44e3-b044-a032197f5ef8%7D?style=for-the-badge" /> | ||
<img src="https://img.shields.io/github/license/datastring/firefox-telegram-in-sidebar?style=for-the-badge" /> | ||
</p> | ||
<!-- Badges for Website repositories --> | ||
<p align="right"> | ||
<img src="https://img.shields.io/github/languages/code-size/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/repo-size/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/commit-activity/t/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/github/last-commit/semanticdata/[this-repo]" /> | ||
<img src="https://img.shields.io/website/https/miguelpimentel.do.svg" /> | ||
</p> | ||
|
||
<!-- Badges for Firefox extension repositories --> | ||
<p align=center> | ||
<img alt="Mozilla Add-on" | ||
src="https://img.shields.io/amo/v/{a16c3799-d903-44e3-b044-a032197f5ef8}?style=for-the-badge"> | ||
<img src="https://img.shields.io/amo/rating/{a16c3799-d903-44e3-b044-a032197f5ef8}?style=for-the-badge" /> | ||
<img src="https://img.shields.io/amo/dw/{a16c3799-d903-44e3-b044-a032197f5ef8}?style=for-the-badge" /> | ||
<img src="https://img.shields.io/amo/users/{a16c3799-d903-44e3-b044-a032197f5ef8}?style=for-the-badge" /> | ||
<img src="https://img.shields.io/github/license/datastring/firefox-telegram-in-sidebar?style=for-the-badge" /> | ||
</p> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Zola only Build | |
on: | ||
# push: | ||
# branches: | ||
# - main | ||
# - main | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Zola - Build from Docs (folder) and Deploy to GH Pages | ||
|
||
on: | ||
# push: | ||
# branches: | ||
# - main | ||
# pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# if: github.ref != 'refs/heads/main' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Zola | ||
uses: taiki-e/install-action@zola | ||
- name: Build Zola | ||
run: zola --root docs build | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Upload artifact | ||
uses: semanticdata/upload-pages-artifact@v0.1.0 | ||
with: | ||
path: ./docs/public | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: semanticdata/deploy-pages@v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<div class="card-minimalistic"> | ||
<h3>Some Title</h3> | ||
<p><b>Minnesota</b>, US<br> | ||
Some Text</p> | ||
<a href="#"><span class="card-link-spanner"></span></a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="card"> | ||
<div class="card-image loading"> | ||
<img alt="Card Background Image" | ||
src="https://raw.githubusercontent.com/AsmrProg-YT/css-widgets/master/widget%20%234/1.jpg"> | ||
</div> | ||
<a href="#" class="card-header loading">Card Title Here | ||
</a> | ||
<p class="card-info loading"> | ||
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Neque voluptatem necessitatibus omnis corrupti facere | ||
distinctio sapiente tempore aperiam, iste numquam ut quas atque nam corporis architecto vel error perferendis aut. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div class="hamburger-menu"> | ||
<div class="bar top"></div> | ||
<div class="bar middle"></div> | ||
<div class="bar bottom"></div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
<head> | ||
|
||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" itemprop="about" content="{{config.description}}"> | ||
<link rel="stylesheet" href="{{ get_url(path="main.css") | safe }}"> | ||
{# <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700"> #} | ||
<title>{% block title %}{{ config.title }}{% endblock title %}</title> | ||
<meta name="description" itemprop="about" content="{{config.description}}"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="{{ get_url(path="assets/favicon-32x32.png") | safe }}"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="{{ get_url(path="assets/favicon-16x16.png") | safe }}"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="{{ get_url(path="assets/apple-touch-icon.png") | safe }}"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="{{ get_url(path=" assets/favicon-32x32.png") | safe }}"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="{{ get_url(path=" assets/favicon-16x16.png") | safe }}"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="{{ get_url(path=" assets/apple-touch-icon.png") | safe }}"> | ||
|
||
{% if config.generate_feed %} | ||
<link type="application/atom+xml" rel="alternate" href="{{ get_url(path=config.feed_filename | default(value="atom.xml")) | safe }}" title="{{ config.title | default(value=" Mabuya") }}" /> | ||
<link type="application/atom+xml" rel="alternate" href="{{ get_url(path=config.feed_filename | default(value=" | ||
atom.xml")) | safe }}" title="{{ config.title | default(value=" Mabuya") }}" /> | ||
{% endif %} | ||
|
||
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<div class="background"> | ||
<img src="" id="bg-img"> | ||
</div> | ||
|
||
<div class="contenedor"> | ||
<div class="player-img"> | ||
<img src="" class="active" id="cover"> | ||
</div> | ||
|
||
<h2 id="music-title"></h2> | ||
<h3 id="music-artist"></h3> | ||
|
||
<div class="player-progress" id="player-progress"> | ||
<div class="progress" id="progress"></div> | ||
<div class="music-duration"> | ||
<span id="current-time">0:00</span> | ||
<span id="duration">0:00</span> | ||
</div> | ||
</div> | ||
|
||
<div class="player-controls"> | ||
<i class="fa-solid fa-backward" title="Previous" id="prev"></i> | ||
<i class="fa-solid fa-play play-button" title="Play" id="play"></i> | ||
<i class="fa-solid fa-forward" title="Next" id="next"></i> | ||
</div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block pagetitle %} | ||
<h1>{{ page.title }}</h1> | ||
{% endblock pagetitle %} | ||
|
||
{% block content %} | ||
{{ page.content | safe }} | ||
{# {% include "partials/music-player.html" %} #} | ||
{% endblock content %} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
.card { | ||
max-width: 380px; | ||
background: var(--color-card-background); | ||
box-shadow: var(--box-shadow); | ||
padding: 1.3rem; | ||
border-radius: 0.5rem; | ||
transition: all 0.3s ease; | ||
} | ||
|
||
.card .card-image { | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.card .card-image img { | ||
width: 100%; | ||
aspect-ratio: 4 / 3; | ||
object-fit: cover; | ||
border-radius: 0.25rem; | ||
} | ||
|
||
.card-header { | ||
color: var(--color-header); | ||
font-size: 1.25rem; | ||
text-decoration: none; | ||
font-weight: 600; | ||
display: inline-block; | ||
margin-bottom: 0.25rem; | ||
} | ||
|
||
.card-info { | ||
color: var(--color-info); | ||
display: -webkit-box; | ||
-webkit-box-orient: vertical; | ||
-webkit-line-clamp: 3; | ||
text-overflow: ellipsis; | ||
overflow: hidden; | ||
} | ||
|
||
.loading { | ||
position: relative; | ||
} | ||
|
||
.loading::before { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
border-radius: 0.25rem; | ||
width: 100%; | ||
height: 100%; | ||
z-index: 100; | ||
background: var(--color-gradient); | ||
background-size: 200%; | ||
animation: loading 1s infinite reverse; | ||
} | ||
|
||
@keyframes loading { | ||
0% { | ||
background-position: -100% 0; | ||
} | ||
100% { | ||
background-position: 100% 0; | ||
} | ||
}F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@use "vars"; | ||
|
||
pre, | ||
code { | ||
border: 1px solid vars.$border-color; | ||
background-color: vars.$background-color; | ||
border-radius: 4px; | ||
} | ||
|
||
code { | ||
padding: 1px 2px; | ||
} | ||
|
||
pre { | ||
padding: 0.25rem 0.5rem; | ||
overflow-x: auto; | ||
|
||
> code { | ||
border: 0; | ||
} | ||
} |
Oops, something went wrong.