forked from Gaohaoyang/gaohaoyang.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (148 loc) · 6.88 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
---
layout: default
---
<div class="page clearfix" index>
<div class="left">
<div class="container">
<div class="row">
<h1><em><a href="https://docs.google.com/forms/d/e/1FAIpQLSdi9QkFtR3MKfytn0fXSLzFDBrxweYrDoSXVJUMH8B5W7MR3A/viewform">Sign up for our OSM Mapathons!</a></em></h1>
</div>
<div class="row">
<h1>Welcome!</h1>
<p>
As part of the <a href="https://www.osgeo.org/initiatives/geo-for-all/">
OSGeo "Geo for All" initiative</a>, we are building a community
of open source geospatial software users here at LSU. Anyone is welcome to join, just
<a href="https://forms.gle/2fyic4VBmqvQhwUL7">get on our mailing list</a>
to get details ahead of each meeting.
</p>
<p>
If you are interested in showing your work, we'd love to have you
<a href="https://forms.gle/dKjcLWRzbwkfYVFz9">give a short presentation</a>.
</p>
<p>
Through the spring semester of 2021, we meet <strong>each Friday at 12:00pm</strong> (central time) for one hour.
We alternate between facilitating GIs troubleshooting and help sessions with presentations.
We record and post presenations here, for future viewing.
</p>
</div>
<div class="row">
<h2>Past Presentations</h2>
</div>
<div class="row">
{% for post in site.posts %}
{% if post.layout == "presentation" and post.date < site.time %}
<div class="col-sm-12 col-md-12 col-lg-6">
<div class="presentation-tile clearfix">
{{post.date | date: "%F"}}
<a href="{{ post.url | prepend: site.baseurl }}"><h3>{{ post.title }}</h3></a>
{% if post.image %}
<a href="{{ post.url | prepend: site.baseurl }}"><img src="{{site.url}}/{{post.image}}"></a>
{% endif %}
<p>{{post.excerpt}} <em>{% if post.google-slides-link %}slideshow{% endif %}{% if post.video-link %}video recording{% endif %}</em></p>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<hr>
<div class="row">
<h2>Posts</h2>
<ul style="list-style: none; padding-left: 0px;">
{% for post in site.posts %}
{% if post.layout != "presentation" %}
<li>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<div class="label">
<div class="label-card">
<i class="fa fa-calendar"></i>{{ post.date | date: "%F" }}
</div>
<div class="label-card">
{% if post.author %}<i class="fa fa-user"></i>{{ post.author }}
{% endif %}
</div>
<div class="label-card">
{% if page.meta %}<i class="fa fa-key"></i>{{ page.meta }} {% endif %}
</div>
<div class="label-card">
{% include category.html %}
</div>
<div class="label-card">
{% include tag.html %}
</div>
</div>
<div class="excerpt">
{{post.excerpt}}...
</div>
<div class="read-all">
<a href="{{ post.url | prepend: site.baseurl }}">Continue reading <i class="fa fa-arrow-right"></i></a>
</div>
<hr>
</li>
{% endif %}
{% endfor %}
</ul>
<!-- Pagination links -->
<!-- DISABLE PAGINATOR FOR NOW -->
<!--
<div class="pagination">
{% if paginator.previous_page %}
<a href="/index.html" class="previous"><i class="fa fa-angle-double-left"></i></a>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="previous"><i class="fa fa-angle-left"></i></a>
{% else %}
<span class="previous disable"><i class="fa fa-angle-double-left"></i></span>
<span class="previous disable"><i class="fa fa-angle-left"></i></span>
{% endif %}
<span class="page_number ">{{ paginator.page }}/{{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next"><i class="fa fa-angle-right"></i></a>
<a href="{{ site.baseurl }}/page{{ paginator.total_pages }}" class="next"><i class="fa fa-angle-double-right"></i></a>
{% else %}
<span class="next disable"><i class="fa fa-angle-right"></i></span>
<span class="next disable"><i class="fa fa-angle-double-right"></i></span>
{% endif %}
</div>
-->
</div>
</div>
</div>
<!-- <button class="anchor"><i class="fa fa-anchor"></i></button> -->
<div class="right">
<div class="wrap">
{% include main-sidebar-content.html %}
<!-- Remove Categories and Tags sidebars: not super useful and need style updates to be web accessibility. -->
<!--
<div class="side ">
<div>
<i class="fa fa-th-list"></i>
Categories
</div>
<ul class="content-ul" cate>
{% for category in site.categories %}
<li>
<a href="{{ root_url }}/{{ site.category_dir }}#{{ category | first }}" class="categories-list-item" cate="{{ category | first }}">
<span class="name">
{{ category | first }}
</span>
<span class="badge">{{ category | last | size }}</span>
</a>
</li>
{% endfor %}
</ul>
</div>
{% include side-bar-tags.html %}
<div class="side">
<div>
<i class="fa fa-external-link"></i>
Links
</div>
<ul class="content-ul">
</ul>
</div> -->
</div>
</div>
</div>
<!-- <script src="{{ "/js/scroll.min.js " | prepend: site.baseurl }}" charset="utf-8"></script> -->
<!-- <script src="{{ "/js/pageContent.js " | prepend: site.baseurl }}" charset="utf-8"></script> -->