This repository was archived by the owner on Mar 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (144 loc) · 6.53 KB
/
index.html
File metadata and controls
154 lines (144 loc) · 6.53 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
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
---
permalink: "/"
layout: jumbotron
description: >
The ODP project has been established to produce an open-source, cross-platform set of application programming
interfaces (APIs) for the networking software defined data plane.
title: Open Data Plane
jumbotron:
triangle-divider: true
animation: fade
title: The OpenDataPlane Project
background-image: /assets/images/odp-background-image.jpg
description: >-
The ODP project has been established to produce an open-source, cross-platform set of application programming interfaces (APIs) for the networking software defined data plane.
buttons:
- title: Latest LTS Release
url: https://github.com/Linaro/odp/releases/tag/v1.18.0.1_tigermoth_rc3
class: btn btn-primary btn-lg fade-in-three bottom-border-five
---
<div class="container-fluid">
<div class="row">
<div class="container main">
<div class="col-md-6" markdown="1">
<strong>What is OpenDataPlane?</strong>
<p>
The ODP project has been established to produce an open-source, cross-platform set of application programming interfaces (APIs) for the networking data plane.
</p>
<br/>
<a href="https://git.linaro.org/lng/odp.git/blob_plain/HEAD:/doc/images/overview.svg">
<img src="/assets/images/odp-overview.png" alt="OpenDataPlane Overview" class="img-responsive"/>
</a>
</div>
<div class="col-md-6">
<div class="row" id="technical-overview">
<div class="col-md-3">
<a href="/about/">
<img src="{% asset_path 'technical-overview.png' %}" class="img-responsive" alt="OpenDataPlane Technical Overview Icon"/>
</a>
</div>
<div class="col-md-9">
<p>
<strong>
Technical Overview
</strong>
</p>
<p>Learn more about the goals of the ODP project including in-depth technical review and details in our presentation.</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-3">
<a href="/about/">
<img src="{% asset_path 'get-involved.png' %}" class="img-responsive" alt="Get Involved with OpenDataPlane Icon"/>
</a>
<a href="/mailing-list/">
<img src="{% asset_path 'mailing-list.png' %}" class="img-responsive" alt="Mailing List OpenDataPlane Icon"/>
</a>
</div>
<div class="col-md-9">
<p>
<strong>
Get Involved
</strong>
</p>
<p>Please join us on on the mailing list or on Tuesday’s regular public meeting at 15:00 UTC at <a href="http://meetings.opendataplane.org/">meetings.opendataplane.org</a>.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-6 odp-home-page-panel">
<div class="row">
<div class="col-xs-3">
<a href="https://www.opendataplane.org/odp-long-term-support-lts-release/">
<img src="{% asset_path 'monarchs-odp.png' %}" class="img-responsive center-block" alt="OpenDataPlane Stable Version Icon"/>
</a>
</div>
<div class="col-xs-9 text-center">
<h3>OpenDataPlane</h3>
<br/>
<a href="https://www.opendataplane.org/odp-long-term-support-lts-release/" class="btn btn-default center-block">Long Term Stable</a>
</div>
</div>
</div>
<div class="col-sm-6 odp-home-page-panel">
<div class="row">
<div class="col-xs-3">
<a href="https://www.opendataplane.org/odp-long-term-support-lts-release/">
<img src="{% asset_path 'odp-contributing.png' %}" class="img-responsive center-block" alt="Contribute to OpenDataPlane Icon"/>
</a>
</div>
<div class="col-xs-9">
<h3 class="text-center">Contribute to OpenDataPlane</h3>
<p>To contribute to ODP there is a contributor agreement:</p>
<ul>
<li><a href="/contributor/individual/">Individual</a></li>
<li><a href="/contributor/corporate/">Corporate</a></li>
</ul>
</div>
</div>
</div>
<hr>
</div>
</div>
</div>
<div class="row alt-row">
<div class="container">
<div class="row recent_posts">
<h3 class="text-center">Latest Updates</h3>
{% for blog in site.posts limit: 3 %}
<div class="blog_container col-md-4">
<div class="recent_post">
<a href="{{blog.url}}">
<div class="recent_post_image">
<img class="recent_post_image" src="
{% if blog.image.featured %}
{% asset_path '{{blog.image.name}}' %}
{% else %}
{% asset_path 'placeholder.png' %}
{% endif %}
"/>
</div>
</a>
<div class="recent_post_desc">
<a href="{{blog.url}}">
<h3 class="recent_post_title">{{blog.title | truncate: 40 | upcase}}</h3>
</a>
<small><em>{{blog.date | date: "%A, %B %-d, %Y" }}</em></small>
</div>
<div class="recent_post_more">
<a href="{{blog.url}}">> Read More</a>
</div>
</div>
</div>
{% endfor %}
</div>
<a href="/blog/" class="center-block more-news-button">More News</a>
</div>
</div>
</div>