Fix up Index page & base template
authorSarah Conway <sarah.conway@crunchydata.com>
Sun, 26 May 2019 17:17:51 +0000 (10:17 -0700)
committerSarah Conway <sarah.conway@crunchydata.com>
Sun, 26 May 2019 17:17:51 +0000 (10:17 -0700)
15 files changed:
static/css/style.css
static/images/banner.png [new file with mode: 0644]
static/images/logo.png [new file with mode: 0644]
templates/base.html
templates/pages/about.html
templates/pages/becomesponsor.html
templates/pages/blog.html
templates/pages/callforpapers.html
templates/pages/index.html
templates/pages/policies.html
templates/pages/schedule.html
templates/pages/social.html
templates/pages/sponsors.html
templates/pages/tickets.html
templates/pages/venue.html

index 645d70cd0cc4bfd6d47498c5dbbb502caacac9a5..b9ec3bcd670adbd35618ca09cee350afc6c5f7dd 100644 (file)
@@ -1,4 +1,100 @@
+@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
+
+/* Default classes */
+
+body {
+  background-color: rgba(0,0,0,.03) !important;
+  font-family: 'Quicksand', sans-serif;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  font-weight: 600;
+  text-transform: uppercase;
+}
+
+a {
+  color: #336791;
+  font-weight: 600;
+  transition: all 0.15s;
+}
+
+a:hover,
+a:focus,
+a:active {
+  color: #264c6b;
+  text-decoration: none;
+}
+
+.bg-light {
+  background-color: white !important;
+}
+
+/* Navigation */
+
+.navbar {
+  align-items: flex-end !important;
+  font-weight: 600;
+  padding: 0 2rem;
+}
+
+.logo {
+  width: 4rem;
+}
+
+.navbar-collapse {
+  justify-content: flex-end;
+}
+
+/* Jumbotron */
+
+.jumbotron {
+  background-image: url("../images/banner.png");
+  background-position: bottom;
+  background-repeat: no-repeat;
+  background-size: 100%;
+  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
+  height: 30rem;
+  margin-bottom: 0;
+}
+
 /* Sponsors section under Jumbotron */
+
 .sponsors {
 
 }
+
+/* Sections */
+
+.card {
+  border-radius: 0.5rem;
+  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
+  height: 100%;
+  padding: 2rem;
+}
+
+.card-title {
+  text-align: center;
+}
+
+/* Footer */
+
+.page-footer {
+  background-color: #336791;
+  padding: 3rem 0;
+}
+
+.page-footer * {
+  color: #f4f4f4;
+}
+
+.label {
+  font-family: 'Quicksand', sans-serif;
+  margin-left: 0.5rem;
+  transition: all 0.15s;
+}
+
+.page-footer a:hover,
+.page-footer .fab:hover:before {
+  color: #f4f4f4 !important;
+  opacity: 0.7;
+}
diff --git a/static/images/banner.png b/static/images/banner.png
new file mode 100644 (file)
index 0000000..760c02f
Binary files /dev/null and b/static/images/banner.png differ
diff --git a/static/images/logo.png b/static/images/logo.png
new file mode 100644 (file)
index 0000000..3a823ae
Binary files /dev/null and b/static/images/logo.png differ
index d9c9710680e6b7fd0a9388ffe9c2b2c91826b6c8..ab3ba9706bed078b59a99c019afee23879523ba6 100644 (file)
@@ -1,7 +1,7 @@
 {%macro media(url)%}{{mediabase|default("/")}}static/{%if githash%}{{githash}}/{%endif%}{{url}}{%endmacro-%}
 {%macro link(url)%}{{linkbase|default("/")}}{{url}}{%endmacro-%}
 {%macro pguslink(url)%}{{pgusbase|default("/")}}{{url}}{%endmacro-%}
-{%macro menulink(subpage,title,magic)%}<li{%if page==subpage or (pagemagic and pagemagic==magic)%} class="active"{%endif%}><a class="nav-item nav-link" href="{{link(subpage + "/")}}">{{title}}</a></li>{%endmacro-%}
+{%macro menulink(subpage,title,magic)%}<li{%if page==subpage or (pagemagic and pagemagic==magic)%} class="active"{%endif%}><a class="nav-link" href="{{link(subpage + "/")}}">{{title}}</a></li>{%endmacro-%}
 <!DOCTYPE html>
 <html lang="en">
        <head>
@@ -28,7 +28,7 @@
                <meta property="og:url" content="https://2019.postgresopen.org/">
                <meta property="og:title" content="PostgresOpen | PostgreSQL Conference">
                <meta property="og:site_name" content="Postgres Open">
-               <meta property="og:image" content="https://2019.postgresopen.org/static/images/banner.jpg">
+               <meta property="og:image" content="https://2019.postgresopen.org/static/images/banner.png">
 
                <!-- Structured Data -->
                <script type="application/ld+json">
@@ -37,7 +37,7 @@
                        "@type": "ProfessionalService",
                        "url": "https://2019.postgresopen.org/",
                        "logo": "https://2019.postgresopen.org/static/images/logo.png",
-                       "image": "https://2019.postgresopen.org/static/images/banner.jpg",
+                       "image": "https://2019.postgresopen.org/static/images/banner.png",
                        "email": "mailto:subscribe@postgresopen.org",
                        "description": "PostgresOpen will be held from September 11 - 13 in Orlando, FL at the Rosen Centre Hotel.",
                        "name": "Postgres Open",
        <body class="{{page}}">
 
                <!-- Navigation -->
-               <nav class="navbar fixed-top navbar-light bg-light">
-                 <a class="navbar-brand" href="#">
-                               Postgres Open
-                               <img id="logo" src="{{media("images/logo.png")}}" alt="Postgres Open Logo">
-                       </a>
+               <nav class="navbar navbar-expand-lg navbar-light bg-light">
+                 <a class="navbar-brand" href="#">Postgres Open</a>
+                       <img class="logo" src="{{media("images/logo.png")}}" alt="Postgres Open Logo">
                  <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
                    <span class="navbar-toggler-icon"></span>
                  </button>
                  <div class="collapse navbar-collapse" id="navbarNavAltMarkup">
-                   <div class="navbar-nav">
+                   <ul class="navbar-nav">
                                        {{menulink("about", "About")}}
                                        {{menulink("blog", "Blog")}}
                                        <!-- <li><a href="{{pguslink("events/pgopen2019/sessions/")}}">Talks</a></li> -->
@@ -85,7 +83,7 @@
                                        <!-- {{menulink("feedback", "Feedback")}} -->
                                        {{menulink("venue", "Venue & Hotel")}}
                                        {{menulink("sponsors", "Sponsors")}}
-                   </div>
+                   </ul>
                  </div>
                </nav>
 
                                        </div>
                                        <div class="col-sm-4">
                                                <h3>Connect with Us</h3>
-                                               <ul class="icons">
-                                                       <li>
-                                                               <a href="https://www.facebook.com/PostgresOpen" class="fa fa-facebook"><span class="label">Facebook</span></a>
-                                                       </li>
-                                                       <li>
-                                                               <a href="https://www.youtube.com/user/postgresopen" class="fa fa-youtube"><span class="label">YouTube</span></a>
-                                                       </li>
-                                                       <li>
-                                                               <a href="https://twitter.com/postgresopen" class="fa fa-twitter"><span class="label">Twitter</span></a>
-                                                       </li>
-                                                       <li>
-                                                               <a href="https://plus.google.com/+postgresopen/posts" class="fa fa-google-plus"><span class="label">Google+</span></a>
-                                                       </li>
-                                               </ul>
+                                               <a href="https://www.facebook.com/PostgresOpen" class="fab fa-facebook"><span class="label">Facebook</span></a><br>
+                                               <a href="https://www.youtube.com/user/postgresopen" class="fab fa-youtube"><span class="label">YouTube</span></a><br>
+                                               <a href="https://twitter.com/postgresopen" class="fab fa-twitter"><span class="label">Twitter</span></a><br>
                                        </div>
                                </div>
                        </div>
 
                  <!-- Copyright -->
-                 <div class="footer-copyright text-center py-3">© 2019 Copyright:
+                 <div class="footer-copyright text-center py-5">© 2019 Copyright:
                    PostgresOpen is an associated project of the United States PostgreSQL Association (PGUS).
                  </div>
                </footer>
index 88575bcbdfaa9761ce7aa425e0ad4f29c775fb70..56044a1462fe77d39aa147d40cb4db4467f7cf03 100644 (file)
@@ -1,21 +1,21 @@
 {%extends "base.html" %}
-{%block title%}About the Conference | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}About the Conference | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
-<h1>About PostgresOpen</h1>
+<h1>About Postgres Open</h1>
 
 <!-- Who we are -->
 <hr>
 <h3>Who We Are</h3>
-<p>PostgresOpen is a non–profit, community–run conference series in the United States focused on business users, database professionals and developers of PostgreSQL, the open source database. This year PostgresOpen has combined forces with PGConf Silicon Valley to bring together two large Postgres conferences to create an even larger & more exciting event.</p>
-<p>We target entrepreneurs, technologists and decision–makers on the leading edge of data management, open source database innovation and disruption of the database industry. PostgresOpen promotes the business of PostgreSQL as well as its use and development.</p>
-<p>View our speaker videos from the 2017 PostgresOpen conference <a href="https://www.youtube.com/playlist?list=PLN8NEqxwuywQgN4srHe7ccgOELhZsO4yM">here</a> and from the 2016 PGConf SV conference <a href="https://www.youtube.com/playlist?list=PLixnExCn6lRoaqtaIarHjRTDOyxEVIPes">here.</a></p>
+<p>Postgres Open is a non–profit, community–run conference series in the United States focused on business users, database professionals and developers of PostgreSQL, the open source database. This year Postgres Open has combined forces with PGConf Silicon Valley to bring together two large Postgres conferences to create an even larger & more exciting event.</p>
+<p>We target entrepreneurs, technologists and decision–makers on the leading edge of data management, open source database innovation and disruption of the database industry. Postgres Open promotes the business of PostgreSQL as well as its use and development.</p>
+<p>View our speaker videos from the 2017 Postgres Open conference <a href="https://www.youtube.com/playlist?list=PLN8NEqxwuywQgN4srHe7ccgOELhZsO4yM">here</a> and from the 2016 PGConf SV conference <a href="https://www.youtube.com/playlist?list=PLixnExCn6lRoaqtaIarHjRTDOyxEVIPes">here.</a></p>
 <hr>
 
 <!-- Suitable for Many Audiences -->
-<h3>Who Should Attend PostgresOpen</h3>
-<p>PostgresOpen’s presentation span wide variety of topics surrounding PostgreSQL. The conference will
+<h3>Who Should Attend Postgres Open</h3>
+<p>Postgres Open’s presentation span wide variety of topics surrounding PostgreSQL. The conference will
        run multiple parallel tracks covering different technical levels to ensure there is always something
        interesting for everybody. All talks will be given in English.</p>
 <ul>
index 3f209ce4ad6e5460a595bbb0aafbbbbbfdd74b92..ac824b882f953339742bf0fd9101d1361e71fb26 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Become a Sponsor | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Become a Sponsor | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Become a Sponsor</h1>
@@ -9,22 +9,22 @@
 
 <hr>
 <h3>Sponsorship</h3>
-<p>PostgresOpen is a perfect opportunity for companies to reach
+<p>Postgres Open is a perfect opportunity for companies to reach
    out to users and developers of PostgreSQL, or to just "give back" to the
    community. Our sponsorship program covers a wide range of levels, from Supporter
    to Diamond. If you are interested in sponsoring the conference, please
    <b><a href="mailto:program2019@postgresopen.org">contact us!</a></b>
 </p>
 <p>
-       The PostgresOpen SV  prospectus is available <b><a href="{{media("files/prospectus_.pdf")}}">here!</a></b>
+       The Postgres Open prospectus is available <b><a href="{{media("files/prospectus_.pdf")}}">here!</a></b>
 </p>
 <p>
-        PostgresOpen abides by the PostgreSQL Project <a href="https://www.postgresql.org/community/recognition/">Community Recognition guidelines</a>.
+        Postgres Open abides by the PostgreSQL Project <a href="https://www.postgresql.org/community/recognition/">Community Recognition guidelines</a>.
 </p>
 <p>
-               When working with individual companies on sponsorship, PostgresOpen and <a href="{{pguslink("")}}">PgUS</a> will only consider changes to
+               When working with individual companies on sponsorship, Postgres Open and <a href="{{pguslink("")}}">PgUS</a> will only consider changes to
         the sponsorship contract which do not impact the material benefits provided to a given company or the cost of the sponsorship. The determination
-        of what is considered a material benefit will be decided by the PostgresOpen operations committee and PgUS, as the signing authority. No changes
+        of what is considered a material benefit will be decided by the Postgres Open operations committee and PgUS, as the signing authority. No changes
         to the benefits included in the prospectus will be accepted, nor will any sponsorship discounts be provided.
 </p>
 <hr>
index 5add62a281ba33f6ed8aa75d600c6d9669c3961c..a2d87ffc0a38e3bc36f8f7929f7e12e847df41d7 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Blog | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Blog | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Blog</h1>
index bc58c53b38e61d1ca9492d1ceb3fd526acbddd60..fd53e020371c73d67a97f23fe2c4dfd79fe5249c 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Call For Papers | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Call For Papers | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Call for Papers</h1>
@@ -10,7 +10,7 @@
   <h3>General Information</h3>
 
   <p>
-               PostgresOpen SV  will be held on September 5th - 7th in
+               Postgres Open will be held on September 5th - 7th in
          San Francisco at the Parc 55. It will cover topics for PostgreSQL users,
          developers and contributors, as well as decision and policy makers. For
          more information about the conference, please see
@@ -18,7 +18,7 @@
   </p>
 
   <p>
-               Please note that PostgresOpen is open to all audiences and ages.  All talks
+               Please note that Postgres Open is open to all audiences and ages.  All talks
          are expected to be appropriate for a diverse group.  Please see our Conference
                <b><a href="{{link("policies/")}}">Policies</a></b> and feel free to contact the
          <b><a href="mailto:program2019@postgresopen.org">Committee</a></b> with any questions.
@@ -55,7 +55,7 @@
   </p>
   <p>
     Once you've created your profile, this page will provide a link to a form where you can submit your
-    talks for PostgresOpen SV . When the site prompts for a login, use your
+    talks for Postgres Open. When the site prompts for a login, use your
     regular postgresql.org community account.  Should you already have your speaker profile, you can go to
        the talk submission page directly <a href="{{pguslink("events/pgopen2019/callforpapers/")}}">here.</a>
   </p>
index 14efa6c69adc804f99b918f8625c84669ecd4b8a..610e5b7756d37257390ab06182f51757237c61a4 100644 (file)
 {%extends "base.html" %}
-{%block title%}PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Postgres Open 2019{%endblock%}
+{%block pagetitle%}Postgres Open 2019{%endblock%}
 {%block content%}
-               <!-- Banner -->
-                       <div class="jumbotron jumbotron-fluid">
-                         <div class="container">
-                           <h1 class="display-4">Fluid jumbotron</h1>
-                           <p class="lead">This is a modified jumbotron that occupies the entire horizontal space of its parent.</p>
-                         </div>
-                       </div>
-                       <div class="sponsors container-fluid">
-                       {% for p in diamond %}
-                               <a href="{{p.link}}" target="_blank"><img src="{{media("images/" + p.largelogo)}}" alt="{{p.name}}"></a>
-                       {% endfor %}
-                       </div>
+       <!-- Banner -->
+       <div class="jumbotron jumbotron-fluid">
+         <div class="container">
+           <h1 class="display-4">Postgres Open 2019</h1>
+           <p class="lead">September 11 - 13 • Orlando, FL</p>
+         </div>
+       </div>
 
-                       <div class="container">
-                               <div class="row">
-                                 <div class="col-sm-6">
-                                   <div class="card">
-                                     <div class="card-body">
-                                       <h5 class="card-title">Special title treatment</h5>
-                                       <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
-                                       <a href="#" class="btn btn-primary">Go somewhere</a>
-                                     </div>
-                                   </div>
-                                 </div>
-                                 <div class="col-sm-6">
-                                   <div class="card">
-                                     <div class="card-body">
-                                       <h5 class="card-title">Special title treatment</h5>
-                                       <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
-                                       <a href="#" class="btn btn-primary">Go somewhere</a>
-                                     </div>
-                                   </div>
-                                 </div>
-                               </div>
-                       </div>
+       <!-- Sponsors -->
+       <!--
+       <div class="sponsors container-fluid">
+       {% for p in diamond %}
+               <a href="{{p.link}}" target="_blank"><img src="{{media("images/" + p.largelogo)}}" alt="{{p.name}}"></a>
+       {% endfor %}
+       </div>
+       -->
 
-                       <div class="container-fluid">
-                               <div class="card text-center">
-                                 <div class="card-header">
-                                   Featured
-                                 </div>
-                                 <div class="card-body">
-                                   <h5 class="card-title">Special title treatment</h5>
-                                   <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
-                                   <a href="#" class="btn btn-primary">Go somewhere</a>
-                                 </div>
-                                 <div class="card-footer text-muted">
-                                   2 days ago
-                                 </div>
-                               </div>
-                       </div>
+       <!-- Description -->
+       <div class="container my-4">
+               <div class="row">
+                 <div class="col-sm-6">
+                   <div class="card">
+                     <div class="card-body">
+                       <h5 class="card-title mb-4">Join us in Orlando!</h5>
+                                               <p class="card-text">Postgres Open 2019 will be held from September 11th - 13th in Orlando, FL at the Rosen Centre Hotel.</p>
+                                               <p class="card-text">
+                                                       The conference delivers two days packed with tutorials and presentations about PostgreSQL and related
+                                                       technologies, one day of extended trainings, and the usual hallway and social track!
+                                               </p>
+                                               <p class="card-text">View our speaker videos from the 2018 Postgres Open conference <a href="https://www.youtube.com/watch?v=s7a6o0XA6-c&list=PLN8NEqxwuywTzv69eAVgeZ5YO_4q_LJM_">here.</a></p>
+                                               <p class="card-text">
+                                                       <a href="mailto:subscribe@postgresopen.org?subject=Add Me">Click here to sign up for our mailing list!</a>
+                                               </p>
+                     </div>
+                   </div>
+                 </div>
+                 <div class="col-sm-6">
+                   <div class="card">
+                     <div class="card-body">
+                       <h5 class="card-title mb-4">PostgreSQL Community</h5>
+                                               <p class="card-text">
+                                                       For over 20 years, the PostgreSQL Community has worked to organize conferences with many technical and business
+                                                       talks by developers and key users globally. Postgres Open is an associated project of the <a href="https://postgresql.us/">
+                                                       United States PostgreSQL Association</a> (PGUS), which is a non profit organization dedicated to promoting and supporting
+                                                       the development of PostgreSQL in the United States. Any profits from the event go to PGUS (an IRS 501C3 non-profit) to fund
+                                                       future Postgres Open events and support the PGUS mission.
+                                               </p>
+                                               <p class="card-text">
+                                                       In addition to Postgres Open, PostgreSQL Europe will be holding a conference in the Fall of 2019. Their community website
+                                                        can be found at <a href="http://2019.pgconf.eu/">http://2018.pgconf.eu/</a>.
+                                                </p>
+                     </div>
+                   </div>
+                 </div>
+               </div>
+       </div>
+
+       <div class="container mb-4">
+               <div class="card text-center">
+                 <div class="card-body">
+                   <h5 class="card-title">Important Dates</h5>
+                               <hr>
+                   <p class="card-text">Training: September 11th</p>
+                               <p class="card-text">Conference: September 11th - 13th</p>
+                 </div>
+               </div>
+       </div>
+
+       <div class="container mb-4">
+               <div class="row">
+                 <div class="col-sm-6">
+                   <div class="card text-center">
+                     <div class="card-body">
+                                               <p class="card-text"><b>Call for Presentations Opens</b><br> March 23rd, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Early Bird Registration Opens</b><br> May 21st, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Call for Presentations Closes</b><br> June 12th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Speakers Notified of Talk Acceptance</b><br> June 19th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Sessions Announced</b><br> June 25th, 2018</p>
+                                               <hr>
+                     </div>
+                   </div>
+                 </div>
+                 <div class="col-sm-6">
+                   <div class="card text-center">
+                     <div class="card-body">
+                                               <p class="card-text"><b>Early Bird Registration Closes</b><br> July 18th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Schedule Announced</b><br> July 25th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Regular Registration</b><br> July 11th - September 5th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Parc 55 Reservation Deadline</b><br> August 14th, 2018</p>
+                                               <hr>
+                                               <p class="card-text"><b>Conference Dates</b><br> September 5th - 7th, 2018</p>
+                                               <hr>
+                     </div>
+                   </div>
+                 </div>
+               </div>
+       </div>
 
-                       <div class="container">
-                               <div class="row">
-                                 <div class="col-sm-6">
-                                   <div class="card">
-                                     <div class="card-body">
-                                       <h5 class="card-title">Special title treatment</h5>
-                                       <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
-                                       <a href="#" class="btn btn-primary">Go somewhere</a>
-                                     </div>
-                                   </div>
-                                 </div>
-                                 <div class="col-sm-6">
-                                   <div class="card">
-                                     <div class="card-body">
-                                       <h5 class="card-title">Special title treatment</h5>
-                                       <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
-                                       <a href="#" class="btn btn-primary">Go somewhere</a>
-                                     </div>
-                                   </div>
-                                 </div>
-                               </div>
-                       </div>
 {% endblock %}
index c939828a186fa7e1f694c7d9bd91887159edb3b9..18b7375a2e6b6fcd3b288e149920b4d0dd250a02 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Policies | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Policies | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Conference Policies</h1>
@@ -8,14 +8,14 @@
 <!-- Sponsorship -->
 <hr>
 
-<p>PostgresOpen is a non–profit, community–run conference series in the United States focused on business users, database professionals and developers of PostgreSQL, the open source database.</p>
+<p>Postgres Open is a non–profit, community–run conference series in the United States focused on business users, database professionals and developers of PostgreSQL, the open source database.</p>
 <p>While we do our best, even as a non-profit, we need certain policies to ensure that the event can make budget and be enjoyed by all.</p>
 
 <h3>Purchasing and Refund Policies</h3>
 
 <p>The United States PostgreSQL Association, a 503(c) non-profit, underwrites Postgres Open. Purchasing of tickets and tutorials will be done via the Postgres Open payment gateway transacted by our partner Braintree. Purchasing transactions may take up to 48 hours to appear on purchaser’s credit card.</p>
 <p>Payment through the Postgres Open gateway is completed with PCI-DSS (2.0) level security compliance and all customer data is stored encrypted. </p>
-<p>Due to hotel contracts and our obligations to our sponsors, PostgresOpen can only offer full refunds to the conference up to 30 days prior to the event.</p>
+<p>Due to hotel contracts and our obligations to our sponsors, Postgres Open can only offer full refunds to the conference up to 30 days prior to the event.</p>
 <p>Refunds will be issued directly back using the same payment method through which the ticket was purchased (eg: credit card).</p>
 <p>Please allow 10 days of processing time for refund requests. To inquire about a refund please email <a href="mailto:treasurer@postgresopen.org">treasurer@postgresopen.org</a>.<br>
   Please include the following in your request:
 
 <h3>Speaker Policy</h3>
 
-<p>PostgresOpen provides gratis admission to regular conference sessions for all speakers.  Training sessions and tutorials are <b>not</b> included and must be purchased separately.
-  PostgresOpen does not typically provide reimbursement for speaker expenses.  Requests for assistance with travel and/or lodging expenses must be included in the "Submission Notes"
+<p>Postgres Open provides gratis admission to regular conference sessions for all speakers.  Training sessions and tutorials are <b>not</b> included and must be purchased separately.
+  Postgres Open does not typically provide reimbursement for speaker expenses.  Requests for assistance with travel and/or lodging expenses must be included in the "Submission Notes"
   for each talk and will be considered on a case-by-case basis.</p>
 <hr>
 
 <h3>Anti-Harassment Policy</h3>
 
 <p>This policy is based in large part on this <b><a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment">example policy.</a></b>
-<p>PostgresOpen is dedicated to providing a harassment-free conference experience for everyone.  We do not tolerate harassment of conference participants in any form.  Sexual language and imagery is not appropriate for any conference venue, including talks.</p>
+<p>Postgres Open is dedicated to providing a harassment-free conference experience for everyone.  We do not tolerate harassment of conference participants in any form.  Sexual language and imagery is not appropriate for any conference venue, including talks.</p>
 <p>Conference participants violating this policy may be sanctioned or expelled from the conference without a refund at the discretion of the conference organizers.  It is the sole discretion of the conference committee if any action is considered to have violated this policy.</p>
 <p>Harassment includes offensive verbal comments related to gender, sexual orientation, disability, physical appearance, race, religion, sexual images in public spaces, deliberate intimidation, stalking, following, harassing, photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention.  Participants asked to stop any harassing behavior are expected to comply immediately.  Failure to comply will result in sanctions and/or ejection from the conference without a refund.</p>
 <p>If a participant engages in harassing behavior, the conference organizers may take any action they deem appropriate, including but not limited to: warning the offender, expulsion from the conference with no refund, and/or referral to appropriate authorities.  If you are being harassed, notice that someone else is being harassed, or have any other concerns, please contact a member of the conference staff, including anyone on the conference committee, immediately.</p>
index 5c9fa059272da1eba5cfa5fc07b2b763072af684..c3d7d654ac60281e93d0b802940c1e7bd42ff2e9 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Schedule | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Schedule | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
             <hr>
             <h3>Schedule</h3>
index 0d4ed04a75230ce52f2ec6d2bcd781446d50d92b..e3b4933e6d312bc86d9c8dec8d759aa00cb9c884 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Social | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Social | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Social Events</h1>
index ef6287218e4e3c17b81ddfcc642b613d388af8e3..3e5847fcc53b54e16c0a5d68c6edfd08ff77cd92 100644 (file)
@@ -1,13 +1,13 @@
 {%extends "base.html" %}
-{%block title%}Sponsors | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Sponsors | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <h1>Sponsors</h1>
 
 <hr>
 <h3>Sponsorship</h3>
 <p>
-       PostgresOpen wouldn't be possible without the support of our wonderful
+       Postgres Open wouldn't be possible without the support of our wonderful
        sponsors!  If you are interested in sponsoring the conference, please
        see our <b><a href="{{link("becomesponsor/")}}">sponsoring campaign</a></b> and let us know!
 </p>
index b2e1a664f911aa1077cc9383433aceb743790a0e..11682e21d5a0d741dd8c39b4fdb9c22ed1756e13 100644 (file)
@@ -1,13 +1,13 @@
 {%extends "base.html" %}
-{%block title%}Register | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Register | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Tickets</h1>
 
 <hr>
 <h3>General Information</h3>
-<p>Welcome to the PostgresOpen SV  Registration section!</p>
+<p>Welcome to the Postgres Open Registration section!</p>
 <p>Our newly updated ticketing and registration interface works in tandem with your postgresql.org community credentials. If you do not have a login you will be asked to create one.</p>
 <p><i>(Please note, your community account will not be shared or spammed in accordance with <a href="{{link("policies/")}}">our policies</a>).</i></p>
 <p style="font-weight: 600;font-size: 1.05em;">If you’re ready to acquire tickets - <a href="{{pguslink("events/pgopen2019/register/")}}">click here!</a></p>
index 55e587c069682bca2cdcdfff32c8ea28502b2972..0ef85d82a1899568b45a987d626b786ae7014c9f 100644 (file)
@@ -1,6 +1,6 @@
 {%extends "base.html" %}
-{%block title%}Venue &amp; Hotel | PostgresOpen SV {%endblock%}
-{%block pagetitle%}PostgresOpen SV {%endblock%}
+{%block title%}Venue &amp; Hotel | Postgres Open{%endblock%}
+{%block pagetitle%}Postgres Open{%endblock%}
 {%block content%}
 <!-- Main -->
 <h1>Venue & Hotel</h1>
@@ -10,7 +10,7 @@
 <h3>The Parc 55 Hilton Hotel</h3>
 
 <p>
-       PostgresOpen SV  will be held at the Parc 55 Hilton Hotel, San Francisco, CA.
+       Postgres Open will be held at the Parc 55 Hilton Hotel, San Francisco, CA.
 <br>
        Use <b><a href="https://aws.passkey.com/event/49526018/owner/1150/landing">this link</a></b> to book your reservation!
        Our Conference Group Rate of $249/night for the hotel is available until August 14th, .