mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
1. 관리자 메뉴 도구의 레이아웃 설치 페이지에서 섬네일 이미지 주소 올바르게 표시 되도록 수정. 2. 페이지 곳곳에 표시된 주소 중 HTTPS 접속이 가능한 사이트의 주소를 업데이트. 3. 주소가 변경된 사이트들의 주소를 업데이트.
37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
{'<?xml version="1.0" encoding="UTF-8" ?>'}
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title type="text">{$info->title}</title>
|
|
<!--@if($info->description)-->
|
|
<subtitle type="html">{str_replace('\'', ''', htmlspecialchars($info->description, ENT_COMPAT | ENT_HTML401, 'UTF-8', false))}</subtitle>
|
|
<!--@end-->
|
|
<updated>{$info->date}</updated>
|
|
<id>{$info->id}</id>
|
|
<link rel="alternate" type="text/html" hreflang="{$info->language}" href="{$info->link}"/>
|
|
<link rel="self" type="application/atom+xml" href="{$info->id}"/>
|
|
<generator uri="https://www.xpressengine.com/">XpressEngine</generator>
|
|
<!--@foreach($document_list as $oDocument)--> <entry>
|
|
<title><![CDATA[{$oDocument->getTitleText()}]]></title>
|
|
<id>{$oDocument->getPermanentUrl()}</id>
|
|
<published>{$oDocument->getRegdate('Y-m-d\TH:i:sP')}</published>
|
|
<updated>{zdate($oDocument->get('last_update'),'Y-m-d\TH:i:sP')}</updated>
|
|
<link rel="alternate" type="text/html" href="{$oDocument->getPermanentUrl()}"/>
|
|
<link rel="replies" type="text/html" href="{$oDocument->getPermanentUrl()}#comment"/>
|
|
<author>
|
|
<name><![CDATA[{str_replace('\'', ''',$oDocument->getNickName())}]]></name>
|
|
<!--@if($oDocument->isExistsHomepage())-->
|
|
<uri>{$oDocument->getHomepageUrl()}</uri>
|
|
<!--@end-->
|
|
</author>
|
|
<!--@if($open_rss_config[$oDocument->get('module_srl')]=='Y')-->
|
|
<content type="html"><![CDATA[{$oDocument->getTransContent(false,false,true)}]]></content>
|
|
<!--@else-->
|
|
<summary type="text"><![CDATA[{$oDocument->getContentText(100)}]]></summary>
|
|
<!--@end-->
|
|
<!--@foreach($oDocument->get('tag_list') as $tag)-->
|
|
<category term="{str_replace('\'', ''', htmlspecialchars($tag, ENT_COMPAT | ENT_HTML401, 'UTF-8', false))}"/>
|
|
<!--@end-->
|
|
|
|
</entry>
|
|
<!--@end-->
|
|
</feed>
|