guga 0.1.0 → 0.5.0
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 +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 909d5c8f3be8f76249ac1d3d45ce66381783bcee84dec5f5ac4aa68cdba59ba5
|
4
|
+
data.tar.gz: '03480f719ad4764b606908b155f4df919c2fffda311ba5df2c432af7fae4dabd'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a979fa71e161999e20ae78aa841080ef21d504e3b51b8f4f80074ac70a45e57c1d668f0d03ae308d51a235a20df7d5f2180d37f0b4a524f63a1507e8b5580675
|
7
|
+
data.tar.gz: 52e9414ecaac09b981f6d6aef260044747e5224e846ecb372c41f91cec1c3486d5a4e24ff47060bc60fdce7cfbcd5ff8a39f67f405d106e1654cf7046deaf54a
|
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.
|
4
|
+
version: 0.5.0
|
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
|
@@ -33,9 +33,16 @@ extra_rdoc_files: []
|
|
33
33
|
files:
|
34
34
|
- LICENSE.txt
|
35
35
|
- README.md
|
36
|
+
- _config.yml
|
37
|
+
- _data/projects.yml
|
38
|
+
- _includes/header.html
|
39
|
+
- _includes/tabs.html
|
36
40
|
- _layouts/default.html
|
41
|
+
- _layouts/home.html
|
37
42
|
- _layouts/page.html
|
38
43
|
- _layouts/post.html
|
44
|
+
- _layouts/project.html
|
45
|
+
- assets/css/main.scss
|
39
46
|
homepage: https://github.com/itsmaia/guga
|
40
47
|
licenses:
|
41
48
|
- MIT
|