from draft Commit 73d59cb6 11/19/21

master
Kebler Network System Administrator 2021-11-19 10:39:51 -08:00
parent 7f251ad0fd
commit 32c34f18d4
10 changed files with 940 additions and 63 deletions

105
404.html
View File

@ -61,7 +61,7 @@
<link href="/css/base.css" rel="stylesheet">
<link href="/css/page.css" rel="stylesheet">
<link href="/css/sections.css" rel="stylesheet">
<link href="/css/navbar.css" rel="stylesheet">
@ -92,7 +92,7 @@
.nav-bar__menu-item:hover, .nav-bar__menu-item >a:hover {color: #26ad60; }
.nav-bar, .section--footer { background-color: #26ad60; }
.nav-bar__container, .section--footer { background-color: #26ad60; }
.nav-bar__logo,.nav-bar__logo:hover, .nav-bar__menu, .nav-bar__menu-button, .section--footer { color: #1f5e3a; }
.nav-bar__menu-item:hover, .nav-bar__menu-item >a:hover { background-color: #1f5e3a; }
@ -108,14 +108,24 @@
#hero { color: red; }
#hero { background-color: #6fc695; }
#hero h1 { color: red; }
#hero h2 { color: red; }
#hero h3 { color: red; }
#hero h4 { color: red; }
#hero hr { border-top-color: red; }
#hero { color: #26ad60; }
#hero { background-color: #6fc695; }
#hero { text-shadow:
4px
3px
1px
black; }
#hero h1 { color: #26ad60; }
#hero h2 { color: #26ad60; }
#hero h3 { color: #26ad60; }
#hero h4 { color: #26ad60; }
#hero hr { border-top-color: #26ad60; }
#hero { background-image: url("https://www.gpccaor.org/images/city-park.jpg"); }
@ -183,16 +193,14 @@
<body>
<div id="nav-bar" class="nav-bar">
<div class="nav-bar__header">
<a href="#hero" class="nav-bar__logo">
GPCCA
</a>
<div class="nav-bar__menu-button"> <i class="fa fa-bars"></i></div>
<div class="nav-bar__draft"></div>
</div>
<div id="nav-bar">
<div class="nav-bar__container">
<div class="nav-bar__header">
<a href="#hero" class="nav-bar__logo">
GPCCA
</a>
<div class="nav-bar__menu-button"> <i class="fa fa-bars"></i></div>
</div>
<ul class="nav-bar__menu hide-menu">
@ -206,10 +214,65 @@
<li >
<a class="nav-bar__menu-item" href="#cc">
Community-Center
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#pco">
PCO
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#services">
Services
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#volunteer">
Helping
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#donate">
Donate
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
<div class="nav-bar-spacer"></div>

View File

@ -61,6 +61,7 @@ h6 {
text-align: center;
font-weight: bold;
line-height: 1.45;
margin-bottom: 0.5em;
}
h1 {

View File

@ -1,7 +1,8 @@
/* NAVIGATION BAR */
/* mobile first at <1000px */
.nav-bar {
#nav-bar {
display: flex;
flex-direction: column;
position: fixed;
@ -9,6 +10,12 @@
left: 0;
z-index: 10000;
width: 100vw;
}
.nav-bar__container {
display: flex;
flex-direction: column;
width: 100%;
color: black;
background-color: white;
border-bottom: 1px solid grey;
@ -22,28 +29,19 @@
display: flex;
flex-direction: row;
justify-content: flex-start;
align-content: center;
align-content: start;
padding-top: 0.9em;
padding-bottom: 0.9em;
}
.nav-bar__logo {
padding-left: 10em;
padding-left: 1em;
}
.nav-bar__logo {
order: 2;
}
.nav-bar__draft {
padding-left: 1em;
color: red !important;
}
.nav-bar__draft {
order: 3;
}
.nav-bar__menu-button {
order: 1;
@ -79,9 +77,22 @@
color: black;
}
.nav-bar__draft {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
color: red;
font-weight: bold;
font-size: 1em;
width: 100%;
height: 2em;
}
/* bigger than small tablet */
@media only screen and (min-width: 1000px) {
.nav-bar {
.nav-bar__container {
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;

366
css/sections.css Normal file
View File

@ -0,0 +1,366 @@
/* sections */
.section__headline {
text-align: center;
}
.section__content {
display: flex;
flex-direction: column;
align-items: center;
max-width: 95%;
}
.section__content ul {
display: flex;
flex-direction: column;
align-items: flex-start;
max-width: 85%;
padding-top: 0.3em;
padding-bottom: 1em;
padding-left: 0.5em;
padding-right: 0.5em;
}
.section__content li {
padding-bottom: 0.7em;
}
/* lists in section content */
.section__content li {
font-size: 1em;
list-style-type: none;
line-height: 1.1em;
}
.section__content ul,
.section__content ol {
margin-left: 2em;
list-style-position: inside;
padding-top: 0.5em;
}
.section__content ul > li::before {
font-family: FontAwesome;
content: "\f18e";
padding-right: 1.1em;
margin-left: -2em;
}
.section__content ol {
counter-reset: foo;
}
.section__content ol > li {
counter-increment: foo;
}
.section__content ol > li::before {
content: counter(foo) ".";
padding-right: 0.8em;
margin-left: -1.4em;
}
.section--odd {
color: white;
background-color: black;
}
.section--404 {
color: white;
background-color: black;
height: 1000px;
}
.section--hero {
color: white;
background-color: grey;
}
.section--odd .btn {
color: black;
background-color: white;
text-transform: uppercase;
}
.section--footer {
color: white;
background-color: darkgrey;
min-height: 4000px;
}
/* modal */
.section--modal {
display: none;
color: white;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.section__container--modal {
margin: 0.5em;
margin-top: 2em;
background-color: black;
color: white;
max-height: 85%;
border-radius: 1em;
width: auto;
padding-bottom: 1em;
border-style: solid;
border-width: medium;
}
.section__headline--modal {
padding-top: 0.5em;
position: relative;
width: 100%;
padding-right: 1.2em;
}
.section__headline--modal > h1 {
font-size: 1.2em;
}
.section__headline--modal > a[modal-close] {
position: absolute;
font-size: 1em;
top: 0.4em;
right: 0.4em;
}
.section__content--modal {
overflow-y: auto;
position: relative;
align-items: flex-start;
font-size: 0.9em;
padding: 1em;
}
/*fix for fucking google chrome pushing up overflow content */
.section__content--modal * {
flex-shrink: 0;
}
/* ----------------
Hero Section
---------------- */
.section--hero {
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
}
.section--hero .section-content--hero {
text-align: center;
line-height: 1;
}
/*mobile first*/
.section--hero h1,
.section--hero h2,
.section--hero h3,
.section--hero h4,
.section--hero h5,
.section--hero h6 {
line-height: 1;
}
/* ----------------
Components/Shortcodes Styling
---------------- */
/* box creates a flexbox wrapper, row default */
.box {
display: flex;
flex-flow: wrap;
align-content: center;
justify-content: center;
padding-left: 0.5em;
padding-right: 0.5em;
}
.box--embed {
flex-direction: column;
flex-wrap: nowrap;
padding-bottom: 0;
justify-content: center;
align-items: center;
}
.box--embed::before,
.box--image::before {
content: "";
height: 0.5em;
}
.box--embed::after,
.box--image::after {
content: "";
height: 0.5em;
}
.box--btn-bar {
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.box--column {
flex-direction: column;
align-items: center;
}
.box__caption {
font-style: italic;
}
.box__title {
text-transform: capitalize;
font-weight: bold;
}
.box--headline {
}
.box--text {
}
.box--btn {
padding: 0.5em;
margin-bottom: 0.5em;
}
.box--btn-bar > .box--btn {
margin-right: 0.2em;
}
.btn__text {
align-self: center;
}
.btn__icon {
align-self: center;
padding-right: 0.2em;
}
.btn--large .btn__text,
.btn--large .btn__icon {
font-size: 3rem;
}
.btn--small .btn__text,
.btn--small .btn__icon {
font-size: 1rem;
}
.btn--circle {
border-radius: 50%;
padding: 0.5em;
}
.highlight {
font-size: 0.7em;
align-items: left;
color: red;
background-color: white;
padding: 0.5em;
border-color: black;
border-width: 3px;
border-radius: 1em;
}
.highlight > ul > li::before {
font-family: FontAwesome;
content: "\f054"; /* chevron-right */
padding-right: 1.1em;
margin-left: -2em;
}
.box--avatar > a {
opacity: 1;
}
.thumb--yt {
display: flex;
align-items: center;
justify-content: center;
background-repeat: no-repeat;
background-size: cover;
filter: brightness(0.8);
}
.thumb--yt:hover {
-webkit-filter: brightness(1);
cursor: pointer;
}
.thumb--yt > .play-button {
font-size: 3.5em;
color: red;
text-shadow: 3px 3px black;
}
.box__embed--disqus {
width: 90vw;
max-width: 800px;
}
.box__contact-info > * {
padding: 0.1em;
align-self: center;
}
.box__contact-info > * > * {
margin: 0.2em;
align-self: center;
}
/*turn off default bullets*/
.box--gallery {
list-style: none;
}
.box--gallery li,
.box--gallery__item {
padding: 0.2em;
}
/*turn off fontawesome bullets*/
.box--gallery li::before,
.box--gallery__item li::before {
display: none;
}
code {
font-size: 0.8em;
font-family: 'Roboto Mono', monospace;
background-color: black;
border-radius: 0.2em;
color: white;
padding-left: 0.2em;
padding-right: 0.2em;
padding-top: 0.05em;
padding-bottom: 0.07em;
overflow-x: scroll;
}
code.hljs {
font-size: 0.75em;
border-radius: 0.2em;
background-color: black;
color: white;
padding: 1em;
margin-bottom: 0.7em;
width: inherit;
max-width: 90vw;
border-style: solid;
border-width: 3px;
border-color: dimgrey;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View File

@ -62,7 +62,7 @@
<link href="/css/base.css" rel="stylesheet">
<link href="/css/page.css" rel="stylesheet">
<link href="/css/sections.css" rel="stylesheet">
<link href="/css/navbar.css" rel="stylesheet">
@ -93,7 +93,7 @@
.nav-bar__menu-item:hover, .nav-bar__menu-item >a:hover {color: #26ad60; }
.nav-bar, .section--footer { background-color: #26ad60; }
.nav-bar__container, .section--footer { background-color: #26ad60; }
.nav-bar__logo,.nav-bar__logo:hover, .nav-bar__menu, .nav-bar__menu-button, .section--footer { color: #1f5e3a; }
.nav-bar__menu-item:hover, .nav-bar__menu-item >a:hover { background-color: #1f5e3a; }
@ -109,14 +109,24 @@
#hero { color: red; }
#hero { background-color: #6fc695; }
#hero h1 { color: red; }
#hero h2 { color: red; }
#hero h3 { color: red; }
#hero h4 { color: red; }
#hero hr { border-top-color: red; }
#hero { color: #26ad60; }
#hero { background-color: #6fc695; }
#hero { text-shadow:
4px
3px
1px
black; }
#hero h1 { color: #26ad60; }
#hero h2 { color: #26ad60; }
#hero h3 { color: #26ad60; }
#hero h4 { color: #26ad60; }
#hero hr { border-top-color: #26ad60; }
#hero { background-image: url("https://www.gpccaor.org/images/city-park.jpg"); }
@ -184,16 +194,14 @@
<body>
<div id="nav-bar" class="nav-bar">
<div class="nav-bar__header">
<a href="#hero" class="nav-bar__logo">
GPCCA
</a>
<div class="nav-bar__menu-button"> <i class="fa fa-bars"></i></div>
<div class="nav-bar__draft"></div>
</div>
<div id="nav-bar">
<div class="nav-bar__container">
<div class="nav-bar__header">
<a href="#hero" class="nav-bar__logo">
GPCCA
</a>
<div class="nav-bar__menu-button"> <i class="fa fa-bars"></i></div>
</div>
<ul class="nav-bar__menu hide-menu">
@ -207,10 +215,65 @@
<li >
<a class="nav-bar__menu-item" href="#cc">
Community-Center
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#pco">
PCO
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#services">
Services
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#volunteer">
Helping
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#donate">
Donate
</a>
</li>
<li >
<a class="nav-bar__menu-item" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
<div class="nav-bar-spacer"></div>
@ -224,7 +287,9 @@
<hr>
<h4> Serving Prairie City</h4>
<h4> Serving</h4>
<h4> Prairie City, Oregon</h4>
</div>
@ -246,7 +311,226 @@ style="color:; background-color:;"
<h1>The GPCCA</h1>
</div>
<div class="section__content section-content--about" >
<p>The Greater Prairie City Community Association (GPCCA) was born as a non-profit 501(c)(3) out of the need to have a non-profit organization receive the generous donation of the iconic Methodist Church at the south end of the City Park. The church is now referred to as the <strong>Community Center</strong>. The GPPCA also committed to serving the needs of the community beyond just managing the Community Center building.</p>
<p>Recently, after a few years hiatus, the GPCCA is again active with a new crop of volunteers and purpose. We&rsquo;re calling it GPCCA 2.0. The new websites and new streaming a/v equipment at the Community Center are just a couple improvements already available for the community.</p>
</div>
</div>
</section>
<section id="cc" class="section section--cc section--even"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--cc">
<h1>Community Center</h1>
</div>
<div class="section__content section-content--cc" >
<div class="box box--column box--image
"
style="
"
>
<a href="https://gpccaor.org" target="_blank" >
<img
style="
"
src="/images/community-center.jpg" />
</a>
<div class="box__caption">Community Center</div>
</div>
<p>The GPCCA owns and maintains the former Methodist Church as a Community Center. Residents and others are encouraged to make use of the building for meetings and events.</p>
<p>We recently added internet access to the Community Center which is available to the public when using the building. We also put in about $1,000 of upgrades to the audio/visual (A/V) system which already had a large projector and giant screen. With training or assistance you can stream any content off the internet including movies from your phone, laptop, or our computer, use bluetooth/wifi for audio playback (e.g. spotify), play a DVD movie or CD audio, and use the wireless microphones. All audio is patched through the speakers at the front.</p>
<p>In a break from the past, greater Prairie City residents who would like to use the Community Center for their event or meeting can do so without a fee. Instead we have developed &ldquo;suggested donation for use&rdquo; guidelines.</p>
<p>If you are not a greater Prairie City resident and want to have an event or meeting, we have some very reasonable rental rates.</p>
<p>In an ideal world the GPCCA would be able to cover the cost of insurance, upkeep, utilities, equipment and improvements without donations, but the truth is we need at least some income to cover these beyond what grants can. Event insurance which covers your event or meeting costs the association $1,400 per year alone. So if you use YOUR Community Center we hope you will take good care of it, leave it like you found it, and make a donation for use.</p>
<h2 id="use-donation-or-fee">Use Donation or Fee</h2>
<h3 id="greater-prairie-city-residents-only">Greater Prairie City Residents only</h3>
<ul>
<li>Your event/meeting is open to the public and no fee is charged (e.g. open to anyone free movie night). Suggested Donation: $10 part day (morning, afternoon or evening), $20 all day.</li>
<li>Your event/meeting is open to the public and a fee or donation is collected (e.g. open to anyone knitting class for $10 each). Suggested Donation: $10 part day (morning, afternoon, or evening) plus 20% of revenue; $20 all day plus 20% of revenue.</li>
<li>Private Event (e.g. birthday party) Suggested Donation: $30 part day (morning, afternoon or evening); $60 all day; or if a wedding $180 for three days (extra two days for setup and cleanup).</li>
</ul>
<h3 id="non-residents">Non-Residents</h3>
<p>Rental fee is required. (Double those amounts for residents). Weddings require 3 day rental ($360).</p>
<div class="box box--column box--image
"
style="
"
>
<a href="https://gpccaor.org" target="_blank" >
<img
style="
"
src="/images/community-center-inside.jpg" />
</a>
<div class="box__caption">Inside the Community Center</div>
</div>
</div>
</div>
</section>
<section id="pco" class="section section--pco section--odd"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--pco">
<h1>prairiecityoregon domains</h1>
</div>
<div class="section__content section-content--pco" >
<p>The GPCCA owns and (now!) maintains the domains <strong>prairiecityoregon.[com|net|org]</strong>. We already have a webpage at new <a href="http://www.prairiecityoregon.net">www.prairiecityoregon.net</a> and the hope is to greatly expand the content there. These domains are managed for the benefit of all residents. As such this is a FREE resource to the community and community businesses to get exposure and make available important information and resources. Eventaully we want to host an events calendar too. So how can we help you, your organization or business? See the section on <a href="/#services">services</a> below.</p>
</div>
</div>
</section>
<section id="services" class="section section--services section--even"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--services">
<h1>Services</h1>
</div>
<div class="section__content section-content--services" >
<h2 id="web-services">Web Services</h2>
<p>Since we own, host and maintain the <strong>prairiecityoregon.[com|net|org]</strong> domains we can help you and/or your business with web services.</p>
<ul>
<li>link to your webpage from <a href="https://www.prairiecityoregon.net">www.prairiecityoregon.net</a></li>
<li>your webpage hosted by us. Example: <strong>mybusiness.prairiecityoregon.com</strong></li>
<li>help developing your webpage</li>
</ul>
<h2 id="grants">Grants</h2>
<p>If your organization would like to apply for a grant which requires it to have non-profit status, you could have the GPCAA apply in your behalf. If you don&rsquo;t have grant writing experience we have volunteers who can help you.</p>
<h2 id="fees">Fees</h2>
<p>Our services are free to residents but we do ask for a commensurate donation.</p>
</div>
</div>
</section>
<section id="volunteer" class="section section--volunteer section--odd"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--volunteer">
<h1>Volunteering</h1>
</div>
<div class="section__content section-content--volunteer" >
<p>Essentially nothing happens without volunteers. The GPCCA has NO paid board members, officers, or employees.</p>
<p>We have need of folks to do</p>
<ul>
<li>cleaning</li>
<li>repairs and improvements (plumbing, carpentry, electrical)</li>
<li>landscaping</li>
<li>tech support/geeky stuff (A/V, networking, SYSOP, IOT, webmastery)</li>
<li>editing, graphics</li>
<li>accounting</li>
</ul>
<p>If you have experience, great!! If you can help with some guidance, great!!</p>
<p>Please reach out and/or attend our next monthly meeting (1st Wed each month 6:30pm)</p>
</div>
</div>
</section>
<section id="donate" class="section section--donate section--even"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--donate">
<h1>Donate</h1>
</div>
<div class="section__content section-content--donate" >
<p>The GPCCA has successfully secured grants and will secure more for equipment, repairs and improvements to the Community Center and other projects. The expenses that grants don&rsquo;t cover are the reoccurring expenses (electric, heating oil, insurance). It is for these expenses we ask the community for donations.</p>
<ul>
<li>Heating Fuel Oil ~$1000 for the season</li>
<li>Building Insurance $100/month</li>
<li>Event Liability Insurance $120/month<br>
Covers all events at the Community Center or sponsored by the GPCCA</li>
<li>Electricity ~$100/month</li>
<li>Water and Sewer are donated by the City!</li>
</ul>
<p>You can donate by mailing a check (see address below), making a deposit at the Bank of Eastern Orgeon, or clicking our online donate button below (debit or credit cards, visa/mc or paypal accepted).</p>
<p>Any donation no matter how small is appreciated.</p>
<div id="donate-button-container">
<div id="donate-button"></div>
<script src="https://www.paypalobjects.com/donate/sdk/donate-sdk.js" charset="UTF-8"></script>
<script>
PayPal.Donation.Button({
env:'production',
hosted_button_id:'PRXNJ574R7QUA',
image: {
src:'https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif',
alt:'Donate with PayPal button',
title:'PayPal - The safer, easier way to pay online!',
}
}).render('#donate-button');
</script>
</div>
</div>
</div>
</section>
<section id="contact" class="section section--contact section--odd"
style="color:; background-color:;"
>
<div class="section__container">
<div class="section__headline section__headline--contact">
<h1>Contact</h1>
</div>
<div class="section__content section-content--contact" >
<p>The GPCCA board meets the <strong>1st Wednesday of every month at 6:30pm</strong> at the Community Center. Volunteers and the Public are strongly encouraged to attend to keep abreast of GPCCA activities and to give input. To confirm the meeting date and time just reach out.</p>
<p>Greater Prairie City Community Association<br>
PO Box 758<br>
211 6th<br>
Prairie City, OR 97869<br>
(541) 306-2334<br>
<a href="mailto:gpccaor@gmail.com">gpccaor@gmail.com</a></p>
<h2 id="board-members">Board Members</h2>
<h2 id="officers">Officers</h2>
<p>Sharon Frisch: President<br>
David Kebler: Secretary/Treasurer</p>
<h2 id="volunteers">Volunteers</h2>
<p>Trish Lindaman<br>
Jerry Galland<br>
Karen Jacobs</p>
</div>
</div>
</section>
@ -261,8 +545,8 @@ style="color:; background-color:;"
</div>
<div class="section__content section-content--footer" >
<div class="updated">
<p>site updated: October 30, 2021@9:12 am</br>
status: initial development</br></p>
<p>site updated: November 19, 2021@10:37 am</br>
status: Commit 73d59cb6</br></p>
</div>
</div>

View File

@ -23,7 +23,77 @@ Some examples:</description>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/about/</guid>
<description></description>
<description>The Greater Prairie City Community Association (GPCCA) was born as a non-profit 501(c)(3) out of the need to have a non-profit organization receive the generous donation of the iconic Methodist Church at the south end of the City Park. The church is now referred to as the Community Center. The GPPCA also committed to serving the needs of the community beyond just managing the Community Center building.
Recently, after a few years hiatus, the GPCCA is again active with a new crop of volunteers and purpose.</description>
</item>
<item>
<title>Community Center</title>
<link>https://www.gpccaor.org/sections/cc/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/cc/</guid>
<description>Community Center The GPCCA owns and maintains the former Methodist Church as a Community Center. Residents and others are encouraged to make use of the building for meetings and events.
We recently added internet access to the Community Center which is available to the public when using the building. We also put in about $1,000 of upgrades to the audio/visual (A/V) system which already had a large projector and giant screen.</description>
</item>
<item>
<title>prairiecityoregon domains</title>
<link>https://www.gpccaor.org/sections/pco/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/pco/</guid>
<description>The GPCCA owns and (now!) maintains the domains prairiecityoregon.[com|net|org]. We already have a webpage at new www.prairiecityoregon.net and the hope is to greatly expand the content there. These domains are managed for the benefit of all residents. As such this is a FREE resource to the community and community businesses to get exposure and make available important information and resources. Eventaully we want to host an events calendar too. So how can we help you, your organization or business?</description>
</item>
<item>
<title>Services</title>
<link>https://www.gpccaor.org/sections/services/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/services/</guid>
<description>Web Services Since we own, host and maintain the prairiecityoregon.[com|net|org] domains we can help you and/or your business with web services.
link to your webpage from www.prairiecityoregon.net your webpage hosted by us. Example: mybusiness.prairiecityoregon.com help developing your webpage Grants If your organization would like to apply for a grant which requires it to have non-profit status, you could have the GPCAA apply in your behalf. If you don&amp;rsquo;t have grant writing experience we have volunteers who can help you.</description>
</item>
<item>
<title>Volunteering</title>
<link>https://www.gpccaor.org/sections/volunteer/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/volunteer/</guid>
<description>Essentially nothing happens without volunteers. The GPCCA has NO paid board members, officers, or employees.
We have need of folks to do
cleaning repairs and improvements (plumbing, carpentry, electrical) landscaping tech support/geeky stuff (A/V, networking, SYSOP, IOT, webmastery) editing, graphics accounting If you have experience, great!! If you can help with some guidance, great!!
Please reach out and/or attend our next monthly meeting (1st Wed each month 6:30pm)</description>
</item>
<item>
<title>Donate</title>
<link>https://www.gpccaor.org/sections/donate/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/donate/</guid>
<description>The GPCCA has successfully secured grants and will secure more for equipment, repairs and improvements to the Community Center and other projects. The expenses that grants don&amp;rsquo;t cover are the reoccurring expenses (electric, heating oil, insurance). It is for these expenses we ask the community for donations.
Heating Fuel Oil ~$1000 for the season Building Insurance $100/month Event Liability Insurance $120/month
Covers all events at the Community Center or sponsored by the GPCCA Electricity ~$100/month Water and Sewer are donated by the City!</description>
</item>
<item>
<title>Contact</title>
<link>https://www.gpccaor.org/sections/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/contact/</guid>
<description>The GPCCA board meets the 1st Wednesday of every month at 6:30pm at the Community Center. Volunteers and the Public are strongly encouraged to attend to keep abreast of GPCCA activities and to give input. To confirm the meeting date and time just reach out.
Greater Prairie City Community Association
PO Box 758
211 6th
Prairie City, OR 97869
(541) 306-2334
gpccaor@gmail.com
Board Members Officers Sharon Frisch: President
David Kebler: Secretary/Treasurer</description>
</item>
<item>
@ -32,7 +102,7 @@ Some examples:</description>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/footer/</guid>
<description>site updated: October 30, 2021@9:12 am status: initial development
<description>site updated: November 19, 2021@10:37 am status: Commit 73d59cb6
</description>
</item>

View File

@ -38,7 +38,7 @@ $('#cell').click(function () { $('#cell-number').toggleClass("hide"); });
function navbarSpacer() {
$('.nav-bar-spacer').css({
height: $(".nav-bar__header").outerHeight(true),
height: $("#nav-bar").outerHeight(true),
});
}

View File

@ -12,7 +12,77 @@
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/about/</guid>
<description></description>
<description>The Greater Prairie City Community Association (GPCCA) was born as a non-profit 501(c)(3) out of the need to have a non-profit organization receive the generous donation of the iconic Methodist Church at the south end of the City Park. The church is now referred to as the Community Center. The GPPCA also committed to serving the needs of the community beyond just managing the Community Center building.
Recently, after a few years hiatus, the GPCCA is again active with a new crop of volunteers and purpose.</description>
</item>
<item>
<title>Community Center</title>
<link>https://www.gpccaor.org/sections/cc/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/cc/</guid>
<description>Community Center The GPCCA owns and maintains the former Methodist Church as a Community Center. Residents and others are encouraged to make use of the building for meetings and events.
We recently added internet access to the Community Center which is available to the public when using the building. We also put in about $1,000 of upgrades to the audio/visual (A/V) system which already had a large projector and giant screen.</description>
</item>
<item>
<title>prairiecityoregon domains</title>
<link>https://www.gpccaor.org/sections/pco/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/pco/</guid>
<description>The GPCCA owns and (now!) maintains the domains prairiecityoregon.[com|net|org]. We already have a webpage at new www.prairiecityoregon.net and the hope is to greatly expand the content there. These domains are managed for the benefit of all residents. As such this is a FREE resource to the community and community businesses to get exposure and make available important information and resources. Eventaully we want to host an events calendar too. So how can we help you, your organization or business?</description>
</item>
<item>
<title>Services</title>
<link>https://www.gpccaor.org/sections/services/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/services/</guid>
<description>Web Services Since we own, host and maintain the prairiecityoregon.[com|net|org] domains we can help you and/or your business with web services.
link to your webpage from www.prairiecityoregon.net your webpage hosted by us. Example: mybusiness.prairiecityoregon.com help developing your webpage Grants If your organization would like to apply for a grant which requires it to have non-profit status, you could have the GPCAA apply in your behalf. If you don&amp;rsquo;t have grant writing experience we have volunteers who can help you.</description>
</item>
<item>
<title>Volunteering</title>
<link>https://www.gpccaor.org/sections/volunteer/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/volunteer/</guid>
<description>Essentially nothing happens without volunteers. The GPCCA has NO paid board members, officers, or employees.
We have need of folks to do
cleaning repairs and improvements (plumbing, carpentry, electrical) landscaping tech support/geeky stuff (A/V, networking, SYSOP, IOT, webmastery) editing, graphics accounting If you have experience, great!! If you can help with some guidance, great!!
Please reach out and/or attend our next monthly meeting (1st Wed each month 6:30pm)</description>
</item>
<item>
<title>Donate</title>
<link>https://www.gpccaor.org/sections/donate/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/donate/</guid>
<description>The GPCCA has successfully secured grants and will secure more for equipment, repairs and improvements to the Community Center and other projects. The expenses that grants don&amp;rsquo;t cover are the reoccurring expenses (electric, heating oil, insurance). It is for these expenses we ask the community for donations.
Heating Fuel Oil ~$1000 for the season Building Insurance $100/month Event Liability Insurance $120/month
Covers all events at the Community Center or sponsored by the GPCCA Electricity ~$100/month Water and Sewer are donated by the City!</description>
</item>
<item>
<title>Contact</title>
<link>https://www.gpccaor.org/sections/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/contact/</guid>
<description>The GPCCA board meets the 1st Wednesday of every month at 6:30pm at the Community Center. Volunteers and the Public are strongly encouraged to attend to keep abreast of GPCCA activities and to give input. To confirm the meeting date and time just reach out.
Greater Prairie City Community Association
PO Box 758
211 6th
Prairie City, OR 97869
(541) 306-2334
gpccaor@gmail.com
Board Members Officers Sharon Frisch: President
David Kebler: Secretary/Treasurer</description>
</item>
<item>
@ -21,7 +91,7 @@
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://www.gpccaor.org/sections/footer/</guid>
<description>site updated: October 30, 2021@9:12 am status: initial development
<description>site updated: November 19, 2021@10:37 am status: Commit 73d59cb6
</description>
</item>

View File

@ -5,6 +5,18 @@
<loc>https://www.gpccaor.org/archive/first/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/about/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/cc/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/pco/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/services/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/volunteer/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/donate/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/contact/</loc>
</url><url>
<loc>https://www.gpccaor.org/sections/footer/</loc>
</url><url>