Publish HTML quickly. https://html.house
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

75 lines
2.7 KiB

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>my pages | HTMLhouse</title>
  5. <link rel="stylesheet" type="text/css" href="/css/house.css" />
  6. <link rel="shortcut icon" href="/favicon.ico" />
  7. <link rel="icon" type="image/png" href="/img/favicon-chrome.png" sizes="192x192">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  9. <meta name="theme-color" content="#888888" />
  10. <meta name="description" content="View the pages you've built on HTMLhouse.">
  11. <meta name="application-name" content="HTMLhouse">
  12. <meta name="application-url" content="https://html.house">
  13. <meta itemprop="name" content="my pages on HTMLhouse">
  14. <meta itemprop="description" content="View the pages you've built on HTMLhouse.">
  15. <meta name="twitter:card" content="summary_large_image">
  16. <meta name="twitter:site" content="@HTMLhouse">
  17. <meta name="twitter:title" content="my pages on HTMLhouse">
  18. <meta name="twitter:description" content="View the pages you've built on HTMLhouse.">
  19. <meta property="og:title" content="my pages on HTMLhouse" />
  20. <meta property="og:site_name" content="HTMLhouse" />
  21. <meta property="og:type" content="object" />
  22. <meta property="og:url" content="https://html.house/houses.html" />
  23. <meta property="og:description" content="View the pages you've built on HTMLhouse." />
  24. </head>
  25. <body id="neighborhood">
  26. <header>
  27. <h1>my pages</h1>
  28. <nav>
  29. <a class="home" href="/">&lt;&#8962;/&gt;</a>
  30. <a href="/browse">browse</a>
  31. <a href="/about.html">about</a>
  32. <a href="/contact.html">contact</a>
  33. </nav>
  34. </header>
  35. <div id="wrapper">
  36. <ul id="street"></ul>
  37. </div>
  38. <script src="https://write.as/js/h.js"></script>
  39. <script>
  40. var houses = JSON.parse(H.get('neighborhood', '[]'));
  41. var list = document.getElementById('street');
  42. if (houses.length > 0) {
  43. for (var i=houses.length-1; i>=0; i--) {
  44. var entry = document.createElement('li');
  45. entry.innerHTML = "<a href=\"/" + houses[i].id + ".html\">" + houses[i].id + "</a> &ndash; <a href=\"/edit/" + houses[i].id + ".html\">edit</a>";
  46. list.appendChild(entry);
  47. }
  48. } else {
  49. }
  50. </script>
  51. <script type="text/javascript">
  52. var _paq = _paq || [];
  53. _paq.push(["setCookieDomain", "*.html.house"]);
  54. _paq.push(["setDomains", ["*.html.house"]]);
  55. _paq.push(['trackPageView']);
  56. _paq.push(['enableLinkTracking']);
  57. (function() {
  58. var u="//analytics.write.as/";
  59. _paq.push(['setTrackerUrl', u+'piwik.php']);
  60. _paq.push(['setSiteId', 3]);
  61. var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  62. g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
  63. })();
  64. </script>
  65. <noscript><p><img src="//analytics.write.as/piwik.php?idsite=3" style="border:0;" alt="" /></p></noscript>
  66. </body>
  67. </html>