html BackBoneJS模板(所需库的CDN链接)

BackBoneJS模板(所需库的CDN链接)

BackboneJsTemplate.html
<!DOCTYPE HTML>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone-min.js"></script>
<script>
  // Your code goes here
</script>
</body>
</html>

html HTML:开始模板

HTML:开始模板

normalize.css
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
 
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
 
html {
  font-family: Arial; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
 
/**
 * Remove default margin.
 */
 
body {
  margin: 0;
}
 
/* HTML5 display definitions
   ========================================================================== */
 
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
 
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
 
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
 
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
 
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
 
audio:not([controls]) {
  display: none;
  height: 0;
}
 
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
 
[hidden],
template {
  display: none;
}
 
/* Links
   ========================================================================== */
 
/**
 * Remove the gray background color from active links in IE 10.
 */
 
a {
  background-color: transparent;
}
 
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
 
a:active,
a:hover {
  outline: 0;
}
 
/* Text-level semantics
   ========================================================================== */
 
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
 
abbr[title] {
  border-bottom: 1px dotted;
}
 
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
 
b,
strong {
  font-weight: bold;
}
 
/**
 * Address styling not present in Safari and Chrome.
 */
 
dfn {
  font-style: italic;
}
 
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
 
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
 
/**
 * Address styling not present in IE 8/9.
 */
 
mark {
  background: #ff0;
  color: #000;
}
 
/**
 * Address inconsistent and variable font size in all browsers.
 */
 
small {
  font-size: 80%;
}
 
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
 
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
 
sup {
  top: -0.5em;
}
 
sub {
  bottom: -0.25em;
}
 
/* Embedded content
   ========================================================================== */
 
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
 
img {
  border: 0;
}
 
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
 
svg:not(:root) {
  overflow: hidden;
}
 
/* Grouping content
   ========================================================================== */
 
/**
 * Address margin not present in IE 8/9 and Safari.
 */
 
figure {
  margin: 1em 40px;
}
 
/**
 * Address differences between Firefox and other browsers.
 */
 
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
 
/**
 * Contain overflow in all browsers.
 */
 
pre {
  overflow: auto;
}
 
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
 
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
 
/* Forms
   ========================================================================== */
 
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
 
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
 
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}
 
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
 
button {
  overflow: visible;
}
 
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
 
button,
select {
  text-transform: none;
}
 
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
 
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
 
/**
 * Re-set default cursor for disabled elements.
 */
 
button[disabled],
html input[disabled] {
  cursor: default;
}
 
/**
 * Remove inner padding and border in Firefox 4+.
 */
 
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
 
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
 
input {
  line-height: normal;
}
 
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
 
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
 
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
 
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
 
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
 
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}
 
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
 
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
 
/**
 * Define consistent border, margin, and padding.
 */
 
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
 
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
 
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
 
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
 
textarea {
  overflow: auto;
}
 
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
 
optgroup {
  font-weight: bold;
}
 
/* Tables
   ========================================================================== */
 
/**
 * Remove most spacing between table cells.
 */
 
table {
  border-collapse: collapse;
  border-spacing: 0;
}
 
td,
th {
  padding: 0;
}
index.html
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Title</title>
    <link rel="stylesheet" href="css/1.css">
</head>

<body>
    <div class="content">
        <h1>Negative top margins on footers</h1>
        <h2><a href="0.html">0.html</a><a class="right" href="2.html">2.html</a></h2>
        <p><button id="add">Add Content</button></p>
        <div id="push">
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ducimus aliquam iure maxime nobis porro ea inventore perferendis, dolorum, iusto, quod alias vero fugiat totam, suscipit eius expedita error cum ab quos quae fugit ratione atque aliquid! Voluptatem voluptatibus explicabo ipsa! Autem, impedit et rem. Maiores nisi assumenda distinctio accusantium ex id, possimus cupiditate sit aspernatur quo vero harum vitae blanditiis optio quia eius magnam sint facere earum itaque nostrum minima iste omnis, doloremque!</p>
        </div>
    </div>

    <footer class="footer">
        Footer
        <script src="js/script.js"></script>
    </footer>
</body>

</html>

html jsbin.edajur.html

jsbin.edajur.js
window.onload = function() {
  
  var mousePos,windowSize,
      posDisplay = document.getElementById("posDisplay"),
      counterDisplay = document.getElementById("counterDisplay"),
      counter = 0;
  
  var viewportWidth  = document.documentElement.clientWidth;
  var viewportHeight = document.documentElement.clientHeight;
  
  window.onmousemove = handleMouseMove;
  setInterval(getMousePosition, 100); // setInterval repeats every X ms

  function handleMouseMove(event) {
      event = event || window.event; // IE-ism
      mousePos = {
          x: event.clientX,
          y: event.clientY
      };
    windowSize = {
          x:  document.documentElement.clientWidth,
          y:  document.documentElement.clientHeight
    };
  } 
  

  function getMousePosition() {
      var pos = mousePos;
      var win = windowSize;
      if (!pos) {
          // We haven't seen any movement yet
          pos = {x: "?", y: "?"};
      }
    if (!windowSize){
      windowSize = {x: "?", y: "?"};
    }
      posDisplay.innerHTML = "(" + pos.x + "," + pos.y + ")";
      counterDisplay.innerHTML = ++counter;
      
      browserWidth.innerHTML=windowSize.x;
      browserHeight.innerHTML=windowSize.y;
  }
  
  function display(msg) {
    var p = document.createElement('p');
    p.innerHTML = msg;
    document.body.appendChild(p);
  }
};
jsbin.edajur.html
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
  body {
    font-family: sans-serif;
  }
</style>
</head>
<body>
  <p>Browser size: <span id="browserWidth"></span> <span id="browserHeight"></span></p>
  
  <p>Mouse position: <span id="posDisplay"></span></p>
  <p>Counter: <span id="counterDisplay"></span></p>
</body>
</html>

html jsbin..html

jsbin..js
window.onload = function() {
  
  var mousePos,
      posDisplay = document.getElementById("posDisplay"),
      counterDisplay = document.getElementById("counterDisplay"),
      counter = 0;
  
  var viewportWidth  = document.documentElement.clientWidth;
  var viewportHeight = document.documentElement.clientHeight;
  
  window.onmousemove = handleMouseMove;
  setInterval(getMousePosition, 1000); // setInterval repeats every X ms

  function handleMouseMove(event) {
      event = event || window.event; // IE-ism
      mousePos = {
          x: event.clientX,
          y: event.clientY
      };
  } 
  

  function getMousePosition() {
      var pos = mousePos;
      if (!pos) {
          // We haven't seen any movement yet
          pos = {x: "?", y: "?"};
      }
      posDisplay.innerHTML = "(" + pos.x + "," + pos.y + ")";
      counterDisplay.innerHTML = ++counter;
      
      browserWidth.innerHTML=viewportWidth;
      browserHeight.innerHTML=viewportHeight;
  }
  
  function display(msg) {
    var p = document.createElement('p');
    p.innerHTML = msg;
    document.body.appendChild(p);
  }
};
jsbin..html
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
  body {
    font-family: sans-serif;
  }
</style>
</head>
<body>
  <p>Browser size: <span id="browserWidth"></span> <span id="browserHeight"></span></p>
  
  <p>Mouse position: <span id="posDisplay"></span></p>
  <p>Counter: <span id="counterDisplay"></span></p>
</body>
</html>

html 詹姆斯斯坦巴赫的CodePen。图八旋转动画 - 这个想法归功于LayerVault。喜欢这个效果在他们的主页上

詹姆斯斯坦巴赫的CodePen。图八旋转动画 - 这个想法归功于LayerVault。喜欢这个效果在他们的主页上,想要自己重新创建它。可能不像他们那样干净/优雅,但它有效。 CSS类为编号框设置了15个绝对位置; jQuery更改了类,并且框移动了CSS转换。所有位置均基于包含div的百分比,其设置为4x6纵横比。

style.css
.eight-box {
	position: relative;
	display: block;
	margin: 1em auto;
	width: 16em;
	height: 24em;
  font-family: sans-serif;
  font-size: 20px;
}
.fig-8 {
	display: block;
	position: absolute;
	color: #fff;
	text-shadow: 0 0 2px #000;
	width: 2em;
	padding: .5em 0;
  text-align: center;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.col-1 {
	background: #1abc9c;
}
.col-2 {
	background: #9b59b6;
}
.col-3 {
	background: #27ae60;
}
.col-4 {
	background: #2c3e50;
}
.col-5 {
	background: #e74c3c;
}
.col-6 {
	background: #f39c12;
}
.col-7 {
	background: #bdc3c7;
}
.col-8 {
	background: #2ecc71;
}
.col-9 {
	background: #34495e;
}
.col-10 {
	background: #2980b9;
}
.col-11 {
	background: #f1c40f;
}
.col-12 {
	background: #d35400;
}
.col-13 {
	background: #7f8c8d;
}
.col-14 {
	background: #3498db;
}
.col-15 {
	background: #16a085;
}
.pos-1 {
	top: 0;
	left: 43.75%;
}
.pos-2 {
	top: 6.25%;
	left: 68.75%;
}
.pos-3 {
	top: 22.92%;
	left: 78.125%;
}
.pos-4 {
	top: 39.58%;
	left: 68.75%;
}
.pos-5 {
	top: 45.83%;
	left: 43.75%;
}
.pos-6 {
	top: 52.08%;
	left: 18.75%;
}
.pos-7 {
	top: 68.75%;
	left: 9.375%;
}
.pos-8 {
	top: 85.417%;
	left: 18.75%;
}
.pos-9 {
	top: 91.67%;
	left: 43.75%;
}
.pos-10 {
	top: 85.417%;
	left: 68.75%;
}
.pos-11 {
	top: 68.75%;
	left: 78.125%;
}
.pos-12 {
	top: 52.08%;
	left: 68.75%;
}
.pos-13 {
	top: 39.58%;
	left: 18.75%;
}
.pos-14 {
	top: 22.92%;
	left: 9.375%;
}
.pos-15 {
	top: 6.25%;
	left: 18.75%;
}
.smile {
  position: absolute;
  width: 2em;
  height: 1.4em;
  -webkit-transform: rotate(90deg);
  background: #c0392b;
  text-align: center;
  padding: .3em 0;
  border-radius: 50%;
  color: #fff;
}
.smile-1 {
  top: 22.92%;
  left: 43.75%;
}
.smile-2 {
  top: 68.75%;
  left: 43.75%;
}
script.js
var outerBox = $('.eight-box'),
    boxHeight = $(outerBox).height(),
    boxWidth = $(outerBox).width();
function changeNumbers() {
  var pos1 = $('.pos-1'),
      pos2 = $('.pos-2'),
      pos3 = $('.pos-3'),
      pos4 = $('.pos-4'),
      pos5 = $('.pos-5'),
      pos6 = $('.pos-6'),
      pos7 = $('.pos-7'),
      pos8 = $('.pos-8'),
      pos9 = $('.pos-9'),
      pos10 = $('.pos-10'),
      pos11 = $('.pos-11'),
      pos12 = $('.pos-12'),
      pos13 = $('.pos-13'),
      pos14 = $('.pos-14'),
      pos15 = $('.pos-15');
  $(pos1).addClass('pos-2');
  $(pos1).removeClass('pos-1');
  $(pos2).addClass('pos-3');
  $(pos2).removeClass('pos-2');
  $(pos3).addClass('pos-4');
  $(pos3).removeClass('pos-3');
  $(pos4).addClass('pos-5');
  $(pos4).removeClass('pos-4');
  $(pos5).addClass('pos-6');
  $(pos5).removeClass('pos-5');
  $(pos6).addClass('pos-7');
  $(pos6).removeClass('pos-6');
  $(pos7).addClass('pos-8');
  $(pos7).removeClass('pos-7');
  $(pos8).addClass('pos-9');
  $(pos8).removeClass('pos-8');
  $(pos9).addClass('pos-10');
  $(pos9).removeClass('pos-9');
  $(pos10).addClass('pos-11');
  $(pos10).removeClass('pos-10');
  $(pos11).addClass('pos-12');
  $(pos11).removeClass('pos-11');
  $(pos12).addClass('pos-13');
  $(pos12).removeClass('pos-12');
  $(pos13).addClass('pos-14');
  $(pos13).removeClass('pos-13');
  $(pos14).addClass('pos-15');
  $(pos14).removeClass('pos-14');
  $(pos15).addClass('pos-1');
  $(pos15).removeClass('pos-15');
};
var refreshId = setInterval(changeNumbers, 2000);
index.html
<div class="eight-box">
  <div class="fig-8 col-1 pos-1">1</div>
  <div class="fig-8 col-2 pos-2">2</div>
  <div class="fig-8 col-3 pos-3">3</div>
  <div class="fig-8 col-4 pos-4">4</div>
  <div class="fig-8 col-5 pos-5">5</div>
  <div class="fig-8 col-6 pos-6">6</div>
  <div class="fig-8 col-7 pos-7">7</div>
  <div class="fig-8 col-8 pos-8">8</div>
  <div class="fig-8 col-9 pos-9">9</div>
  <div class="fig-8 col-10 pos-10">10</div>
  <div class="fig-8 col-11 pos-11">11</div>
  <div class="fig-8 col-12 pos-12">12</div>
  <div class="fig-8 col-13 pos-13">13</div>
  <div class="fig-8 col-14 pos-14">14</div>
  <div class="fig-8 col-15 pos-15">15</div>
  <div class="smile smile-1">:)</div>
  <div class="smile smile-2">:)</div>
</div>

html Miva Merchant - KSE变量

Miva Merchant - KSE变量

miva-merchant-kse-variables.html
<mvt:item name="kse-variables" param="global" />
<mvt:item name="kse-variables" param="local" />
<mvt:item name="kse-variables" param="system" />

html 搜索Spring示例AJAX显示模板

搜索Spring示例AJAX显示模板

search-spring-example-ajax-display-template.html
<div id="{{ code|upper }}" class="{{ product_id }} item" {% if resultIndex%2 == 1 %}style="border-right: 0"{% endif %}>

{% set flag_names %} flag--new{% endset %}

<p class='name'><a href="{{ url }}" {{ intellisuggest }}>{{ name|escape }}</a></p>

<div class="prodimg">
<a href="{{ url }}" {{ intellisuggest }}><img src="{{ thumbnailImageUrl|strip_http }}" onerror="this.onerror=null;this.src='//d1qhbfo7yqnkif.cloudfront.net/ajax_search/img/missing-image-75x75.gif';" /></a>
</div>
<div class="prodinfo">
<p style="margin-bottom: 0">Item#: {{ code }}</p>
{% if nopricing and nopricing == "YES" %}
<span class="red" style="font-weight:bold;">Our Price: <a style="color:#ef3e42 !important;" class="call-price-link" href="http://www.yourdomain.com/documents/noprice_landingpage.php?keepThis=true&amp;TB_iframe=true&amp;height=200&amp;width=355" title="{{ name|escape }} Pricing" class="thickbox cboxElement">Click Here</a></span>
{% else %}
{% if product_discontinued and product_discontinued == "YES" %}
<!-- do nothing -->
{% else %}
<div class="hidden" id="hmap">{{ map }}</div>
<div class="hidden" id="hcost">{{ cost|money }}</div>
<div class="hidden" id="hprice">{{ price|money }}</div>
<div class="hidden" id="hmprice">{{ map_price|money }}</div>
<div class="hidden" id="hsave">{{ you_save }}</div>
<div class="hidden" id="hauth">{{ map_auth_type }}</div>
<div id="dopricing"></div>
{% endif %}
{% endif %}

<ul>
{% if short_desc_1 %}<li>{{ short_desc_1 }}</li>{% endif %}
{% if short_desc_2 %}<li>{{ short_desc_2 }}</li>{% endif %}
{% if short_desc_3 %}<li>{{ short_desc_3 }}</li>{% endif %}
{% if short_desc_4 %}<li>{{ short_desc_4 }}</li>{% endif %}
</ul>

</div>

<br class="clr">

<div class="pr_snippet_category" style="padding-left:16px;">

<div id="pr-snippet-{{ code|upper }}-1" class="pr-snippet">
<div class="pr-snippet-wrapper">
<div class="pr-snippet-stars">

{% if reviews_rating %}
<div class="pr-stars pr-stars-small pr-stars-{{ reviews_rating|preg_replace("/\\./", "_") }}-sm" style="background-position: 0px -{{ reviews_rating * 36 }}px;">&nbsp;</div>
<span class="pr-snippet-rating-decimal pr-rounded">
{% if reviews_ratingdecimal == 0 or reviews_ratingdecimal == 1 or reviews_ratingdecimal == 2 or reviews_ratingdecimal == 3 or reviews_ratingdecimal == 4 or reviews_ratingdecimal == 5 %}
{{ reviews_ratingdecimal }}.0
{% else %}
{{ reviews_ratingdecimal }}
{% endif %}
</span>
{% else %}
<div class="pr-stars pr-stars-small" style="background-position: 0px 0px">&nbsp;</div>
<span class="pr-snippet-rating-decimal pr-rounded">0.0</span>
{% endif %}

</div>

<p class="pr-snippet-review-count">({{ reviews_count }} reviews)</p>
<div class="pr-snippet-read-write">
{% if reviews_count != "" %}
<div class="pr-snippet-read-reviews">
<a id="pr-snippet-read-link-{{ code|upper }}" class="pr-snippet-link" data-pr-event="snippet-read-reviews" style="color:#0A87C6 !important;" href="javascript:readReviewsInline{{ product_id }}();">Read <span>{{ reviews_count }}</span> Reviews</a>
</div>
{% endif %}
<div class="pr-snippet-write-review">
{% if reviews_count == "" %}<p style="display:inline">Be the first to</p> {% endif %}<a class="pr-snippet-link" data-pr-event="snippet-write-review" href="http://www.yourdomain.com/review.html?pr_page_id={{ code|upper }}">Write a Review</a>
</div>
<div class="pr-clear"></div>
</div>
<div class="pr-clear"></div>
<div class="pr-snippet-social-bar">
<div class="pr-clear"></div>
</div>
</div>
</div>
</div>




<div class="prod-bottom-half">
<div class="prod-buttons">
<p><a href="{{ url }}" {{ intellisuggest }}><img width="109" height="27" alt="View Product" src="http://www.yourdomain.com/site/images/buttons/btn-cat-pg-view-product.jpg"></a></p>
{% if nopricing and nopricing == "YES" %}
<div id="catCart_button"><p><a style="color:#ef3e42 !important;" class="call-price-link" href="http://www.yourdomain.com/documents/noprice_landingpage.php?keepThis=true&amp;TB_iframe=true&amp;height=200&amp;width=355" title="{{ name|escape }} Pricing" class="thickbox cboxElement"><img width="109" height="27" alt="Add to Cart" src="http://www.yourdomain.com/site/images/buttons/btn-cat-pg-call-for-price.jpg"></a></p></div>
{% else %}
{% if product_discontinued and product_discontinued == "YES" %}
<!-- do nothing -->
{% else %}
<div id="catCart_button"><p><a href="http://www.yourdomain.com/mm5/merchant.mvc?Action=ADPR&amp;Screen=BASK&amp;Store_Code=IDW&amp;Quantity=1&amp;Attributes=Yes&amp;Product_Code={{ code }}"><img width="109" height="27" alt="Add to Cart" src="http://www.yourdomain.com/site/images/buttons/btn-cat-pg-add-to-cart.jpg"></a></p></div>
{% endif %}
{% endif %}
</div>
<div class="prod-icon">
{% if tiny_icon_url %}
<div id="cat_tinyicon" style="margin-bottom:5px;margin-top:0px;">
{{ tiny_icon_url }}
</div>
{% endif %}
<div class="compare-container">
{{ compare }}
</div>
</div>
<br class="clr">
</div>

</div>

html HTML,Flash:没有flash消息,下载flash

HTML,Flash:没有flash消息,下载flash

index.html
  		<div id="noFlash">
				<p>To experience our Strong application, you will need to download Flash 10.</p>
				<a class='hdr hdr-download_flash' href='http://get.adobe.com/flashplayer'>Download Flash 10</a>
			</div>

// or

<div id="containerId">
  <a href="http://www.adobe.com/go/getflashplayer">
		<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
	</a>
</div>

html API:地图

API:地图

mapbar.html
http://union.mapbar.com/minMap/showMap.jsp

html V9:链接

V9:链接

link.html
{pc:get sql="SELECT * FROM mk_link where typeid=83 and linktype=0 and passed =1" num="8"}
{php $count=0}
{loop $data $k $link}
<li {if $link[elite]}class="li-red"{else}class="li-qing"{/if}>
    <a href="{$link[url]}" title="{$link[name]}">{$link[name]}</a>
    {if ++$count != count($data) }<span class="cutter cutter-grey">|</span>{/if}
</li>
{/loop}
{/pc}