From d36795f8fcb2171106c879a438dc16cd492ab451 Mon Sep 17 00:00:00 2001 From: Stephen Fluin Date: Thu, 29 Apr 2021 08:28:06 -0700 Subject: [PATCH] add anchors to feeds and pairs Fix #48 --- _includes/feed.liquid | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_includes/feed.liquid b/_includes/feed.liquid index 20509b00337..0a185287861 100644 --- a/_includes/feed.liquid +++ b/_includes/feed.liquid @@ -38,12 +38,11 @@ section: smartContract render = (data) => { let html = ''; for(let network of data["{{stub}}"].networks) { - html += `

${network.name}

`; - console.log(network); + html += `

${network.name}

`; let proxyList = ''; for(let proxy of network.proxies) { - proxyList += `${proxy.pair}${proxy.decimals}${proxy.proxy}`; + proxyList += `${proxy.pair}${proxy.decimals}${proxy.proxy}`; } html += `${proxyList}
PairDecProxy
`; }