nostrmarket/index.html

75 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nostr Market</title>
<link rel='stylesheet' href='style.css'>
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div class="main">
<div class="title-box">
<h1 class="title">
<span class="title-nostr">Nostr</span><span class="title-market">Market</span>
<span class="title-desc">The Bitcoin Craigslist</span>
</h1>
</div>
<div class="info">
<div class="info-column">
<p class="info-heading">
Publish a listing
</p>
<p class="info-text">
Buy and sell products, services and jobs for Bitcoin.
</p>
<p class="info-text">
Write a post with the hashtag <a href="https://nostr.band/?q=%23nostrmarket"><span class="mono">#nostrmarket</span></a> using your regular Nostr client and your listing will display here.
</p>
</div>
<div class="info-column">
<p class="info-heading">
Order a listing
</p>
<p class="info-text">
Click on the listing to message the seller with your regular Nostr client.
</p>
<p class="info-text">
Nostr Market does not process payments. Contact the seller to pay them directly with Bitcoin.
</p>
</div>
</div>
<div id="listings_title">
<form id="search" method="post" action="#" onsubmit="filter_listings()">
<input id="search_term" type="text" name="search_term" placeholder="Search products...">
<select id="search_category">
<option value="all">All</option>
<option value="selling">Selling</option>
<option value="buying">Buying</option>
<option value="job">Job</option>
<option value="service">Service</option>
</select>
<button id="search_button" type="submit"><img src="search.png" alt="Search" id="search_icon"></button>
</form>
<h2 class="info-heading">
Browse listings
</h2>
</div>
<div id="listings_body">
<p class="loading">
<span class="loading-text">Loading...</span>
</p>
</div>
<div class="footer-bar">
Nostr Market is <a href="https://codeberg.org/Anarkio/nostrmarket/" class="footer-link">open source</a>
·
Join the <a href="https://sovrnbitcoiner.com/get-started-with-bitcoin-circular-economies/" class="footer-link">Bitcoin circular economy</a>
·
Subscribe to <a href="https://rss.nostr.band/feeds/ff85/1fd07514e0473b3da6bc4a151827e1d1776a9040e856006594e3fadd2f2dff85.xml" class="footer-link">RSS</a>
</div>
</div>
<script src='jquery.min.js'></script>
<script src='feeds_api.js'></script>
<script src='xml2json.js'></script>
<script src='bech32-buffer.min.js'></script>
</body>
</html>