if arrArticlesData(9, intArticlesLoop) = Filmer then
'display article details
response.write("<p>"& ids("Kategori") &": <a href='"& strBlogLocation &"games.asp?Category="& arrArticlesData(8, intArticlesLoop) &"' title='Kategori: "& safe_text(SQL_decode(arrArticlesData(9, intArticlesLoop))) &"'>"& SQL_decode(arrArticlesData(9, intArticlesLoop)) &"</a>")
response.write(" - "& ids("") &" "& web_time(arrArticlesData(4, intArticlesLoop), strBlogTimeFormat, "Full") &" - ")
'check comments are enabled
if arrArticlesData(5, intArticlesLoop) = 1 and intBlogCommentEnabled = 1 then
response.write(" <a href='"& strBlogLocation &"games.asp?Display="& arrArticlesData(0, intArticlesLoop) &"#Comments' title='"& ids("Antal kommentarer") &": "& safe_text(arrArticlesData(6, intArticlesLoop)) &"'>"& arrArticlesData(6, intArticlesLoop) &" "& ids("kommentarer") &"</a> - <a href='#' title='Lägg till det här spelet i dina favoriter.'>Favorit</a> - <a href='#' title='Vad tycker du om artikeln? Rösta!'>Rösta</a></p>")
end if
response.write("<p>")
'check whether the article has an exceprt
if arrArticlesData(2, intArticlesLoop) <> "" then
'display article exceprt
response.write(SQL_decode(arrArticlesData(2, intArticlesLoop)))
'display full atricle link
response.write("<p class='link'>")
response.write("<a href='"& strBlogLocation &"games.asp?Display="& arrArticlesData(0, intArticlesLoop) &"' title='"& replace(ids("Fortsätt."),"#TITLE#",safe_text(SQL_decode(arrArticlesData(1, intArticlesLoop)))) &"'>"& replace(ids("Spela"),"#TITLE#",SQL_decode(arrArticlesData(1, intArticlesLoop))) &"</a>")
response.write("</p>")
else
'display full article
response.write(SQL_decode(arrArticlesData(3, intArticlesLoop)))
response.write("<p> </p>")
'check for images and whether the gallery is enabled
if (isnull(arrArticlesData(7, intArticlesLoop)) = false and arrArticlesData(7, intArticlesLoop) <> "") and intBlogGalleryEnabled = 1 then
'display thumbnail gallery
call display_thumbs(SQL_decode(arrArticlesData(7, intArticlesLoop)))
response.write("</p>")
end if
end if
response.write("</div>")
'increment counter
intArticlesLoop = intArticlesLoop + 1
loop
end if
end if