-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
153 lines (143 loc) · 6.03 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
---
layout: default
---
<div class="main-container container">
<!-- Page Header -->
<header role="banner" id="page-header">
</header> <!-- /#page-header -->
<div class="row">
<section class="col-sm-12">
<!-- Anchor for Main Content -->
<a id="main-content"></a>
<div class="region region-content">
<!-- Carousel Section -->
<section id="block-carousel" class="block block-views">
<div
class="view view-carousel view-id-carousel view-display-id-block view-dom-id-804e2c6d032af873bc963f4d40b4b8b1">
<img typeof="foaf:Image" class="img-responsive"
src="{{'/assets/images/CalConnectEventTBD.jpg' | relative_url}}" alt="" draggable="false">
</div>
</section>
<!-- Welcome Section -->
<section id="block-system-main" class="block block-system">
<article id="node-523" class="node node-page" about="{{'/welcome' | relative_url }}" typeof="foaf:Document">
<header>
<!-- Hidden metadata for SEO -->
<span property="dc:title" content="Welcome to CalConnect" class="rdf-meta element-hidden"></span>
<span property="sioc:num_replies" content="0" datatype="xsd:integer"
class="rdf-meta element-hidden"></span>
</header>
<div class="field field-name-body field-type-text-with-summary field-label-hidden">
<div class="field-items">
<div class="field-item even" property="content:encoded">
<h1>Welcome to CalConnect</h1>
<p>
Welcome to CalConnect<sup>SM</sup>. We are a non-profit partnership between developers,
vendors and users of collaboration tools.
<em><a href="about">More About CalConnect ...</a></em>
</p>
</div>
</div>
</div>
<footer></footer>
</article>
</section>
<!-- "CalConnect For..." Section -->
<section id="calconnect-for" class="block block-block">
<h2 class="block-title">CalConnect For...</h2>
<ul id="calconnect-for-content">
<li>
<a href="{{'/membership/why-join' | relative_url}}">
<img src="{{'/assets/images/glyphGears.png' | relative_url}}" alt=""><br>
Developers
</a>
</li>
<li>
<a href="{{'/membership/why-join' | relative_url}}">
<img src="{{'/assets/images/glyphGroup.png' | relative_url}}" alt=""><br>
Product<br>Managers
</a>
</li>
<li>
<a href="{{'/about/liaisons-and-relationships' | relative_url}}">
<img src="{{'/assets/images/glyphCheck.png' | relative_url}}" alt=""><br>
Standards<br>Community
</a>
</li>
</ul>
</section>
<!-- Highlighted Post Section -->
<section id="fp-highlight" class="block block-views">
<div
class="view view-news-and-highlights view-id-news_and_highlights view-display-id-block_fp_highlight view-dom-id-78daabeb47c2896cf027b407d22849df">
<div class="view-content">
{% assign sorted_posts = site.posts | sort: 'date' | reverse %}
{% for post in sorted_posts limit:1 %}
<div>
<div class="views-field views-field-nothing">
<span class="field-content">
<a href="{{ post.url | relative_url }}">
<h2>{{ post.title }}</h2>
</a>
<p>{{ post.excerpt }}</p>
<a href="{{ post.url | relative_url }}" class="more-link">More...</a>
</span>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!-- "Connect with Us" Section -->
<section id="block-fp-lists-new" class="block block-block">
<h2 class="block-title">Connect with Us</h2>
<ul>
<li>
<a href="{{'/resources/discussion-lists' | relative_url }}">
<img alt="" src="{{'/assets/images/CalConnectLists.png' | relative_url}}">
Join our Discussion Lists
</a>
</li>
<li>
<a href="https://twitter.com/CalConnect">
<img alt="" src="{{'/assets/images/twitter.png' | relative_url}}">
Follow @CalConnect
</a>
</li>
<li>
<a href="{{'/events/calendars' | relative_url }}">
<img alt="" src="{{'/assets/images/CalConnectCalendars.png' | relative_url}}">
CalConnect Calendars
</a>
</li>
</ul>
</section>
<!-- Latest Developments Section -->
<section id="block-views-news-and-highlights-block-1" class="block block-views">
<h2 class="block-title">Latest Developments</h2>
<div class="view view-news-and-highlights view-id-news_and_highlights view-display-id-block_1 fp-listing">
<div class="view-content">
<div class="item-list">
<ul>
{% assign sorted_posts = site.posts | sort: 'date' | reverse %}
{% for post in sorted_posts limit:5 %}
<li class="views-row">
<div class="views-field views-field-title">
<span class="field-content">
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</span>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="view-footer">
<a href="{{'/news' | relative_url}}" class="btn btn-primary">All News & Highlights</a>
</div>
</div>
</section>
</div>
</section>
</div>
</div>