-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnews.html
132 lines (106 loc) · 3 KB
/
news.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
---
---
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=https://connexta.com/">
<title>Connexta: News</title>
{% include head.html %}
</head>
<body>
<div class="content-wrap">
{% include header.html %}
<section class="graphic-title-heading news-graphic-heading medium">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>News</h1>
<h3 style="color:white">Supporting mission critical services</h3>
</div>
</div>
</div>
</section>
<section class="news-articles medium white">
<div class="container">
<div class="row">
<div class="col-sm-8">
{% for post in site.posts %}
<div class="article">
<h2 class="news-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="publish-date">{{ post.date | date: '%B %d, %Y' }}</span>
<p>{{ post.excerpt }}</p>
<p><a href="{{ post.url }}">Read More</a></p>
</div>
{% endfor %}
</div>
<div class="col-sm-4">
<div class="sidebar-nav">
<!-- <h2>News categories</h2> -->
{% for category in site.categories %}
<h2> {{ category | first }} </h2>
<ul class="sidebar-section">
{% for post in category.last %}
<li class="list-group-item"><a class="menu-item" href="{{ post.url }}">{{ post.title | truncatewords:9}}</a></li>
{% endfor %}
</ul>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</section>
<!--
<h2>SIDEBAR STUFF</h2>
{% for post in site.posts %}
{% unless post.categories contains 'test' %}
<li {%- if page.title == post.title %} class="current" {%- endif %}>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<h4>Other News</h4>
<ul>
{% for post in site.posts %}
{% unless post.categories contains 'release' %}
<li {%- if page.title == post.title %} class="current" {%- endif %}>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<ul>
<li {%- if page.title == 'News' %} class="current" {%- endif %}>
<a href="/news/">All News</a>
</li>
<li {%- if page.title == 'Releases' %} class="current" {%- endif %}>
<a href="/news/releases/">Jekyll Releases</a>
</li>
</ul>
<h4>Recent Releases</h4>
<ul>
{% for post in site.categories.release limit:5 %}
<li {%- if page.title == post.title %} class="current" {%- endif %}>
<a href="{{ post.url }}">Version {{ post.version }}</a>
</li>
{% endfor %}
<li>
<a href="/docs/history/">History »</a>
</li>
</ul>
<h4>Other News</h4>
<ul>
{% for post in site.posts %}
{% unless post.categories contains 'release' %}
<li {%- if page.title == post.title %} class="current" {%- endif %}>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
-->
{% include footer.html %}
</div><!-- /content-wrap -->
</body>
</html>