2018-11-08 cumulative release.
[pgweb/local.git] / templates / index.html
blob218a23a49310ae1bdcd045c740895179851045bc
1 {%extends "base/base.html" %}
2 {% load pgfilters %}
3 {%block title%}The world's most advanced open source database{%endblock%}
4 {%block meta%}
5 <meta name="description" content="The official site for PostgreSQL, the world's most advanced open source database" />
6 {%endblock%}
7 {%block layoutblock%}
8 <div class="jumbotron jumbotron-fluid pg-jumbotron">
9 <div class="container">
10 <h1 class="text-white pg-jumbotron-header">PostgreSQL: The World's Most Advanced Open Source Relational Database</h1>
11 <div class="row">
12 <div class="col text-center">
13 <a class="btn btn-light btn-rounded" role="button" href="/download/">Download <i class="fa fa-arrow-right" aria-hidden="true"></i></a>
14 <a class="btn btn-light btn-rounded" role="button" href="/about/">New to PostgreSQL?</a>
15 </div>
16 </div>
17 </div>
18 </div>
19 <!-- END Jumbotron -->
20 <div class="container margin">
21 <!-- Start First Feature Row -->
23 <div class="row">
24 <!-- Feature -->
25 <div class="col-lg-6 feature">
26 <img src="/media/img/about/press/elephant.png" alt="PostgreSQL Elephant Logo">
27 <h2>New to PostgreSQL?</h2>
28 <div class="text">
29 <p>
30 PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development
31 that has earned it a strong reputation for reliability, feature robustness, and performance.
32 </p>
33 <p>
34 There is a wealth of information to be found describing how to <a href="{{link_root}}/download/">install</a> and <a href="{{link_root}}/docs/">use</a> PostgreSQL through the <a href="{{link_root}}/docs/">official documentation</a>.
35 The PostgreSQL community provides many helpful places to become familiar with the technology, discover how it works, and find
36 career opportunities. Reach out to the community <a href="{{link_root}}/community/">here</a>.
37 </p>
38 </div>
39 <a href="{{link_root}}/about/" title="Read More"><button type="button" class="btn btn-center btn-primary">Read More</button></a>
40 </div>
41 <!-- END Feature -->
43 <!-- Feature -->
44 <div class="col-lg-6 feature">
45 <i class="fas fa-download"></i>
46 <h2>Latest Releases</h2>
47 <div class="text">
48 <p>
49 <strong>2018-11-08 - PostgreSQL 11.1, 10.6, 9.6.11, 9.5.15, 9.4.20, and 9.3.25 Released!</strong>
50 The PostgreSQL Global Development Group has released an update to all
51 supported versions of our database system, <a href="/about/news/1905/">
52 including 11.1, 10.6, 9.6.11, 9.5.13, 9.4.20, and 9.3.25</a>. This
53 release fixes one <a href="/support/security/">security issue</a> as
54 well as bugs reported over the last three months.
55 </p>
56 <p>
57 This update is also the final release for PostgreSQL 9.3, which is now
58 end-of-life and will no longer receive any bug or security fixes.
59 If your environment still uses PostgreSQL 9.3, please make plans to
60 update to a community supported versions as soon as possible.
61 </p>
62 <ul>
63 {% for v in versions %}
64 <li class="{% cycle '' 'pg-bg-gray' %}"><b>{{ v.numtree }}.{{ v.latestminor }}</b> &middot; {{ v.reldate|date:"Y-m-d" }} &middot; <a href="/docs/{{ v.numtree }}/{{ v.relnotes }}">Notes</a></li>
65 {% endfor %}
66 </ul>
67 </div>
68 <a href="{{link_root}}/download/" title="Download"><button type="button" class="btn btn-center btn-primary">Download</button></a>
69 <a href="{{link_root}}/support/versioning/" title="Why Upgrade?"><button type="button" class="btn btn-center btn-outline-secondary" style="display: inline-block;">Why Upgrade?</button></a>
70 <a href="{{link_root}}/support/security/" title="Security"><button type="button" class="btn btn-center btn-outline-secondary" style="display: inline-block;">Security</button></a>
71 </div>
72 <!-- END Feature -->
74 </div>
75 <!-- END First Feature Row -->
76 <!-- Start Second Feature Row -->
77 <div class="row">
78 <!-- Feature -->
79 <div class="col-lg-6 feature">
80 <i class="fas fa-calendar-alt"></i>
81 <h2>Upcoming Events</h2>
82 <div class="text">
83 <ul>
84 {% for event in events %}
85 <li class="{% cycle '' 'pg-bg-gray' %} {% if not event.badged%}non-badged{% endif %}">
86 {% if event.badged %}
87 <img src="/media/img/PostgreSQL_Badge1.svg" class="community" alt="PostgreSQL Community Event">
88 {% endif %}
89 {{ event.displaydate|safe }} &middot; <a href="/about/event/{{ event.id }}/">{{ event.title }}</a>
90 </li>
91 {% endfor %}
92 </ul>
93 <p>
94 <img src="/media/img/PostgreSQL_Badge1.svg" class="community" alt="PostgreSQL Community Event">
95 indicates that an event is recognised under the <a href="/community/recognition/#conferences">community event guidelines</a> and is directly helping the PostgreSQL community.
96 </p>
97 </div>
98 <a href="/about/events/" title="Check Schedule"><button type="button" class="btn btn-center btn-primary">Check Schedule</button></a>
99 </div>
100 <!-- END Feature -->
101 <!-- Feature -->
102 <div class="col-lg-6 feature">
103 <i class="fas fa-envelope"></i>
104 <h2>Mailing Lists</h2>
105 <div class="text">
107 The PostgreSQL <a href="https://lists.postgresql.org" target="_blank">mailing lists</a> enable you to interact with active community participants on subjects related to the development of PostgreSQL, discovering how to use PostgreSQL, or learning about upcoming events and product releases.
108 </p>
110 In order to manage your mailing list subscription, you need a <a href="{{link_root}}/account/">PostgreSQL community account</a>. <a href="{{link_root}}/account/">Signing up</a> is easy and gives you direct access to the <a href="{{link_root}}/community/">global PostgreSQL community</a>.
111 </p>
112 </div>
113 <a href="https://lists.postgresql.org" title="Subscribe"><button type="button" class="btn btn-center btn-primary">Subscribe</button></a>
114 <a href="https://www.postgresql.org/list/" title="View Archives"><button type="button" class="btn btn-center btn-primary">View Archives</button></a>
115 </div>
116 <!-- END Feature -->
117 </div>
118 <!-- END Second Feature Row -->
119 </div>
120 <!-- CTA -->
121 <div class="container-fluid">
122 <div class="row">
123 <div class="col-lg-6 cta cta-3"></div>
124 <div class="col-lg-6 cta-text">
125 <h2>Learning Opportunities Ahead</h2>
126 <p class="text-left">
127 Want to learn more about PostgreSQL and help build the community? Come to one of the many events, local user groups, &amp; training sessions where you can meet experienced PostgreSQL users and enhance your database skills.
128 </p>
129 <a href="{{link_root}}/about/events/" title="Browse Events"><button type="button" class="btn btn-light btn-rounded">Browse Events</button></a>
130 <a href="{{link_root}}/community/user-groups/" title="Browse User Groups"><button type="button" class="btn btn-light btn-rounded">Browse User Groups</button></a>
131 </div>
132 </div>
133 </div>
134 <!-- END CTA -->
135 <!-- News -->
136 <div class="container">
137 <div class="row">
138 <div class="col-lg-7">
139 <h2 class="centered-lines">Latest News</h2>
140 <!-- Featured Post -->
141 <header>
142 <h3><a href="/about/news/1905/">2018-11-08 - PostgreSQL 11.1, 10.6, 9.6.11, 9.5.15, 9.4.20, and 9.3.25 Released!</a></h3>
143 <ul class="meta">
144 <li><i class="far fa-clock"></i>&nbsp;2018-11-08</li>
145 <!--<li><i class="far fa-comments"></i> 0</li>-->
146 </ul>
147 </header>
149 The PostgreSQL Global Development Group has released an update to all
150 supported versions of our database system, <a href="/about/news/1905/">
151 including 11.1, 10.6, 9.6.11, 9.5.13, 9.4.20, and 9.3.25</a>. This
152 release fixes one <a href="/support/security/">security issue</a> as
153 well as bugs reported over the last three months.
154 </p>
156 This update is also the final release for PostgreSQL 9.3, which is now
157 end-of-life and will no longer receive any bug or security fixes.
158 If your environment still uses PostgreSQL 9.3, please make plans to
159 update to a community supported versions as soon as possible.
160 </p>
161 <ul class="bold">
162 <li><a href="/about/news/1905/">Release Announcement</a></li>
163 <li><a href="/docs/11/release-11-1.html">PostgreSQL 11 Release Notes</a></li>
164 <li><a href="/download/">Download</a></li>
165 </ul>
166 <a href="/about/newsarchive/" title="Archives"><button type="button" class="btn btn-primary">Browse Archives</button></a>
167 </div>
168 <div class="col-lg-5">
169 <div class="sidebar">
171 <!-- Archives -->
172 <ul class="divided">
173 {% for n in news %}
174 <li>
175 <h3><a href="/about/news/{{ n.id }}/">{{ n.title }}</a></h3>
176 <ul class="meta">
177 <li><i class="far fa-clock"></i>&nbsp;{{ n.displaydate }} by {{ n.org.name }}</li>
178 </ul>
179 </li>
180 {% endfor %}
181 </ul>
182 <!-- END Archives -->
183 </div>
184 </div>
185 </div>
186 </div>
187 <!-- Blog -->
188 <div class="container margin">
189 <div class="row">
190 <div class="col-md-12">
191 <h2 class="centered-lines"><span>PLANET POSTGRESQL</span></h2>
192 <div class="feature"><i class="fas fa-globe"></i></div>
193 </div>
194 </div>
195 <!-- First Row Planet PostgreSQL -->
196 <div class="row">
197 <!-- First Column First Row Planet PostgreSQL -->
198 {%for post in planet %}
199 <div class="col-md-4">
200 <div class="text-center">
201 <h3><a href="{{ post.url }}">{{ post|planet_title }}</a></h3>
202 <ul class="meta">
203 <li><i class="far fa-comments"></i>&nbsp;{{ post|planet_author }}</li>
204 <li><i class="far fa-clock"></i>&nbsp;{{ post.date }}</li>
205 </ul>
206 </div>
207 </div>
208 {% endfor %}
209 </div>
210 <!-- END First Row Planet PostgreSQL -->
211 <div class="row">
212 <div class="col-sm-12">
213 <a href="https://planet.postgresql.org" title="Browse Archives" target="_blank"><button type="button" class="btn btn-center btn-primary">Browse Archives</button></a>
214 </div>
215 </div>
216 </div>
217 <!-- SUBMIT A BUG -->
218 <div class="container-fluid">
219 <div class="row">
220 <div class="col-lg-6 cta-text">
221 <h2>Seeing unexpected behavior?</h2>
223 The PostgreSQL community takes pride in releasing software that will reliably store your data. If you believe you've discovered a bug, please click the button below and follow the instructions on how to submit a bug.
224 </p>
225 <a href="/account/submitbug/" title="Submit a Bug"><button type="button" class="btn btn-light btn-rounded">Submit a Bug</button></a>
226 </div>
227 <div class="col-lg-6 cta cta-2"></div>
228 </div>
229 </div>
230 <!-- END SUBMIT A BUG -->
231 {%endblock%}