[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
plugins
/
generic
/
announcementFeed
/
templates
/
[
Home
]
File: atom.tpl
{** * plugins/generic/announcementFeed/templates/atom.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Atom feed template * *} <?xml version="1.0" encoding="{$defaultCharset|escape}"?> <feed xmlns="http://www.w3.org/2005/Atom"> {* required elements *} <id>{$selfUrl|escape}</id> <title>{$journal->getLocalizedTitle()|strip|escape:"html"}: {translate key="announcement.announcements"}</title> <updated>{$dateUpdated|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"}</updated> {* recommended elements *} {* <author/> *} <link rel="alternate" href="{$journal->getUrl()|escape}" /> <link rel="self" type="application/atom+xml" href="{$selfUrl|escape}" /> {* optional elements *} {* <category/> *} {* <contributor/> *} <generator uri="http://pkp.sfu.ca/ojs/" version="{$ojsVersion|escape}">Open Journal Systems</generator> {if $journal->getLocalizedDescription()} {assign var="description" value=$journal->getLocalizedDescription()} {elseif $journal->getLocalizedSetting('searchDescription')} {assign var="description" value=$journal->getLocalizedSetting('searchDescription')} {/if} {if $description} <subtitle type="html">{$description|strip|escape:"html"}</subtitle> {/if} {foreach from=$announcements item=announcement} <entry> {* required elements *} <id>{url page="announcement" op="view" path=$announcement->getId()}</id> <title>{$announcement->getLocalizedTitleFull()|strip|escape:"html"}</title> <updated>{$announcement->getDatetimePosted()|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"}</updated> <author> <name>{$journal->getLocalizedTitle()|strip|escape:"html"}</name> </author> <link rel="alternate" href="{url page="announcement" op="view" path=$announcement->getId()}" /> {if $announcement->getLocalizedDescription()} <summary type="html" xml:base="{url page="announcement" op="view" path=$announcement->getId()}">{$announcement->getLocalizedDescription()|strip|escape:"html"}</summary> {/if} {* optional elements *} {* <category/> *} {* <contributor/> *} <published>{$announcement->getDatetimePosted()|date_format:"%Y-%m-%dT%T%z"|regex_replace:"/00$/":":00"}</published> {* <source/> *} {* <rights/> *} </entry> {/foreach} </feed>