-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
69 lines (62 loc) · 4.63 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Julia Hacktoberfest 2022</title>
<link rel="stylesheet" href="style.css">
<script src="feather.min.js"></script>
</head>
<body>
<div id="content">
<h1>Julia Hacktoberfest</h1>
<div id="resources">
<h2>Useful Resources</h2>
<ul>
<!--<li><a target="_blank" rel="noopener" href="https://julialang.org/contribute/contributing_for_everyone/">Everyone can contribute to the Julia Ecosystem</a></li>-->
<li><a target="_blank" rel="noopener" href="https://julialang.org/contribute/">Julia Ecosystem Contribution Pathways</a></li>
<li><a target="_blank" rel="noopener" href="https://kshyatt.github.io/post/firstjuliapr/">Making a first Julia pull request</a> by <a target="_blank" rel="noopener" href="https://twitter.com/kslimes">Katharine Hyatt</a></li>
<li><a target="_blank" rel="noopener" href="https://github.com/miguelraz/StartHere.jl">StartHere.jl</a> by <a target="_blank" rel="noopener" href="https://twitter.com/miguelraz_">Miguel Raz Guzmán</a></li>
<li><a target="_blank" rel="noopener" href="https://www.youtube.com/watch?v=QVmU29rCjaA">Developing Julia Packages</a> by <a target="_blank" rel="noopener" href="https://twitter.com/chrisrackauckas">Chris Rackauckas</a></li>
<li><a target="_blank" rel="noopener" href="https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source">An Introduction to Open Source</a> by <a target="_blank" rel="noopener" href="https://twitter.com/lisaironcutter">Lisa Tagliaferri</a> and <a target="_blank" rel="noopener" href="https://twitter.com/lynmuldrow">Lyn Muldrow</a></li>
<li><a target="_blank" rel="noopener" href="https://computationalthinking.mit.edu/Spring21/how_to_collaborate_on_software/">How (and why) to use GitHub</a> by <a target="_blank" rel="noopener" href="https://github.com/fonsp">Fons van der Plas</a> and <a target="_blank" rel="noopener" href="https://math.mit.edu/directory/profile.php?pid=63">Alan Edelman</a></li>
</ul>
</div>
<h2>Values</h2>
<p>Please familiarise yourself with the <a target="_blank" rel="noopener" href="https://hacktoberfest.com/participation/#values">Hacktoberfest Values</a> and the <a target="_blank" rel="noopener" href="https://julialang.org/community/standards/">Julia Community Standards</a>!</p>
<h2>Projects</h2>
<p>
The following {{len .}} Julia projects are participating in Hacktoberfest:
</p>
<div id="repo-container">
{{range .}}
<div class="repo">
<div class="repo-headers">
<div class="repo-name"><h3><a target="_blank" rel="noopener" href="{{.URL}}">{{.Name}}</a></h3></div>
<div class="repo-description"><p>{{.Description}}</p></div>
</div>
<div class="repo-buttons">
<div class="repo-button">
<span><a target="_blank" rel="noopener" href="{{.URL}}/issues?q=is%3Aopen+is%3Aissue+label%3Ahacktoberfest"><i data-feather="alert-circle"></i></a></span>
<span class="repo-button-text"><a target="_blank" rel="noopener" href="{{.URL}}/issues?q=is%3Aopen+is%3Aissue+label%3Ahacktoberfest">{{.IssueCount}} Hacktoberfest Issue(s)</a></span>
</div>
<div class="repo-button">
<span><i data-feather="activity"></i></span>
<span class="repo-button-text">Last updated {{.LastUpdated}}</span>
</div>
</div>
</div>
{{end}}
</div>
<div id="gh-search-fallback">
<span><i data-feather="github"></i></span>
<span id="gh-search-fallback-text"><a target="_blank" rel="noopener" href="https://github.com/search?q=label:hacktoberfest+language:julia+state:open&s=updated">Search #Hacktoberfest issues on GitHub.</a></span>
</div>
<footer>
<p>Last updated: {{now}}. This website is hosted on <a target="_blank" rel="noopener" href="https://pages.github.com/">GitHub Pages.</a> See their <a target="_blank" rel="noopener" href="https://docs.github.com/en/github/site-policy/github-privacy-statement#github-pages">Privacy Statement</a> to find out what information is being collected to operate this service. Icons: <a target="_blank" rel="noopener" href="https://feathericons.com/">Feather</a> by Cole Bemis. Headings font: <a target="_blank" rel="noopener" href="https://github.com/cormullion/juliamono">JuliaMono</a> by cormullion. Background inspired by <a target="_blank" rel="noopener" href="https://generativeartistry.com/tutorials/circle-packing/">Generative Artistry</a> and generated using <a target="_blank" rel="noopener" href="https://github.com/JuliaGraphics/Luxor.jl">Luxor.jl</a> by cormullion.</p>
</footer>
</div>
<script>
feather.replace()
</script>
</body>
</html>