-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
78 lines (65 loc) · 2.86 KB
/
faq.html
File metadata and controls
78 lines (65 loc) · 2.86 KB
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
70
71
72
73
74
75
76
77
78
---
title: FAQ
layout: default
---
<section class="section">
<div class="container">
<div class="content">
<h1 data-i18n="FAQ title">Frequently Asked Questions (FAQ)</h1>
<p data-i18n="FAQ intro">Here you can find answers to common questions about DESI High.</p>
</div>
{% for faq in site.faq %}
<hr>
<a class="level js-modal-trigger" data-target="modal-{{ forloop.index }}">
<div class="level-left">
<div class="level-item">
<p class="title is-4" data-i18n="{{ faq.tag }}/question">{{ faq.question }}</p>
<span class="icon is-large is-hidden-desktop">
<i class="fas fa-lg fa-chevron-right"></i>
</span>
</div>
</div>
<div class="level-right is-hidden-mobile">
<div class="level-item">
<span class="icon is-large">
<i class="fas fa-lg fa-chevron-right"></i>
</span>
</div>
</div>
</a>
{% endfor %}
<hr>
<a class="button is-info is-outlined" href="https://github.com/DESIHIGH/desihigh/discussions" target="_blank" >
<span class="icon is-small">
<i class="fas fa-question"></i>
</span>
<span data-i18n="Ask a question">Ask a question</span>
</a>
</div>
</section>
{% for faq in site.faq %}
<div class="modal" id="modal-{{ forloop.index }}">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title" data-i18n="{{ faq.tag }}/question">{{ faq.question }}</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<div data-i18n="{{ faq.tag }}/answer">
{{ faq.content | markdownify }}
</div>
</section>
</div>
</div>
{% endfor %}
<!-- <h2>What is DESI High?</h2>
<p>DESI High is an educational initiative that allows high school students to engage with real astronomical data from the Dark Energy Spectroscopic Instrument (DESI).</p>
<h2>How can I get started?</h2>
<p>You can start by visiting our <a href="quickstart.html">Quickstart Guide</a>, which will walk you through the basics of using DESI data.</p>
<h2>Do I need prior experience in programming?</h2>
<p>No prior experience is required! We provide introductory materials to help you learn Python and data analysis techniques.</p>
<h2>Who can participate?</h2>
<p>DESI High is open to all high school students interested in astronomy and data science.</p>
<h2>How can teachers get involved?</h2>
<p>Teachers can find resources and contact us through our <a href="contact.html">Contact Page</a>.</p> -->