mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-10 16:56:34 +08:00
106 lines
4.8 KiB
HTML
106 lines
4.8 KiB
HTML
<!doctype html>
|
|
<html class="no-js" lang="">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Blockstack Search</title>
|
|
|
|
<meta charset="utf-8" />
|
|
<meta name="description" content="">
|
|
<meta name="keywords" content="">
|
|
<meta name="author" content="">
|
|
<meta name="google-site-verification" content="hGCVz92Eoafjc_ivauZXIZLxvEOrKjwTBEMW_O5IRH0" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
|
|
<meta name="apple-mobile-web-app-title" content="Blockstack" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<!-- Twitter Card data -->
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@blockstackorg" />
|
|
<meta name="twitter:title" content="Blockstack" />
|
|
<meta name="twitter:description" content="{description}" />
|
|
<meta name="twitter:image" content="{image}" />
|
|
|
|
<!-- Open Graph data -->
|
|
<meta property="og:title" content="Blockstack" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://search.blockstack.org/" />
|
|
<meta property="og:image" content="{image}" />
|
|
<meta property="og:site_name" content='{{ site_name }}'/>
|
|
<meta property="og:description" content="{description}" />
|
|
|
|
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
|
|
<link rel="shortcut icon" href="/favicon.ico?v=2">
|
|
<link rel="apple-touch-icon" sizes="29x29" href="/images/apple-touch-icons/29.png" />
|
|
<link rel="apple-touch-icon" sizes="40x40" href="/images/apple-touch-icons/40.png" />
|
|
<link rel="apple-touch-icon" sizes="58x58" href="/images/apple-touch-icons/58.png" />
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/images/apple-touch-icons/60.png" />
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/images/apple-touch-icons/76.png" />
|
|
<link rel="apple-touch-icon" sizes="80x80" href="/images/apple-touch-icons/80.png" />
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/images/apple-touch-icons/120.png" />
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/images/apple-touch-icons/152.png" />
|
|
<link rel="apple-touch-icon" sizes="167x167" href="/images/apple-touch-icons/167.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icons/180.png" />
|
|
<link rel="apple-touch-icon" href="/images/apple-touch-icons/touch-icon-iphone.png" />
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,500,600,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/bootstrap/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="/static/css/font-awesome.min.css" />
|
|
<link rel="stylesheet" href="/static/css/sunburst.css" />
|
|
<link rel="stylesheet" href="/static/css/styles.css" />
|
|
|
|
<!-- SUPPORT FOR IE6-8 OF HTML5 ELEMENTS -->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
|
|
<script src="/static/js/bootstrap/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="navbar-fixed-top bg-primary">
|
|
<header class="container nav-header">
|
|
<nav class="navbar navbar-toggleable-md">
|
|
<a href="/" class="navbar-brand brand-bug">
|
|
<img src="/static/images/blockstack-bug-rev.svg">
|
|
</a>
|
|
<a href="/" class="navbar-brand">
|
|
<img src="/static/images/blockstack-logo-landscape-rev.svg">
|
|
</a>
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a href="/" class="nav-link"></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a href="/" class="nav-link">Blockstack Search</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="container">
|
|
<section class="hero">
|
|
<div class="col-sm-12 col-md-6">
|
|
<h1 class="hero-head">
|
|
Blockstack Search
|
|
</h1>
|
|
<p class="lead hero-lead block">
|
|
The search subsystem for Blockstack Core creates a search index for data associated with names registered on Blockstack. The search subsystem currently indexes the .id namespace but can be easily expanded to include other namespaces.
|
|
</p>
|
|
<p class="lead hero-lead block">
|
|
You can query this node by sending queries like: <br /><br />
|
|
https://search.blockstack.org/search?query=wenger
|
|
</p>
|
|
<p class="lead hero-lead block">
|
|
You can deploy your own search node by following the instructions on <a href="https://github.com/blockstack/blockstack-core/tree/search/api/search">this Github repo</a>. The search subsystem is part of Blockstack Core, which is released as open-source software.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|