mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2025-06-16 01:16:39 +00:00
made anchor tags rel="me"
This commit is contained in:
parent
523197384e
commit
a2b46935d2
59
index.html
59
index.html
@ -28,13 +28,18 @@
|
||||
Astronautical Engineer | Computer Scientist
|
||||
<!--sse-->
|
||||
<br />
|
||||
<a href="mailto:anson@ansonbiggs.com">anson@ansonbiggs.com</a>
|
||||
<a href="mailto:anson@ansonbiggs.com" rel="me">anson@ansonbiggs.com</a>
|
||||
| (480) 322-8468 | Phoenix, Arizona<br />
|
||||
<a href="https://linkedin.com/in/ansonbiggs"
|
||||
<a href="https://linkedin.com/in/ansonbiggs" rel="me"
|
||||
>linkedin.com/in/ansonbiggs</a
|
||||
>
|
||||
| <a href="https://gitlab.com/MisterBiggs">gitlab.com/MisterBiggs</a> |
|
||||
<a href="https://ansonbiggs.com">ansonbiggs.com</a>
|
||||
|
|
||||
<a href="https://gitlab.com/MisterBiggs" rel="me"
|
||||
>gitlab.com/MisterBiggs</a
|
||||
>
|
||||
|
|
||||
<a href="https://ansonbiggs.com" rel="me">ansonbiggs.com</a>
|
||||
<a href="https://projects.ansonbiggs.com" rel="me"></a>
|
||||
<!--/sse-->
|
||||
</h3>
|
||||
</div>
|
||||
@ -179,50 +184,6 @@
|
||||
</dl>
|
||||
<h2>Engineering Project Writeups</h2>
|
||||
<br id="noprint" />
|
||||
<script>
|
||||
const RSS_URL = `https://projects.ansonbiggs.com/index.xml`;
|
||||
|
||||
fetch(RSS_URL)
|
||||
.then((response) => response.text())
|
||||
.then((str) => new window.DOMParser().parseFromString(str, "text/xml"))
|
||||
.then((data) => {
|
||||
console.log(data);
|
||||
const items = data.querySelectorAll("item");
|
||||
let articles = ``;
|
||||
let detailedlist = `<dl id="onlyprint">`;
|
||||
items.forEach((el) => {
|
||||
articles += `
|
||||
<article id="noprint">`;
|
||||
try {
|
||||
articles += `<a href="${
|
||||
el.querySelector("link").innerHTML
|
||||
}" target="_blank" rel="noopener">
|
||||
<img src="${el
|
||||
.querySelector("content")
|
||||
.getAttribute("url")}" alt="Post Thumbnail">
|
||||
</a>`;
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
articles += ` <a href="${
|
||||
el.querySelector("link").innerHTML
|
||||
}" target="_blank" rel="noopener">
|
||||
<h3>${el.querySelector("title").innerHTML}</h3>
|
||||
<p>${el.querySelector("description").innerHTML}</p>
|
||||
</a>
|
||||
</article>
|
||||
`;
|
||||
|
||||
detailedlist += `
|
||||
<dt><a href="${el.querySelector("link").innerHTML}">
|
||||
${el.querySelector("title").innerHTML}</a></dt>
|
||||
<dd>${el.querySelector("description").innerHTML}</dd>
|
||||
`;
|
||||
});
|
||||
detailedlist += `</dl>`;
|
||||
document.body.insertAdjacentHTML("beforeend", detailedlist);
|
||||
document.body.insertAdjacentHTML("beforeend", articles);
|
||||
});
|
||||
</script>
|
||||
<iframe src="https://www.polywork.com/ansonbiggs" frameborder="0"></iframe>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user