Skip to content

Commit 0343d56

Browse files
committed
User List check
1 parent 3c452b8 commit 0343d56

File tree

13 files changed

+355
-60
lines changed

13 files changed

+355
-60
lines changed

content/about/users/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Users"
3+
layout: "users/list"
4+
---

content/about/users/prashant.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "Prashant Priyadarshi"
3+
profile_image: "/prashant.jpg"
4+
subtitle: "Coding Painting Gaming"
5+
layout: "users/single"
6+
subtitle: "Coding Painting Gaming"
7+
weight: 1
8+
9+
colors:
10+
background: "#28966a"
11+
container_background: "#627e4600"
12+
link_background: "#a5be8c8f"
13+
link_hover: "#e09d62"
14+
15+
links:
16+
- name: "Website (Alpha)"
17+
url: "https://codefrydev.in"
18+
- name: "Projects/Testing"
19+
url: "https://prashantunity.github.io/GettingStarted/"
20+
- name: "Application"
21+
url: "https://play.google.com/store/apps/dev?id=7629538091711147079"
22+
- name: "GitHub"
23+
url: "https://github.com/PrashantUnity"
24+
- name: "LinkedIn"
25+
url: "https://www.linkedin.com/in/prashantunity"
26+
- name: "Microsoft"
27+
url: "https://learn.microsoft.com/en-us/users/prashantunity/"
28+
- name: "Some Cool Scripts"
29+
url: "https://github.com/PrashantUnity/SomeCoolScripts"
30+
- name: "Credly"
31+
url: "https://www.credly.com/users/prashantunity"
32+
- name: "Azure Hosted"
33+
url: "https://ambitious-sky-02a3c1e10.3.azurestaticapps.net/"
34+
- name: "Unity Engine"
35+
url: "https://play.unity.com/u/PrashantUnitys"
36+
- name: "Oracle Metabackup Tools"
37+
url: "https://github.com/PrashantUnity/OracleSqlWizard"
38+
---
43.1 KB
Loading

data/about.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
cards:
2+
- accent_color: "#0f6493"
3+
title: "Contributors"
4+
content: "Folks who is contribution on this projects"
5+
icon: "fa-solid fa-comments"
6+
url: "/about/users/"
7+
28
- accent_color: "#0f6493"
39
title: "Hugo"
410
content: "This Website is Created Using Hugo"

data/history.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
history:
2+
- date: "02 March 2025"
3+
title: "Contributors List"
4+
description: "People who is cotributing to this project"
5+
link: "/about/users/"
6+
accent_color: "#5c74df"
7+
28
- date: "01 August 2024"
39
title: "Text Tools"
410
description: "Text Tools Introduced for text manipulation"
5-
link: "https://codefrydev.in/TextTools/"
11+
link: "TextTools"
612
accent_color: "#5c748a"
713

814
- date: "26 July 2024"

layouts/about/users/list.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>{{ .Title }}</title>
8+
<link rel="stylesheet" href="{{ "css/about.css" | relURL }}">
9+
</head>
10+
11+
<body style="background-color: #e5e9f4;">
12+
<header>
13+
<h1 onclick="window.location.href='/'">
14+
<img style="align-items: center;" src="/images/IconCodefrydev.svg" alt="Codefrydev Logo" height="96px">
15+
<br/>
16+
{{ .Title }}
17+
</h1>
18+
</header>
19+
<main>
20+
<section>
21+
<ol class="cards">
22+
{{ range sort .Pages "Weight" }}
23+
<li class="card">
24+
<a href="{{ .RelPermalink }}">
25+
<img src="{{ .Params.profile_image }}" alt="{{ .Title }}" class="profile-img">
26+
<h2>{{ .Title }}</h2>
27+
<p>{{ .Params.subtitle }}</p> <!-- Added user quote/description -->
28+
</a>
29+
</li>
30+
{{ end }}
31+
</ol>
32+
</section>
33+
</main>
34+
</body>
35+
36+
</html>

layouts/about/users/single.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
8+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
9+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
10+
<link rel="manifest" href="/site.webmanifest">
11+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#28966a">
12+
<meta name="msapplication-TileColor" content="#28966a">
13+
<meta name="theme-color" content="#28966a">
14+
<title>{{ .Title }}</title>
15+
<link rel="stylesheet" href="{{ "css/usersstyle.css" | relURL }}">
16+
<style>
17+
:root {
18+
--background-color: {{ .Params.colors.background | default "#28966a" }};
19+
--container-bg: {{ .Params.colors.container_background | default "#627e4600" }};
20+
--link-bg: {{ .Params.colors.link_background | default "#a5be8c8f" }};
21+
--link-hover: {{ .Params.colors.link_hover | default "#e09d62" }};
22+
}
23+
</style>
24+
25+
</head>
26+
27+
<body>
28+
<div class="container">
29+
<img class="profile-img" src="{{ .Params.profile_image }}" alt="Profile Picture">
30+
<h1>{{ .Title }}</h1>
31+
<h2>{{ .Params.subtitle }}</h2>
32+
33+
{{ range .Params.links }}
34+
<a class="link" href="{{ .url }}" target="_blank">{{ .name }}</a>
35+
{{ end }}
36+
</div>
37+
</body>
38+
39+
</html>

public/history/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,13 @@ <h1 onclick="window.location.href='/'">History</h1>
9898
<main>
9999
<ul>
100100

101-
<li style="--accent-color:#5c748a" onclick="window.location.href='https:\/\/codefrydev.in\/TextTools\/'">
101+
<li style="--accent-color:#5c74df" onclick="window.location.href='\/about\/users\/'">
102+
<div class="date">02 March 2025</div>
103+
<div class="title">Contributors List</div>
104+
<div class="descr">People who is cotributing to this project</div>
105+
</li>
106+
107+
<li style="--accent-color:#5c748a" onclick="window.location.href='TextTools'">
102108
<div class="date">01 August 2024</div>
103109
<div class="title">Text Tools</div>
104110
<div class="descr">Text Tools Introduced for text manipulation</div>

public/index.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@
66
<description>Recent content on Code Fry Dev</description>
77
<generator>Hugo</generator>
88
<language>en-us</language>
9-
<lastBuildDate></lastBuildDate>
9+
<lastBuildDate>Mon, 01 Jan 0001 00:00:00 +0000</lastBuildDate>
1010
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
11+
<item>
12+
<title>Prashant Priyadarshi</title>
13+
<link>http://localhost:1313/about/users/prashant/</link>
14+
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
15+
<guid>http://localhost:1313/about/users/prashant/</guid>
16+
<description></description>
17+
</item>
1118
</channel>
1219
</rss>

public/sitemap.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
33
xmlns:xhtml="http://www.w3.org/1999/xhtml">
44
<url>
5+
<loc>http://localhost:1313/about/users/prashant/</loc>
6+
</url><url>
57
<loc>http://localhost:1313/about/</loc>
68
<lastmod>2023-01-01T00:00:00+00:00</lastmod>
79
</url><url>
@@ -17,5 +19,7 @@
1719
<loc>http://localhost:1313/categories/</loc>
1820
</url><url>
1921
<loc>http://localhost:1313/tags/</loc>
22+
</url><url>
23+
<loc>http://localhost:1313/about/users/</loc>
2024
</url>
2125
</urlset>

0 commit comments

Comments
 (0)