t22000t commited on
Commit
fe68dee
·
verified ·
1 Parent(s): 0fc3bb9

Footer copyright + image; trim instruction comments

Browse files
Files changed (1) hide show
  1. index.html +15 -24
index.html CHANGED
@@ -11,15 +11,7 @@
11
  <link rel="apple-touch-icon" href="apple-touch-icon.png">
12
  <link rel="manifest" href="site.webmanifest">
13
 
14
- <!-- ============================================================
15
- SOCIAL SHARING (OpenGraph + Twitter)
16
- The image below uses a relative path so it works when og-image.png
17
- sits in the same folder as this page. For best results on every
18
- platform (LinkedIn in particular), once you know your live URL,
19
- replace the two RELATIVE paths with ABSOLUTE ones, e.g.
20
- <meta property="og:image" content="https://yoursite.com/og-image.png">
21
- and uncomment the og:url line with your real address.
22
- ============================================================ -->
23
  <meta property="og:site_name" content="The AI Loop">
24
  <meta property="og:type" content="website">
25
  <meta property="og:title" content="The money goes in circles. So do the chips.">
@@ -466,6 +458,8 @@
466
  .cite:hover{text-decoration:underline}
467
  .unc{font-size:.6em;vertical-align:super;color:var(--red);margin-left:2px;font-weight:700;cursor:help;border-bottom:1px dotted}
468
  .srcleg{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--muted-soft);letter-spacing:.02em}
 
 
469
  </style>
470
  </head>
471
  <body>
@@ -988,6 +982,8 @@
988
  The AI Loop
989
  </div>
990
  <div class="foot-meta" style="margin-top:10px">An independent map of the circular economy of AI.</div>
 
 
991
  </div>
992
  <div class="foot-meta">
993
  Compiled from public company filings, central-bank reports, and reporting by Bloomberg, CNBC, Fortune, the WSJ and others, current through <b id="meta-updated-foot">29 June 2026</b>.<br>
@@ -2444,22 +2440,17 @@ document.getElementById('companyRows').innerHTML = COMPANIES.map(c=>{
2444
  <td>${e.source?`<a href="${e.source}" target="_blank" rel="noopener" class="src-link">${host(e.source)} ↗</a>`:'n/a'}</td></tr>`).join('');
2445
  })();
2446
 
2447
- /* ============================================================
2448
- SETTINGS: fill these in once, then re-save the file.
2449
- Only contactEmail is required for the "Send a correction" button.
2450
- Everything else is optional; buttons you leave blank stay hidden,
2451
- and the share links auto-detect your address once the page is hosted.
2452
- ============================================================ */
2453
  const CONFIG = {
2454
- siteUrl: "", // e.g. "https://yoursite.com/" (blank = auto-detect once hosted)
2455
- contactEmail: "timothy22000@gmail.com", // CHANGE THIS, where corrections and messages arrive
2456
- formUrl: "", // optional Google Form / Tally link for structured submissions
2457
- githubUrl: "https://github.com/timothy22000/ai-loop", // optional repo URL (lets people open issues / pull requests)
2458
- xHandle: "", // optional X handle without the @, used for tweet attribution
2459
-
2460
- // Privacy-friendly analytics, both OFF by default. Set at most one.
2461
- plausibleDomain: "", // e.g. "theailoop.com" (loads plausible.io, cookieless)
2462
- goatCounterUrl: "" // e.g. "https://YOURCODE.goatcounter.com/count" (cookieless)
2463
  };
2464
 
2465
  /* Load analytics only if a value is set. Nothing third-party loads otherwise. */
 
11
  <link rel="apple-touch-icon" href="apple-touch-icon.png">
12
  <link rel="manifest" href="site.webmanifest">
13
 
14
+ <!-- Social sharing: OpenGraph + Twitter -->
 
 
 
 
 
 
 
 
15
  <meta property="og:site_name" content="The AI Loop">
16
  <meta property="og:type" content="website">
17
  <meta property="og:title" content="The money goes in circles. So do the chips.">
 
458
  .cite:hover{text-decoration:underline}
459
  .unc{font-size:.6em;vertical-align:super;color:var(--red);margin-left:2px;font-weight:700;cursor:help;border-bottom:1px dotted}
460
  .srcleg{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--muted-soft);letter-spacing:.02em}
461
+ .foot-card{display:block;margin-top:14px;width:100%;max-width:240px;height:auto;border:1px solid var(--line);border-radius:6px}
462
+ .foot-copy{margin-top:12px}
463
  </style>
464
  </head>
465
  <body>
 
982
  The AI Loop
983
  </div>
984
  <div class="foot-meta" style="margin-top:10px">An independent map of the circular economy of AI.</div>
985
+ <img class="foot-card" src="og-image.png" width="240" height="126" loading="lazy" alt="The AI Loop: a map of the circular economy of AI">
986
+ <div class="foot-meta foot-copy">&copy; 2026 Timothy Sum. MIT-licensed. <a href="https://github.com/timothy22000/ai-loop">Source on GitHub</a>.</div>
987
  </div>
988
  <div class="foot-meta">
989
  Compiled from public company filings, central-bank reports, and reporting by Bloomberg, CNBC, Fortune, the WSJ and others, current through <b id="meta-updated-foot">29 June 2026</b>.<br>
 
2440
  <td>${e.source?`<a href="${e.source}" target="_blank" rel="noopener" class="src-link">${host(e.source)} ↗</a>`:'n/a'}</td></tr>`).join('');
2441
  })();
2442
 
2443
+ /* Site configuration. See README for setup. */
 
 
 
 
 
2444
  const CONFIG = {
2445
+ siteUrl: "", // blank = auto-detect once hosted
2446
+ contactEmail: "timothy22000@gmail.com", // where corrections and messages arrive
2447
+ formUrl: "", // optional structured-submission link
2448
+ githubUrl: "https://github.com/timothy22000/ai-loop", // optional repo URL
2449
+ xHandle: "", // optional X handle without the @
2450
+
2451
+ // Privacy-friendly analytics, both off by default. Set at most one.
2452
+ plausibleDomain: "", // set your domain to enable Plausible (cookieless)
2453
+ goatCounterUrl: "" // set your GoatCounter count URL to enable (cookieless)
2454
  };
2455
 
2456
  /* Load analytics only if a value is set. Nothing third-party loads otherwise. */