diff --git a/app/assets/js/scripts/landing.js b/app/assets/js/scripts/landing.js
index 9fed2b20..a83606f1 100644
--- a/app/assets/js/scripts/landing.js
+++ b/app/assets/js/scripts/landing.js
@@ -765,92 +765,4 @@ document.addEventListener('keydown', (e) => {
}
}
}
-})
-
-/**
- * Display a news article on the UI.
- *
- * @param {Object} articleObject The article meta object.
- * @param {number} index The article index.
- */
-function displayArticle(articleObject, index){
- newsArticleTitle.innerHTML = articleObject.title
- newsArticleTitle.href = articleObject.link
- newsArticleAuthor.innerHTML = 'by ' + articleObject.author
- newsArticleDate.innerHTML = articleObject.date
- newsArticleComments.innerHTML = articleObject.comments
- newsArticleComments.href = articleObject.commentsLink
- newsArticleContentScrollable.innerHTML = '
' + articleObject.content + '
'
- Array.from(newsArticleContentScrollable.getElementsByClassName('bbCodeSpoilerButton')).forEach(v => {
- v.onclick = () => {
- const text = v.parentElement.getElementsByClassName('bbCodeSpoilerText')[0]
- text.style.display = text.style.display === 'block' ? 'none' : 'block'
- }
- })
- newsNavigationStatus.innerHTML = index + ' of ' + newsArr.length
- newsContent.setAttribute('article', index-1)
-}
-
-/**
- * Load news information from the RSS feed specified in the
- * distribution index.
- */
-function loadNews(){
- return new Promise((resolve, reject) => {
- const distroData = DistroManager.getDistribution()
- const newsFeed = distroData.getRSS()
- const newsHost = new URL(newsFeed).origin + '/'
- $.ajax({
- url: newsFeed,
- success: (data) => {
- const items = $(data).find('item')
- const articles = []
-
- for(let i=0; i