Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gangjun06/SimpleIntro.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgangjun06 <me@gangjun.dev>2020-08-13 12:41:37 +0300
committergangjun06 <me@gangjun.dev>2020-08-13 12:41:37 +0300
commit2dc3a2643a8824c45462f4768fe9d6df245e00c5 (patch)
tree0117e772d58c23a03d7067d76e8856e502e7aa38
parentdec0deaa8e7dca055b99f1c3a55860f114354ecb (diff)
basic layout
-rw-r--r--layouts/partials/header.html1
-rw-r--r--layouts/partials/home.html78
2 files changed, 71 insertions, 8 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 14872b9..622f609 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -4,3 +4,4 @@
<link rel="stylesheet" href="/css/index.css" />
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<script src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"></script>
+<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/konpa/devicon@master/devicon.min.css">
diff --git a/layouts/partials/home.html b/layouts/partials/home.html
index 4ff220a..ee7248b 100644
--- a/layouts/partials/home.html
+++ b/layouts/partials/home.html
@@ -12,24 +12,86 @@
</div>
</div>
{{ $data := .Site.Data.home }}
- <main class="container mx-auto mt-8">
- <section id="about" class="flex justify-around">
+ <main class="container mx-auto mt-8 px-4 xl:px-0">
+ <section id="about" class="md:flex justify-around">
<div class="my-auto">
- {{ partial "home_title" (dict "title" "Skills") }}
+ {{ partial "home_title" (dict "title" "About Me") }}
<div class="flex mt-3 gap-3 text-xl">
- {{ range $data.about.links.link }}
+ {{ range $data.about.link }}
<i class="{{ .icon }}"></i>{{end}}
</div>
</div>
- <div class="text-md">
+ <div class="text-md mt-4 md:mt-0">
<div>{{ replace $data.about.text "\n" "<br />" | safeHTML }}</div>
</div>
</section>
- <section id="skills" class="mt-4">
- <div class="flex justify-center">
+ <section id="skills" class="mt-6">
+ <div class="md:flex justify-center">
{{ partial "home_title" (dict "title" "Skills") }}
</div>
+ <div
+ class="mt-4 grid grid-flow-row grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"
+ >
+ {{ range $data.skills.list }}
+ <div class="w-full rounded overflow-hidden shadow-lg">
+ <div class="">
+ <div class="font-bold text-xl mb-2 py-2 px-6 bg-gray-500">
+ <div class="flex">
+ <img
+ src="{{ .icon }}"
+ width="50px"
+ class="bg-gray-300 py-1 px-1 rounded-full"
+ />
+ <div class="my-auto ml-2">
+ {{ .name }}
+ </div>
+ </div>
+ </div>
+ <p class="text-gray-700 text-base px-6 pb-4">
+ {{ replace .text "\n" "<br />" | safeHTML }}
+ </p>
+ </div>
+ </div>
+ {{end}}
+ </div>
+ </section>
+ <section id="projects" class="mt-6">
+ <div class="md:flex justify-center">
+ {{ partial "home_title" (dict "title" "Projects") }}
+ </div>
+ <div
+ class="mt-4 grid grid-flow-row grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"
+ >
+ {{ range $data.project.list }}
+ <div class="w-full rounded overflow-hidden shadow-lg">
+ <img
+ class="w-full h-48"
+ src="{{ .image }}"
+ alt="Sunset in the mountains"
+ />
+ <div class="px-6 py-4">
+ <div class="font-bold text-xl mb-2">{{ .title }}</div>
+ <p class="text-gray-700 text-base">
+ {{ .text }}
+ </p>
+ </div>
+ <div class="px-6 py-4">
+ <span
+ class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2"
+ >#photography</span
+ >
+ <span
+ class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2"
+ >#travel</span
+ >
+ <span
+ class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700"
+ >#winter</span
+ >
+ </div>
+ </div>
+ {{end}}
+ </div>
</section>
- <section id="projects"></section>
</main>
</div>