Skip to content

Commit f6cfb4d

Browse files
new profiles
1 parent a0d2bc1 commit f6cfb4d

5 files changed

Lines changed: 271 additions & 5 deletions

File tree

profiles/@Cartoomb/index.html

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>GitFriends</title>
6+
<link rel="shortcut icon" href="https://source.jborgarts.com/GitFriends/source/icons/git-fork.svg">
7+
<!--GitFriends Profile-->
8+
<script src="https://source.jborgarts.com/GitFriends/source/menus.js"></script>
9+
<script src="https://source.jborgarts.com/GitFriends/source/icons.js"></script>
10+
<script src="./userload.js"></script>
11+
<link rel="stylesheet" href="https://source.jborgarts.com/GitFriends/source/bulma/css/bulma.css">
12+
</head>
13+
14+
<body onload="topMenu_load(), user_load()">
15+
<header>
16+
<div id="topMenu">
17+
<!--./menus.js-->
18+
</div>
19+
</header>
20+
<section style="padding: 10%;">
21+
<!--Profile Content-->
22+
<div class="card">
23+
<div class="card-content">
24+
<div class="media">
25+
<div class="media-left">
26+
<figure class="image is-48x48">
27+
<img
28+
src=""
29+
alt="User icon"
30+
id="profileIcon"
31+
/>
32+
</figure>
33+
</div>
34+
<div class="media-content">
35+
<p id="profileName" class="title is-4"> <!--Controlled by profile script--></p>
36+
<p id="profileGit" class="subtitle is-6"> <!--Controlled by profile script--></p>
37+
</div>
38+
</div>
39+
40+
<div class="content">
41+
<div id="profileTagline">
42+
<!--Controlled by profile script-->
43+
</div>
44+
<div id="profileContent">
45+
<!--Controlled by profile script-->
46+
</div>
47+
48+
<br />
49+
<!--Sand Box Begin-->
50+
51+
<!--This is your zone. Highlight projects; make a mini webpage; code a minigame;
52+
It is up to you!-->
53+
54+
<!--MUST ABIDE BY COMMUNITY AND GITHUB GUIDELINES-->
55+
56+
<!--Sand Box End-->
57+
<br />
58+
<!--DO NOT EDIT-->
59+
<!--The below time stamp will be updated to match the time of profile approval/upload-->
60+
<time id="profileTime"></time>
61+
</div>
62+
</div>
63+
<footer class="card-footer" id="profileLinks">
64+
65+
<!--Controlled by profile script-->
66+
67+
</footer>
68+
</div>
69+
</section>
70+
71+
</body>
72+
73+
74+
<script type="text/javascript">
75+
function topMenu(){
76+
77+
//Menu Row 1//
78+
document.getElementById("topMenu").innerHTML = '<div class="btn-group" style="padding-bottom: 15px" role="group" aria-label="Basic example"><a href="./memelab.html" type="button" class="btn btn-dark">Border Text</a><a href="./memelab-classic.html" type="button" class="btn btn-dark">Classic</a><a href="./memelab-1x2.html" type="button" class="btn btn-dark">1x2</a> <!-- is not ready <a href="./memelab-2x1.html" type="button" class="btn btn-dark">2x1</a>-->'
79+
80+
81+
82+
}
83+
</script>
84+
</html>

profiles/@Cartoomb/userload.js

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
function user_load(){
2+
/*Edit below line to update your profile's icon*/
3+
document.getElementById("profileIcon").src = 'https://avatars.githubusercontent.com/u/136763548?s=200&v=4'
4+
5+
/*Edit below line to update your profile's name*/
6+
document.getElementById("profileName").innerHTML = 'Cartoomb'
7+
8+
/*Edit below line to update your profile's Git handle*/
9+
document.getElementById("profileGit").innerHTML = '@Cartoomb'
10+
11+
/*Edit below line to update your profile's tagline*/
12+
document.getElementById("profileTagline").innerHTML = 'Digging up unheard stories'
13+
14+
/*Edit below line to update your profile's body content*/
15+
document.getElementById("profileContent").innerHTML = 'There is always an unheard story, so let us tell them together.'
16+
17+
/*Edit the below section to update your profile's links*/
18+
/*DO NOT CHANGE LINKED SERVICES. THIS MAY BREAK FEATURES OR RESULT IN YOUR PROFILE NOT BEING PUBLISHED*/
19+
/*Service links*/
20+
var githubLink = 'https://github.com/Cartoomb'
21+
var gitlabLink = ''
22+
var gitLink = ''
23+
var xLink = 'https://twitter.com/cartoomb'
24+
var instagramLink = 'https://www.instagram.com/cartoomb/'
25+
26+
/*Service Vars*/
27+
/*DO NOT EDIT LINK ICONS*/
28+
var githubIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-github.svg'
29+
var gitlabIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-gitlab.svg'
30+
var gitIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-git.svg'
31+
var xIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-x.svg'
32+
var instagramIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-instagram.svg'
33+
34+
/*Edit the below innerHTML function to update your profile's links*/
35+
document.getElementById("profileLinks").innerHTML = '<a href="'+githubLink+'" class="card-footer-item"> <img src="'+githubIcon+'" width="50px" alt="Social Button"> </a><a href="'+xLink+'" class="card-footer-item"> <img src="'+xIcon+'" width="50px" alt="Social Button"> </a><a href="'+instagramLink+'" class="card-footer-item"> <img src="'+instagramIcon+'" width="50px" alt="Social Button"> </a>'
36+
/*<a href="'+[REPLACE WITH SERVICE VAR]+'" class="card-footer-item"> <img src="'+[REPLACE WITH SERVICE ICON]+'" width="50px" alt="Social Button"> </a>*/
37+
38+
39+
40+
/*Below line will be updated by admin staff to reflect profile creation/update time*/
41+
document.getElementById("profileTime").innerHTML = '5:22 PM - 15 Mar 2025'
42+
43+
}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>GitFriends</title>
6+
<link rel="shortcut icon" href="https://source.jborgarts.com/GitFriends/source/icons/git-fork.svg">
7+
<!--GitFriends Profile-->
8+
<script src="https://source.jborgarts.com/GitFriends/source/menus.js"></script>
9+
<script src="https://source.jborgarts.com/GitFriends/source/icons.js"></script>
10+
<script src="./userload.js"></script>
11+
<link rel="stylesheet" href="https://source.jborgarts.com/GitFriends/source/bulma/css/bulma.css">
12+
</head>
13+
14+
<body onload="topMenu_load(), user_load()">
15+
<header>
16+
<div id="topMenu">
17+
<!--./menus.js-->
18+
</div>
19+
</header>
20+
<section style="padding: 10%;">
21+
<!--Profile Content-->
22+
<div class="card">
23+
<div class="card-content">
24+
<div class="media">
25+
<div class="media-left">
26+
<figure class="image is-48x48">
27+
<img
28+
src=""
29+
alt="User icon"
30+
id="profileIcon"
31+
/>
32+
</figure>
33+
</div>
34+
<div class="media-content">
35+
<p id="profileName" class="title is-4"> <!--Controlled by profile script--></p>
36+
<p id="profileGit" class="subtitle is-6"> <!--Controlled by profile script--></p>
37+
</div>
38+
</div>
39+
40+
<div class="content">
41+
<div id="profileTagline">
42+
<!--Controlled by profile script-->
43+
</div>
44+
<div id="profileContent">
45+
<!--Controlled by profile script-->
46+
</div>
47+
48+
<br />
49+
<!--Sand Box Begin-->
50+
51+
<!--This is your zone. Highlight projects; make a mini webpage; code a minigame;
52+
It is up to you!-->
53+
54+
<!--MUST ABIDE BY COMMUNITY AND GITHUB GUIDELINES-->
55+
56+
<!--Sand Box End-->
57+
<br />
58+
<!--DO NOT EDIT-->
59+
<!--The below time stamp will be updated to match the time of profile approval/upload-->
60+
<time id="profileTime"></time>
61+
</div>
62+
</div>
63+
<footer class="card-footer" id="profileLinks">
64+
65+
<!--Controlled by profile script-->
66+
67+
</footer>
68+
</div>
69+
</section>
70+
71+
</body>
72+
73+
74+
<script type="text/javascript">
75+
function topMenu(){
76+
77+
//Menu Row 1//
78+
document.getElementById("topMenu").innerHTML = '<div class="btn-group" style="padding-bottom: 15px" role="group" aria-label="Basic example"><a href="./memelab.html" type="button" class="btn btn-dark">Border Text</a><a href="./memelab-classic.html" type="button" class="btn btn-dark">Classic</a><a href="./memelab-1x2.html" type="button" class="btn btn-dark">1x2</a> <!-- is not ready <a href="./memelab-2x1.html" type="button" class="btn btn-dark">2x1</a>-->'
79+
80+
81+
82+
}
83+
</script>
84+
</html>
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
function user_load(){
2+
/*Edit below line to update your profile's icon*/
3+
document.getElementById("profileIcon").src = 'https://avatars.githubusercontent.com/u/53627732?s=200&v=4'
4+
5+
/*Edit below line to update your profile's name*/
6+
document.getElementById("profileName").innerHTML = 'Wave Discipleship Ministries'
7+
8+
/*Edit below line to update your profile's Git handle*/
9+
document.getElementById("profileGit").innerHTML = '@wave-digital-ministries'
10+
11+
/*Edit below line to update your profile's tagline*/
12+
document.getElementById("profileTagline").innerHTML = 'Making waves for His Kingdom.'
13+
14+
/*Edit below line to update your profile's body content*/
15+
document.getElementById("profileContent").innerHTML = ''
16+
17+
/*Edit the below section to update your profile's links*/
18+
/*DO NOT CHANGE LINKED SERVICES. THIS MAY BREAK FEATURES OR RESULT IN YOUR PROFILE NOT BEING PUBLISHED*/
19+
/*Service links*/
20+
var githubLink = 'https://github.com/wave-digital-ministries'
21+
var gitlabLink = ''
22+
var gitLink = ''
23+
var xLink = 'https://x.com/wdm_net'
24+
var instagramLink = 'https://www.instagram.com/wdm_net/'
25+
26+
/*Service Vars*/
27+
/*DO NOT EDIT LINK ICONS*/
28+
var githubIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-github.svg'
29+
var gitlabIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-gitlab.svg'
30+
var gitIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-git.svg'
31+
var xIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-x.svg'
32+
var instagramIcon = 'https://source.jborgarts.com/GitFriends/source/icons/brand-instagram.svg'
33+
34+
/*Edit the below innerHTML function to update your profile's links*/
35+
document.getElementById("profileLinks").innerHTML = '<a href="'+githubLink+'" class="card-footer-item"> <img src="'+githubIcon+'" width="50px" alt="Social Button"> </a><a href="'+xLink+'" class="card-footer-item"> <img src="'+xIcon+'" width="50px" alt="Social Button"> </a><a href="'+instagramLink+'" class="card-footer-item"> <img src="'+instagramIcon+'" width="50px" alt="Social Button"> </a>'
36+
/*<a href="'+[REPLACE WITH SERVICE VAR]+'" class="card-footer-item"> <img src="'+[REPLACE WITH SERVICE ICON]+'" width="50px" alt="Social Button"> </a>*/
37+
38+
39+
40+
/*Below line will be updated by admin staff to reflect profile creation/update time*/
41+
document.getElementById("profileTime").innerHTML = '5:22 PM - 15 Mar 2025'
42+
43+
}

source/gitfriends_algorithm.js

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*GitFriends Profile Algorithm*/
22

3-
var profiles = Array('@JacobBorgProgramming','@example');
3+
var profiles = Array('@JacobBorgProgramming','@wave-digital-ministries','@Cartoomb');
44
var profileDirectory = 'https://source.jborgarts.com/GitFriends/profiles/'
55

66

@@ -20,10 +20,22 @@ function profileRec(){
2020
document.getElementById("profileLink_1").innerHTML = profiles_selected_1
2121
}
2222

23-
if (profiles_selected_1=='@example') {
24-
var profileName = 'Jake'
25-
var profileIcon = 'https://avatars.githubusercontent.com/u/48691704?v=4'
26-
var profileTagline = 'Just a chill guy screaming (Programming) into the void (Cyberspace).'
23+
if (profiles_selected_1=='@wave-digital-ministries') {
24+
var profileName = 'Wave Discipleship Ministries'
25+
var profileIcon = 'https://avatars.githubusercontent.com/u/53627732?s=200&v=4'
26+
var profileTagline = 'Making waves for His Kingdom.'
27+
document.getElementById("profileIcon_1").src = profileIcon
28+
document.getElementById("profileName_1").innerHTML = profileName
29+
document.getElementById("profileGit_1").innerHTML = profiles_selected_1
30+
document.getElementById("profileTagline_1").innerHTML = profileTagline
31+
document.getElementById("profileLink_1").href = profileDirectory+profiles_selected_1
32+
document.getElementById("profileLink_1").innerHTML = profiles_selected_1
33+
}
34+
35+
if (profiles_selected_1=='@Cartoomb') {
36+
var profileName = 'Cartoomb'
37+
var profileIcon = 'https://avatars.githubusercontent.com/u/136763548?s=200&v=4'
38+
var profileTagline = 'Digging up unheard stories'
2739
document.getElementById("profileIcon_1").src = profileIcon
2840
document.getElementById("profileName_1").innerHTML = profileName
2941
document.getElementById("profileGit_1").innerHTML = profiles_selected_1

0 commit comments

Comments
 (0)