guga 0.1.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 856d2599c9335a2824b1676048910445108aa35c551331c48611f26901243812
4
- data.tar.gz: 1e6c9f779a297881986f8dbebc80ca83bec53bf02a47da9f588d062eb61ccbd4
3
+ metadata.gz: 909d5c8f3be8f76249ac1d3d45ce66381783bcee84dec5f5ac4aa68cdba59ba5
4
+ data.tar.gz: '03480f719ad4764b606908b155f4df919c2fffda311ba5df2c432af7fae4dabd'
5
5
  SHA512:
6
- metadata.gz: 2f7f38c9d5ae5e949da52dfdead34a1e17e100a0dd34f51000258ae81ea8bd00601dba084f388c3158e3d646c36a989b6b9aba8c746cc816d5925e557cd4d909
7
- data.tar.gz: ec331679513cb31d5c8e2f694f7675844e4eff77f3c91210497112d401ab15f05bd092b779ddbbf6a53fff17081c7aedcd96f59b2761e82aa93796d42cb8155a
6
+ metadata.gz: a979fa71e161999e20ae78aa841080ef21d504e3b51b8f4f80074ac70a45e57c1d668f0d03ae308d51a235a20df7d5f2180d37f0b4a524f63a1507e8b5580675
7
+ data.tar.gz: 52e9414ecaac09b981f6d6aef260044747e5224e846ecb372c41f91cec1c3486d5a4e24ff47060bc60fdce7cfbcd5ff8a39f67f405d106e1654cf7046deaf54a
data/_config.yml ADDED
@@ -0,0 +1,10 @@
1
+ title: Maia's corner
2
+ author: Gustavo Maia
3
+ description: Airplanes fly
4
+
5
+ guga:
6
+ avatar_url: https://placekitten.com/g/165/165
7
+
8
+ socials:
9
+ github: itsmaia # only username
10
+ twitter: itsmaia # only username
@@ -0,0 +1,6 @@
1
+ - title: My first project
2
+ description: Never gonna give you up!
3
+ url: https://www.youtube.com/watch?v=dQw4w9WgXcQ
4
+ - title: My second project
5
+ description: What is love
6
+ url: https://www.youtube.com/watch?v=HEXWRTEbj1I
@@ -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>
@@ -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>
@@ -1 +1,17 @@
1
- {{ content }}
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>
@@ -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>
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+ @tailwind base;
4
+ @tailwind components;
5
+ @tailwind utilities;
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.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-03 00:00:00.000000000 Z
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