{#if countyData} Heating Oil Prices in {countyData.name}, {getStateName(countyData.state)} | Biz Hero {:else} County Not Found | Biz Hero {/if} {#if loading}
{#each Array(4) as _, i}
{/each}
{:else if countyData} {#if headerVisible}
Heating Oil Prices

{countyData.name}

{getStateName(countyData.state)}

Compare heating oil prices from local dealers

{/if} {#if listingsLoading}
{#each Array(3) as _, i}
{/each}
{:else if listingsError}

Could not load dealer prices

{listingsError}

{:else} {#if premiumVisible && listings.length > 0}

Premium Dealers

Verified local dealers with current pricing

{#if listings.length > 0}
{listings.length} dealer{listings.length !== 1 ? 's' : ''} listed
{/if}
{#if listings.length === 0}

No premium dealers listed yet

Check back soon for local dealer pricing.

{:else}
{#each listings.filter(l => l.phone) as listing, i}

{listing.company_name}

{#if listing.url} Visit Website {/if} {#if listing.town}

{listing.town}

{/if}
${listing.price_per_gallon.toFixed(2)}
per gallon
{#if listing.price_per_gallon_cash}
Cash Price: ${listing.price_per_gallon_cash.toFixed(2)}/gal
{/if}
Bio: {listing.bio_percent}%
Service: {#if listing.service} Yes {:else} No {/if}
Order: {formatOnlineOrdering(listing.online_ordering)}
{formatDate(listing.last_edited)}
{#if listing.phone} {/if}
{/each}
{/if}
{/if} {#if marketVisible && oilPrices.length > 0}

Market Prices

Market prices collected from public sources
{#each oilPrices.filter(op => op.phone) as op, i}
{op.name || 'Unknown'} Last Updated: {formatScrapeDate(op.scrapetimestamp) || op.date || 'N/A'}
{op.price != null ? `$${op.price.toFixed(2)}` : 'N/A'}
{#if op.phone || op.url}
{#if op.phone} {op.phone} {/if} {#if op.url} {/if}
{/if}
{/each}
{/if} {#if listings.length === 0 && oilPrices.length === 0 && premiumVisible}

No pricing data available yet

We are working on gathering pricing information for {countyData.name}. Check back soon!

{/if} {/if}
Back to {getStateName(countyData.state)}
{:else if error}

County Not Found

{error}

Back to state
{/if}