「まったく何も分からない・・・」そんなユーザーさんの為のフォーラムです。どんなご質問でもお気軽にどうぞ。
-
tsu
- パワーユーザー
- 記事: 208
- 登録日時: 2006年1月16日(月) 12:00
- お住まい: さいたま
投稿記事
by tsu » 2006年9月10日(日) 12:54
多分どちらも一覧用のデザイン定義を使っているのだと思います。
エントリ1件分
「スキーマ名」+「デザイン名」+「.design.xsl」
コード: 全て選択
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="EUC-JP" omit-xml-declaration="yes" />
<xsl:template match="/entry">
<div class="diary_title">
<xsl:value-of select="title" />
</div>
<div class="diary_body">
<xsl:value-of select="body" />
</div>
</xsl:template>
</xsl:stylesheet>
で、埋め込みタグ
コード: 全て選択
<cmsd:entry name="xxxx" design="xxxx" />
[/code]
-
vision
- 記事: 2
- 登録日時: 2006年9月08日(金) 18:15
投稿記事
by vision » 2006年9月15日(金) 20:31
できましたー
ありがとうございました。