-
12-14-2011, 11:59 AM Top |
#1
قالب مگان فاکس قالب وبلاگ بازیگران خارجی میهن بلاگ

کد:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>[cb:blog_page_title]</title>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
BACKGROUND-COLOR: #e7e7e7;
background-image: url(http://temp-rch.persiangig.com/web/fox/bg.jpg); BACKGROUND-REPEAT: repeat-x;
}
#t3_logo{display:block; width:160px; height:20px; margin:5px auto; background:url('http://temp-rch.persiangig.com/web/fox/t3-logo.png') no-repeat 0 0; text-indent:-999em}
#t3_logo:hover{background-position:0 bottom}
.navigation A:link {
BORDER-RIGHT: #577482 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #577482 1px solid; DISPLAY: block; PADDING-LEFT: 3px; font-family:Tahoma; FONT-SIZE: 7pt; FLOAT: right; PADDING-BOTTOM: 3px; MARGIN: 1px; BORDER-LEFT: #577482 1px solid; WIDTH: 13px; COLOR: #cccccc; PADDING-TOP: 3px; BORDER-BOTTOM: #577482 1px solid; BACKGROUND-COLOR: #577482; TEXT-ALIGN: center; moz-border-radius: 2px
}
.navigation A:visited {
BORDER-RIGHT: #577482 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #577482 1px solid; DISPLAY: block; PADDING-LEFT: 3px; font-family:Tahoma; FONT-SIZE: 7pt; FLOAT: right; PADDING-BOTTOM: 3px; MARGIN: 1px; BORDER-LEFT: #577482 1px solid; WIDTH: 13px; COLOR: #666666; PADDING-TOP: 3px; BORDER-BOTTOM: #577482 1px solid; BACKGROUND-COLOR: #577482; TEXT-ALIGN: center; moz-border-radius: 2px
}
.navigation A:active {
BORDER-RIGHT: #577482 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #577482 1px solid; DISPLAY: block; PADDING-LEFT: 3px; font-family:Tahoma; FONT-SIZE: 7pt; FLOAT: right; PADDING-BOTTOM: 3px; MARGIN: 1px; BORDER-LEFT: #577482 1px solid; WIDTH: 13px; COLOR: #cccccc; PADDING-TOP: 3px; BORDER-BOTTOM: #577482 1px solid; BACKGROUND-COLOR: #577482; TEXT-ALIGN: center; moz-border-radius: 2px
}
.navigation A:hover {
BORDER-RIGHT: #577482 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #577482 1px solid; DISPLAY: block; PADDING-LEFT: 3px; font-family:Tahoma; FONT-SIZE: 7pt; FLOAT: right; PADDING-BOTTOM: 3px; MARGIN: 1px; BORDER-LEFT: #577482 1px solid; WIDTH: 13px; COLOR: #577482; PADDING-TOP: 3px; BORDER-BOTTOM: #577482 1px solid; BACKGROUND-COLOR: #394B55; TEXT-ALIGN: center; moz-border-radius: 2px
}
.style1 {
font-family: tahoma;
font-size: 13px;
color: #CCCCCC;
}
.style1 A:link {CURSOR: crosshair; color:#cccccc;text-decoration: none;}
.style1 A:visited {CURSOR: crosshair; color:#666666;text-decoration: none;}
.style1 A:hover {CURSOR: crosshair; color:#666666;text-decoration: none;}
.style2 {
font-family: tahoma;
font-size: 14px;
color: #FFFFFF;
}
.style2 A:link {CURSOR: crosshair; color:#ffffff;text-decoration: none;}
.style2 A:visited {CURSOR: crosshair; color:#666666;text-decoration: none;}
.style2 A:hover {CURSOR: crosshair; color:#666666;text-decoration: none;}
.style4 {
color: #CCCCCC;
font-family: tahoma;
font-size: 12px;
}
.style4 A:link {CURSOR: crosshair; color:#cccccc;text-decoration: none;}
.style4 A:visited {CURSOR: crosshair; color:#666666;text-decoration: none;}
.style4 A:hover {CURSOR: crosshair; color:#ffffff;text-decoration: none;}
-->
</style>
<script><!--FADING-LINKS-->
startColor = "#AFAFAF"; endColor = "#cccccc"; stepIn = 20; stepOut = 25; autoFade = true; sloppyClass = false; hexa = new makearray(16);
for(var i = 0; i < 10; i++)
hexa[i] = i; hexa[10]="a"; hexa[11]="b"; hexa[12]="c"; hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
document.onmouseover = domouseover; document.onmouseout = domouseout;
startColor = dehexize(startColor.toLowerCase()); endColor = dehexize(endColor.toLowerCase());
var fadeId = new Array();
function dehexize(Color){
var colorArr = new makearray(3);
for (i=1; i<7; i++){
for (j=0; j<16; j++){
if (Color.charAt(i) == hexa[j]){
if (i%2 !=0)
colorArr[Math.floor((i-1)/2)]=eval(j)*16;
else
colorArr[Math.floor((i-1)/2)]+=eval(j);
}
}
}
return colorArr;
}
function domouseover() {
if(document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade) || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1))
fade(startColor,endColor,srcElement.uniqueID,stepIn);
}
}
function domouseout() {
if (document.all){
var srcElement = event.srcElement;
if ((srcElement.tagName == "A" && autoFade) || srcElement.className == "fade" || (sloppyClass && srcElement.className.indexOf("fade") != -1))
fade(endColor,startColor,srcElement.uniqueID,stepOut);
}
}
function makearray(n) {
this.length = n;
for(var i = 1; i <= n; i++)
this[i] = 0;
return this;
}
function hex(i) {
if (i < 0)
return "00";
else if (i > 255)
return "ff";
else
return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setColor(r, g, b, element) {
var hr = hex(r); var hg = hex(g); var hb = hex(b);
element.style.color = "#"+hr+hg+hb;
}
function fade(s,e, element,step){
var sr = s[0]; var sg = s[1]; var sb = s[2];
var er = e[0]; var eg = e[1]; var eb = e[2];
if (fadeId[0] != null && fade[0] != element){
setColor(sr,sg,sb,eval(fadeId[0]));
var i = 1;
while(i < fadeId.length){
clearTimeout(fadeId[i]);
i++;
}
}
for(var i = 0; i <= step; i++) {
fadeId[i+1] = setTimeout("setColor(Math.floor(" +sr+ " *(( " +step+ " - " +i+ " )/ " +step+ " ) + " +er+ " * (" +i+ "/" +step+ ")),Math.floor(" +sg+ " * (( " +step+ " - " +i+ " )/ " +step+ " ) + " +eg+ " * (" +i+ "/" +step+")),Math.floor(" +sb+ " * ((" +step+ "-" +i+ ")/" +step+ ") + " +eb+ " * (" +i+ "/" +step+ ")),"+element+");",i*step);
}
fadeId[0] = element;
}
</script>
<SCRIPT src="http://temp-rch.persiangig.com/template/script.js"
type=text/javascript></SCRIPT>
</head>
<body>
<div align="center">
<table width="1000" height="475" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/logo.jpg">
<tr>
<td align="left" valign="bottom"><table width="881" height="245" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right" valign="middle"><table width="824" height="204" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right" valign="bottom"><table width="660" height="28" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="136" align="center" valign="top" class="style2"> <a href="[cb:blog_full_address]">HOME</a></td>
<td width="107" align="left" valign="top" class="style2"><a href="[cb:blog_contact_href]">Contact</a></td>
<td width="97" align="left" valign="top" class="style2"><a href="mailto:[cb:blog_email]">E-Mail</a></td>
<td width="86" align="left" valign="top" class="style2"><a href="[cb:blog_rss_href]">Rss</a></td>
<td width="234" align="left" valign="top" class="style2"><a href="[cb:blog_Atom_href]">Atom</a></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="707" height="51" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up.jpg">
<tr>
<td> </td>
</tr>
</table>
<table width="707" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/ce.jpg">
<tr>
<td align="center" valign="top"><table width="197" border="0" align="right" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top"><table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÏÑÈÇÑå æÈáÇ</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"><center>[cb:blog_logo]</center><br>[cb:blog_description] </td>
</tr>
</table>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ãäæí ÇÕáí</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4">
<a href="[cb:blog_full_address]" class="style1">ÕÝÍå äÎÓÊ</a><br>
<a href="mailto:[cb:blog_email]">ÓÊ Çá˜ÊÑæäí˜</a><br>
<a href="[cb:blog_rss_href]">ÎæÑÇß</a><br>
</td>
</tr>
</table><cb:block_linkdaily>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">íæäÏåÇí ÑæÒÇäå</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"><cb:loop_linkdaily>
<a href="[cb:linkdaily_href]" title="[cb:linkdaily_title]" target="_blank">
[cb:linkdaily_text]
</a><br/>
</cb:loop_linkdaily>
<a href="[cb:linkdaily_full_list_href]">åãå áíä˜åÇ</a>
<a href="[cb:linkdaily_new_href]"><b>ÇÑÓÇá áíä˜</b></a>
</td>
</tr>
</table></cb:block_linkdaily>
<cb:block_extrapage>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÕÝÍÇÊ ÌÇäÈí</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"><cb:loop_extrapage>
<a href="[cb:extrapage_href]">[cb:extrapage_title]</a><br/>
</cb:loop_extrapage>
</td>
</tr>
</table> </cb:block_extrapage>
<cb:block_blog_archive>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÂÑÔíæ</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"><cb:loop_blog_archive>
<a href='[cb:blog_archive_href]'>[cb:blog_archive_text]</a>
<br/>
</cb:loop_blog_archive>
<a href="[cb:blog_archive_full_list_href]">åãå ÂÑÔíæåÇ</a>
</td>
</tr>
</table> </cb:block_blog_archive>
<cb:block_blog_category>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÂÑÔíæ ãæÖæÚí</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"> <cb:loop_blog_category>
<a href="[cb:blog_category_href]">
[cb:blog_category_name]
</a> <br/>
</cb:loop_blog_category>
</td>
</tr>
</table> </cb:block_blog_category>
<cb:block_poll>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">äÙÑ ÓäÌí</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"> [cb:poll_question]<br>
<cb:loop_poll>
[cb:poll_answer]<br>
</cb:loop_poll>
<input type="submit" value="[cb:poll_button_text]"/>
<br>
</td>
</tr>
</table> </cb:block_poll>
<cb:block_link>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÏæÓÊÇä</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"> <cb:loop_link>
<a href="[cb:link_href]" title="[cb:link_title]" target="_blank">
[cb:link_text]
</a><br/>
</cb:loop_link>
</td>
</tr>
</table> </cb:block_link>
<cb:block_stat>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÂãÇÑ æÈáÇ</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"> ˜á ÈÇÒÏíÏ:[cb:stat_total_view]<br/>
ÈÇÒÏíÏ ÇãÑæÒ :[cb:stat_today_view]<br/>
ÈÇÒÏíÏ ÏíÑæÒ : [cb:stat_yesterday_view]<br/>
ÈÇÒÏíÏ Çíä ãÇå : [cb:stat_this_month_view]<br/>
ÈÇÒÏíÏ ãÇå ÞÈá : [cb:stat_last_month_view]<br/>
ÊÚÏÇÏ äæíÓäÏÇä : [cb:stat_total_author]<br/>
ÊÚÏÇÏ ˜á ÓÊ åÇ : [cb:stat_total_post]<br/>
ÂÎÑíä ÈÇÒÏíÏ : [cb:stat_last_view_date]<br/>
ÂÎÑíä ÈÑæÒ ÑÓÇäí : [cb:stat_modify_date]<br/>
</td>
</tr>
</table> </cb:block_stat>
<cb:block_script>
<table width="171" height="43" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-m.jpg">
<tr>
<td align="center"><table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" class="style2">ÏíÑ ãæÇÑÏ</td>
</tr>
</table></td>
</tr>
</table>
<table width="161" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" valign="top" class="style4"> [cb:blog_script]
</td>
</tr>
</table>
</cb:block_script>
</td>
</tr>
</table>
<table width="500" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td align="right" valign="top"><cb:block_post>
<cb:loop_post><table width="470" height="45" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/up-p.jpg">
<tr>
<td align="center"><table width="424" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="203" align="left" class="style4"></td>
<td width="132" align="right" class="style1">ÈÇÒÏíÏ :
<script src="http://fastwebcounter.com/secure.php?s=[cb:blog_full_address][cb:post_href]"></script > | </td>
<td width="87" align="right" class="style2"> <a href="[cb:post_href]">[cb:post_title]</a></td>
</tr>
</table></td>
</tr>
</table> <table width="470" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right" valign="top" class="style1">
<div class="postbody" dir="rtl" >[cb:post_body1]
[cb:post_body2]<br>
[cb:post_continue_link]</div><br>
<cb:block_post_tag>
<img src="http://temp-rch.persiangig.com/web/fox/icon_tag.gif">
<cb:loop_post_tag>
<font color="#000000" face="tahoma"> <a href="[cb:post_tag_href]" >
[cb:post_tag_name]
</a> ¡</font>
</cb:loop_post_tag> </cb:block_post_tag><br>
<img src="http://temp-rch.persiangig.com/web/fox/icon_comment.gif">
<a target="_self" href="[cb:post_comment_href]">[cb:post_comment_text] [cb:post_comment_count]</a> | [cb:post_create_date] | [cb:post_author_name]
</td>
</tr>
</table> </cb:loop_post>
</cb:block_post></td>
</tr>
</table></td>
</tr>
</table>
<table width="707" height="59" border="0" cellpadding="0" cellspacing="0" background="http://temp-rch.persiangig.com/web/fox/do.jpg">
<tr>
<td align="center"><table width="635" height="31" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top"><table width="435" height="30" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="285" align="right" class="navigation"><cb:block_pages>
<cb:loop_pages>
<a href=" [cb:pages_href]"> [cb:pages_no]</a>
</cb:loop_pages>
</td>
<td width="150" align="right" class="style4">[cb:pages_total] : ÊÚÏÇÏ ÕÝÍÇÊ </cb:block_pages></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
<table width="700" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top"><a href="http://www.jay-rch.mihanblog.com" target="_blank" id="t3_logo">Powered by JAy-Rch</a></td>
</tr>
</table>
</div>
</body>
</html>
-
12-14-2011 11:59 AM # ADS
Bookmarks