3

I would like to know the theme that is used by some website.

E.g. I would like to know the theme that is used by this site (reference).

What are the steps to find the theme/template that is used by xyz site.

4

3 に答える 3

7

Joomlaについて具体的に言えば、テンプレートが保持されているtemplatesという名前のフォルダーがあります。私は通常、使用してテンプレートについて調べます

  • パス (joomla の場合、/templates/(テーマ名)/style.css になります)
  • CSS ファイルのソースを表示する。多くのサイトでは、テンプレートのメタデータがそのまま残されています。

ただし、デザイナーがテンプレートのディレクトリ名を変更したり、css ファイル内からメタデータを削除したり、独自の css を一から作成したりした場合は、. テンプレートを特定することはあまりありません。したがって、使用されている CMS を特定し、CMS 固有のテンプレートを参照するという、難しい方法で行う必要があります。:)

これがお役に立てば幸いです!

于 2012-07-24T12:19:17.007 に答える
2

Joomla!1.5.xサイト

<meta name="generator" content="Joomla! 1.5 - Open Source Content Management" />

Joomla!1.0.xサイト

<meta name="Generator" content="Joomla! - Copyright (C) 2005 - 2007 Open Source Matters. All rights reserved." />

URLの後にアドレスバーに「/administrator」と入力します。

http://sitename/administrator   or http://sitename/index.php/administrator

URLの後に「?tp =1」と入力します。テンプレートのレイアウトを表示できます

http://www.joomla.org/?tp=1

ソースでplugin/system/またはplugin/content/を表示できます。

http://sitename/plugins/system/plg_jausersetting/script.js

cssファイルパス/templete/themename/style.css

http://sitename/templates/colette/css/template.css

于 2012-11-01T20:01:44.083 に答える
2

Firebug を開いてページを調べるだけで、使用されているテンプレートを示す関連リンクがいくつか表示されます。

たとえば、あなたが提供したピザハットのウェブサイトの場合:

*http: //www.pizzahut.fr/skin/frontend/pizza_new /default/favicon.ico*

于 2012-07-24T13:40:30.353 に答える