๐Ÿ“ฆ wrussell1999 / dsc-guestbook

๐Ÿ“„ index.html ยท 71 lines
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---
title: GitHub Workshop Guestbook
---
<!DOCTYPE html>
<html>

<head>
    <link rel="stylesheet" type="text/css" href="css/home.css"/>
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
    <link rel="shortcut icon" href="images/favicon.ico"/>
    <title>{{ page.title }}</title>
</head>

<body>

    <section id="guestbook">
        <div class="container">
            <div class="section-header">
                <h1 role="section-heading">{{site.workshop.name}} Workshop Guestbook</h1>
                <h3><a href="{{site.workshop.github}}">Sign the guestbook</a></h3>
            </div>

            <div class="guestbook-content">
              {% for guest in site.guestbook %}
                <div class="guestbook-item">
                    <div class="guestbook-profile">
                        <img src="{{guest.image}}" alt="{{guest.name}}"/>
                        <span class="emoji">{{guest.emoji}}</span>
                    </div>
                    <h2>{{guest.name}}</h2>
                    <h4>{{guest.message}}</h4>
                    <hr/>
                    <div class="guestbook-social">

                      {% if guest.twitter %}
                        <a href="https://twitter.com/{{guest.twitter}}" alt="Twitter"><i class="fab fa-twitter"></i></a>
                      {% endif %}

                      {% if guest.github %}
                        <a href="https://github.com/{{guest.github}}" alt="GitHub"><i class="fab fa-github"></i></a>
                      {% endif %}

                      {% if guest.web %}
                        <a href="http://{{guest.web}}" alt="Website"><i class="fas fa-globe"></i></a>
                      {% endif %}

                    </div>
                </div>
              {% endfor %}
          </div>
        </div>
    </section>


    <section class="join" id="join-large">
        <div class="container">
            <div class="join-content">
                <h3 role="section-heading">Sign the workshop guestbook!</h3>
                <div class="flag">
                        <img src="images/flag.png" alt="">
                </div>
                <a href="{{site.workshop.github}}" class="button button-white">Sign the guestbook!</a>
            </div>
        </div>
    </section>


</body>

</html>