0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Movabletype カテゴリ

0
Posted at

title.html
<div class="widget widget-categories">
  <h3 class="widget-title">カテゴリ</h3>

  <ul class="category-list">
    <mt:TopLevelCategories>
      <li class="category-item">
        <!-- 親カテゴリ -->
        <div class="category-parent js-toggle">
          <$mt:CategoryLabel$>
        </div>

        <!-- サブカテゴリがある場合のみ表示 -->
        <mt:If tag="HasSubCategories">
          <ul class="category-children">
            <$mt:SubCatsRecurse$>
          </ul>
        </mt:If>
      </li>
    </mt:TopLevelCategories>
  </ul>
</div>

<!-- SubCatsRecurse 用 -->
<mt:SubCatsRecurse>
  <li class="category-child">
    <a href="<$mt:CategoryArchiveLink$>">
      <$mt:CategoryLabel$>
    </a>

    <mt:If tag="HasSubCategories">
      <ul class="category-children">
        <$mt:SubCatsRecurse$>
      </ul>
    </mt:If>
  </li>
</mt:SubCatsRecurse>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?