guga 0.1.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +10 -0
- data/_data/projects.yml +6 -0
- data/_includes/header.html +13 -0
- data/_includes/tabs.html +16 -0
- data/_layouts/default.html +17 -1
- data/_layouts/home.html +16 -0
- data/_layouts/project.html +28 -0
- data/assets/css/main.scss +5 -0
- metadata +23 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7830273dc3c841ba628e38835a5223de4234a686184c8992b23e272d9619f0c9
|
4
|
+
data.tar.gz: ed6efa4cfd0fd539ae3ab756cfa054ed50f6a5d9ad91982d61ea38f610f7752b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35d97d03ee6668b0a3ed1a9c4f1174385665a77312ec92e1a0d7a4ffa953b8365498ccf61e50ccb75666cc993a49b1dad75018721e13938a6f6658cc6d5d83e5
|
7
|
+
data.tar.gz: '0783f3b86a0be80ec74cbc1f8402e02d6f0e17d17cb9bb77928f995f4b826128f31cc5d04f2dac85b025ac6381de93a7b41f9e1f0d7768abcd33bb77958283f6'
|
data/_config.yml
ADDED
data/_data/projects.yml
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<section class="flex">
|
2
|
+
<img class="h-40 w-40" src="{{ site.guga.avatar_url }}">
|
3
|
+
<div class="my-auto pl-10">
|
4
|
+
<h3 class="text-2xl">{{ site.author }}</h3>
|
5
|
+
<p class="text-sm font-light text-slate-500">{{ site.description }}</p>
|
6
|
+
<div class="flex gap-2">
|
7
|
+
{%- assign username = site.guga.socials -%}
|
8
|
+
|
9
|
+
<a class="no-underline" href="https://twitter.com/{{ username.twitter }}">[Twitter]</a>
|
10
|
+
<a class="no-underline" href="https://github.com/{{ username.github }}">[Github]</a>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</section>
|
data/_includes/tabs.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
<div class="text-sm font-medium text-center text-gray-500 border-gray-200 dark:text-gray-400 dark:border-gray-700">
|
2
|
+
<ul class="list-none flex flex-wrap -mb-px">
|
3
|
+
<li class="mr-2">
|
4
|
+
<a href="{{ site.url }}/"
|
5
|
+
class="inline-block p-4 rounded-t-lg border-b-2 border-transparent hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300"
|
6
|
+
aria-current="page">About</a>
|
7
|
+
</li>
|
8
|
+
<li class="mr-2">
|
9
|
+
<a href="{{ site.url }}/project.html"
|
10
|
+
class="inline-block p-4 rounded-t-lg border-b-2 border-transparent hover:text-gray-600 hover:border-gray-300 dark:hover:text-gray-300">Projects</a>
|
11
|
+
</li>
|
12
|
+
</ul>
|
13
|
+
</div>
|
14
|
+
<div class="mt-10">
|
15
|
+
{{ content }}
|
16
|
+
</div>
|
data/_layouts/default.html
CHANGED
@@ -1 +1,17 @@
|
|
1
|
-
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
|
+
|
4
|
+
<head>
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6
|
+
<meta charset="utf-8">
|
7
|
+
<title>{{ page.title }} - {{ site.title }}</title>
|
8
|
+
<link rel="stylesheet" href="/assets/css/main.css">
|
9
|
+
</head>
|
10
|
+
|
11
|
+
<body class="font-sans mx-auto max-w-prose">
|
12
|
+
<div class="prose prose-yellow prose-sm md:prose-lg lg:prose-2xl">
|
13
|
+
{{ content }}
|
14
|
+
</div>
|
15
|
+
</body>
|
16
|
+
|
17
|
+
</html>
|
data/_layouts/home.html
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<head>
|
6
|
+
<meta charset="UTF-8">
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
8
|
+
|
9
|
+
</head>
|
10
|
+
<div class="max-w-[768px] mx-auto mt-20 prose">
|
11
|
+
|
12
|
+
{%- include header.html -%}
|
13
|
+
|
14
|
+
{%- include tabs.html -%}
|
15
|
+
|
16
|
+
</div>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<head>
|
6
|
+
<meta charset="UTF-8">
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
8
|
+
|
9
|
+
</head>
|
10
|
+
<div class="max-w-[768px] mx-auto mt-20 prose">
|
11
|
+
|
12
|
+
{%- include header.html -%}
|
13
|
+
|
14
|
+
{%- include tabs.html -%}
|
15
|
+
<div class="mt-10">
|
16
|
+
<div class="">
|
17
|
+
<div class="">
|
18
|
+
{% for project in site.data.projects %}
|
19
|
+
<div class="p-3 rounded shadow mt-2">
|
20
|
+
<a class="no-underline" href="{{ project.url }}">{{ project.title }}</a>
|
21
|
+
<p>{{ project.description }}</p> <a href="https://taylantatli.github.io/Moon/moon-theme/"
|
22
|
+
class="no-underline">Read More</a>
|
23
|
+
</div>
|
24
|
+
{% endfor %}
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
</div>
|
28
|
+
</div>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gustavo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-11-
|
11
|
+
date: 2022-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '4.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-postcss-v2
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.3'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.3'
|
27
41
|
description:
|
28
42
|
email:
|
29
43
|
- glad.pen1804@fastmail.com
|
@@ -33,9 +47,16 @@ extra_rdoc_files: []
|
|
33
47
|
files:
|
34
48
|
- LICENSE.txt
|
35
49
|
- README.md
|
50
|
+
- _config.yml
|
51
|
+
- _data/projects.yml
|
52
|
+
- _includes/header.html
|
53
|
+
- _includes/tabs.html
|
36
54
|
- _layouts/default.html
|
55
|
+
- _layouts/home.html
|
37
56
|
- _layouts/page.html
|
38
57
|
- _layouts/post.html
|
58
|
+
- _layouts/project.html
|
59
|
+
- assets/css/main.scss
|
39
60
|
homepage: https://github.com/itsmaia/guga
|
40
61
|
licenses:
|
41
62
|
- MIT
|