Ghazmar
Registered User
- تاریخ عضویت
- 27 دسامبر 2002
- نوشتهها
- 766
- لایکها
- 3
آقا من ميخوام از بلاگر مهاجرت كنم به MT. ولي نه بلدم قالبم رو عوض كنم، نه حال و حوصلة خوندن ليست Tag هاي MT رو دارم. اين احسان هم كه فك كنم تا حالا 25 تا پست نوشته: كار آسونيه، Tag هاي MT رو بايد اضافه كني، اينجا و اينجا رو هم ببين!
آدم خيرخواه اينجا پيدا ميشه قالباي ما رو برامون درست كنه؟ خدا 128 در دنيا، 1024 تا هم در آخرت بهش عوض بده!
به قول معروف: همسايهها كمك كنين، غزمر بلاگداري كنه!
اينم قالبها:
قالب نوشتهها:
[code:1]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<meta http-equiv="Content-Type" CONTENT="text/html; charset=utf-8">
<html>
<head>
<title>!و اينك اين من ِ سانسور شده</title>
<script language="JavaScript">
<!--
<!--
// -->
/********************************************************************************/
/* */
/* solar.js - Solar Date Utility Functions */
/* Copyright(C) 2002-2003 Mahmood Shafiee Zargar, all rights reserved. */
/* */
/* [email protected] */
/* http://sobh.netfirms.com */
/* */
/* Original Pascal Code By Kambiz R. Khojaste */
/* */
/* This file is provided "AS IS" without any warranty of any kind, either */
/* express or implied. The entire risk as to the quality and performance */
/* of the functions provided in this unit are with you. The author is NOT */
/* liable for any DAMAGES resulting from the use and misuse of the unit, */
/* especially he is NOT liable for DAMAGES that were caused BY ANY VERSION */
/* WHICH HAS NOT BEEN PROGRAMMED BY THE AUTHOR HIMSELF. */
/* */
/********************************************************************************/
var dkSolar = 0;
var dkGregorian = 1;
var DaysOfMonths = new Array();
var LeapMonth = new Array();
var DaysToMonth = new Array();
DaysOfMonths = [[31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29], [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]];
LeapMonth = [12, 2];
DaysToMonth = [[0, 31, 62, 93, 124, 155, 186, 216, 246, 276, 306, 336, 365], [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]];
function Integer(val)
{
this.value = val;
}
function IsLeapYear(DateKind, Year)
{
if (DateKind == dkSolar)
return ((((Year + 38) * 31) % 128) <= 30);
else
return (((Year % 4) == 0) && (((Year % 100) != 0) || ((Year % 400) == 0)));
}
function DaysOfMonth(DateKind, Year, Month)
{
var Result;
if ((Year != 0) && ((Month <= 12) && (Month >= 1)))
{
Result = DaysOfMonths[DateKind][Month - 1];
if ((Month == LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function IsDateValid(DateKind, Year, Month, Day)
{
return ((Year!= 0) && (Month >= 1) && (Month <= 12) && (Day >= 1) && Day <= (DaysOfMonth(DateKind, Year, Month)));
}
function DaysToDate(DateKind, Year, Month, Day)
{
var Result;
if (IsDateValid(DateKind, Year, Month, Day))
{
Result = DaysToMonth[DateKind][Month - 1] + Day;
if ((Month > LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function DateOfDay(DateKind, Days, Year, Month, Day)
{
var LeapDay = 0;
Month.value = 0;
Day.value = 0;
for (var m = 2; m <= 13; m++)
{
if ((m > LeapMonth[DateKind]) && (IsLeapYear(DateKind, Year))) LeapDay = 1;
if (Days <= (DaysToMonth[DateKind][m - 1] + LeapDay))
{
Month.value = m - 1;
if (Month.value <= LeapMonth[DateKind]) LeapDay = 0;
Day.value = Days - (DaysToMonth[DateKind][Month.value - 1] + LeapDay);
break;
}
}
return IsDateValid(DateKind, Year, Month.value, Day.value);
}
function GregorianToSolar(Year, Month, Day)
{
var LeapDay, Days, PrevGregorianLeap, Result;
if (IsDateValid(dkGregorian, Year.value, Month.value, Day.value))
{
PrevGregorianLeap = IsLeapYear(dkGregorian, Year.value - 1);
Days = DaysToDate(dkGregorian, Year.value, Month.value, Day.value);
Year.value -= 622;
if (IsLeapYear(dkSolar, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevGregorianLeap && (LeapDay == 1)) Days += 287
else Days += 286;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkSolar, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
function SolarToGregorian(Year, Month, Day)
{
var LeapDay, Days, PrevSolarLeap, Result;
if (IsDateValid(dkSolar, Year.value, Month.value, Day.value))
{
PrevSolarLeap = IsLeapYear(dkSolar, Year.value - 1);
Days = DaysToDate(dkSolar, Year.value, Month.value, Day.value);
Year.value += 621;
if (IsLeapYear(dkGregorian, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevSolarLeap && (LeapDay = 1)) Days += 80
else Days += 79;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkGregorian, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
var MonthNames = new Array();
var WeekDayNames = new Array();
var MonthDayNames = new Array();
MonthNames = ["فروردین", "اردیبهشت", "خرداد", "تیر", "مرداد", "شهریور", "مهر", "آبان", "آذر", "دی", "بهمن", "اسفند"];
WeekDayNames = ["یکشنبه", "دوشنبه", "سه شنبه", "چهار شنبه", "پنج شنبه", "جمعه", "شنبه"];
MonthDayNames = ["اول", "دوم", "سوم", "چهارم", "پنجم", "ششم", "هفتم", "هشتم", "نهم", "دهم", "یازدهم", "دوازدهم", "سیزدهم", "چهاردهم", "پانزدهم", "شانزدهم", "هفدهم", "هجدهم", "نوزدهم", "بیستم", "بیست و یکم", "بیست و دوم", "بیست و سوم", "بیست و چهارم", "بیست و پنجم", "بیست و ششم", "بیست و هفتم", "بیست و هشتم", "بیست و نهم", "سی ام", "سی و یکم"];
function ConvertStr(DateStr, Format)
{
var Result;
var ObjDate = new Date();
var SplDate = DateStr.split("/");
var M = new Integer(parseInt(SplDate[0]));
var D = new Integer(parseInt(SplDate[1]));
var Y = new Integer(parseInt(SplDate[2]));
ObjDate.setFullYear(Y.value);
ObjDate.setMonth(M.value - 1);
ObjDate.setDate(D.value);
var W = ObjDate.getDay();
if (GregorianToSolar(Y, M, D))
switch (Format)
{
case 0:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
case 1:
Result = D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 2:
Result = (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 3:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 4:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
case 5:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + Y.value;
break;
case 6:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 7:
Result = WeekDayNames[W] + "، " + (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 8:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 9:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
default:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
}
else
Result = "Error converting date.";
return Result;
}
function ConvertDateTag(DateStr, Format)
{
return "<div align=right dir=rtl>" + ConvertStr(DateStr, Format) + "</div>";
}
function ConvertArchiveTag(DatesStr, Format)
{
var Dates = new Array();
Dates = DatesStr.split("-");
var Result = ConvertStr(Dates[0], Format) + " - " + ConvertStr(Dates[1], Format);
return "<div align=right dir=rtl>" + Result + "</div>";
}
// -->
</script>
<!--Set the following content-values to the description and keywords you would like
search engines to associate with your blog.
-->
<meta name="description" content="">
<meta name="keywords" content="">
<style>
body {background:white;margin: 0px;font-family: tahoma, times new roman, sans-serif;color: black;}
.blogtitle {font-family:Homa, Times New Roman, sans-serif;color: white;font-size:36px;margin:2px;}
.links {font-family: Tahoma, Times New Roman, sans-serif;color: black;font-size:11px;line-height:170%}
A {color:#0069c3;}
A:hover {color:red;}
A.byline {color:#999999;text-decoration:none;line-height:150%;font-weight:bold;}
.date {font-family: tahoma, Arial, sans-serif; color:#CC3333; font-size:80%; font-weight:bold;}
.posts {font-family: tahoma, times new roman, sans-serif;color: black;font-size:70%; line-height:170%}
.byline {font-family: }
</style>
</head>
<!--
<body bgcolor="White" marginwidth="0" marginheight="0">
-->
<body>
<table width="620" bgcolor="black" cellspacing="1" cellpadding="10" align="center">
<tr height="10"><td bgcolor="#999999"></tr>
<tr height="80">
<td align="right" bgcolor="#31639C" class="blogtitle">!و اينك اين من ِ سانسور شده
</tr>
<tr height="10"><td bgcolor="#999999"></tr>
</table>
<br><br>
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td valign="top" width="30%"><br><br>
<div class="links">
<p><a href="./">صفحه اصلی</a>
<br><a href="<$BlogArchiveFileName$>" class="links">انبار</a>
<p><a href="mailto:[email protected]">به سوي من</a>
<p>
<a href="http://ayda.blogspot.com/">Carpe Diem</a>
<br><a href="http://Hoder.com/i"> حسين درخشان</a>
<br><a href="http://www.globalpersian.com/salman/weblog.html"> سلمان</a>
<br><a href="http://younesspace.blogspot.com/"> دات</a>
<br><a href="http://EULogist.PersianBlog.com/">نياز</a>
<br><a href="http://ehsan.blogspot.com/">Me, Myself & Ehsan</a>
<br><a href="http://Hooshmandzadeh.blogspot.com/"> چخوف منو نديدين</a>
<br><a href="http://RaminGB.blogspot.com/"> رامين</a>
<br><a href="http://med.persianblog.com/">مهدي</a>
<br><a href="http://www.KSajadi.com/fblog/"> افكار خصوصي</a>
<p>
<p>
<br><a href="http://vahid.blogspot.com/"> وحيد</a>
<br><a href="http://www.AmiReza.com/a/"> اميررضا</a>
<br><a href="http://PedramP.PersianBlog.com/">@ Site @</a>
<br><a href="http://www.Xanga.com/">Dariush</a>
<br>etc.
<p><a href="http://www.blogger.com">
<img border="0" width=88 height=31 src="http://buttons.blogger.com/bloggerbutton1.gif" border=0 alt="[Powered by Blogger]"></a>
<!-- Begin Nedstat Basic code -->
<!-- Title: Ghazmar -->
<!-- URL: http://ghazmar.blogspot.com/ -->
<script language="JavaScript" type="text/javascript" src="http://m1.nedstatbasic.net/basic.js">
</script>
<script language="JavaScript" type="text/javascript" >
<!--
nedstatbasic("ACMRtQfEgqERh+wahPJ4xJB4xnbA", 0);
// -->
</script>
<noscript>
<a target="_blank" href="http://v1.nedstatbasic.net/stats?ACMRtQfEgqERh+wahPJ4xJB4xnbA"><img
src="http://m1.nedstatbasic.net/n?id=ACMRtQfEgqERh+wahPJ4xJB4xnbA"
border="0" nosave width="18" height="18"
alt="Nedstat Basic - Free web site statistics"></a>
</noscript>
<!-- End Nedstat Basic code -->
</div>
</td>
<!--This is where the actual content of your blog goes.
-->
<td width="10%"></td>
<td valign="top" dir="rtl" width="60%">
<Blogger>
<BlogDateHeader>
<span class="date">
<script language="JavaScript">
<!--
document.write(ConvertDateTag("<$BlogDateHeaderDate$>", 5));
// -->
</script>
</span>
<br><br></BlogDateHeader>
<a name="<$BlogItemNumber$>"></a>
<div class="posts" dir="rtl">
٭ <$BlogItemBody$><br>
<a class="byline" href="<$BlogItemArchiveFileName$>#<$BlogItemNumber$>">
نوشته شده در ساعت
<$BlogItemDateTime$>
توسط <$BlogItemAuthor$>
</a><br><br>
</div>
<BlogDateFooter>
<span style="font-size:12px;color=#B0B0B0;">........................................................................................</span><br><br>
</BlogDateFooter>
</Blogger>
<p>
<div align="center">
<a style="font-size:14px;font-weight:bold" href="./">Home</a>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>[/code:1]
قالب آرشيو:
[code:1]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<meta http-equiv="Content-Type" CONTENT="text/html; charset=utf-8">
<html>
<head>
<title>!و اينك اين من ِ سانسور شده</title>
<script language="JavaScript">
<!--
<!--
// -->
/********************************************************************************/
/* */
/* solar.js - Solar Date Utility Functions */
/* Copyright(C) 2002-2003 Mahmood Shafiee Zargar, all rights reserved. */
/* */
/* [email protected] */
/* http://sobh.netfirms.com */
/* */
/* Original Pascal Code By Kambiz R. Khojaste */
/* */
/* This file is provided "AS IS" without any warranty of any kind, either */
/* express or implied. The entire risk as to the quality and performance */
/* of the functions provided in this unit are with you. The author is NOT */
/* liable for any DAMAGES resulting from the use and misuse of the unit, */
/* especially he is NOT liable for DAMAGES that were caused BY ANY VERSION */
/* WHICH HAS NOT BEEN PROGRAMMED BY THE AUTHOR HIMSELF. */
/* */
/********************************************************************************/
var dkSolar = 0;
var dkGregorian = 1;
var DaysOfMonths = new Array();
var LeapMonth = new Array();
var DaysToMonth = new Array();
DaysOfMonths = [[31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29], [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]];
LeapMonth = [12, 2];
DaysToMonth = [[0, 31, 62, 93, 124, 155, 186, 216, 246, 276, 306, 336, 365], [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]];
function Integer(val)
{
this.value = val;
}
function IsLeapYear(DateKind, Year)
{
if (DateKind == dkSolar)
return ((((Year + 38) * 31) % 128) <= 30);
else
return (((Year % 4) == 0) && (((Year % 100) != 0) || ((Year % 400) == 0)));
}
function DaysOfMonth(DateKind, Year, Month)
{
var Result;
if ((Year != 0) && ((Month <= 12) && (Month >= 1)))
{
Result = DaysOfMonths[DateKind][Month - 1];
if ((Month == LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function IsDateValid(DateKind, Year, Month, Day)
{
return ((Year!= 0) && (Month >= 1) && (Month <= 12) && (Day >= 1) && Day <= (DaysOfMonth(DateKind, Year, Month)));
}
function DaysToDate(DateKind, Year, Month, Day)
{
var Result;
if (IsDateValid(DateKind, Year, Month, Day))
{
Result = DaysToMonth[DateKind][Month - 1] + Day;
if ((Month > LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function DateOfDay(DateKind, Days, Year, Month, Day)
{
var LeapDay = 0;
Month.value = 0;
Day.value = 0;
for (var m = 2; m <= 13; m++)
{
if ((m > LeapMonth[DateKind]) && (IsLeapYear(DateKind, Year))) LeapDay = 1;
if (Days <= (DaysToMonth[DateKind][m - 1] + LeapDay))
{
Month.value = m - 1;
if (Month.value <= LeapMonth[DateKind]) LeapDay = 0;
Day.value = Days - (DaysToMonth[DateKind][Month.value - 1] + LeapDay);
break;
}
}
return IsDateValid(DateKind, Year, Month.value, Day.value);
}
function GregorianToSolar(Year, Month, Day)
{
var LeapDay, Days, PrevGregorianLeap, Result;
if (IsDateValid(dkGregorian, Year.value, Month.value, Day.value))
{
PrevGregorianLeap = IsLeapYear(dkGregorian, Year.value - 1);
Days = DaysToDate(dkGregorian, Year.value, Month.value, Day.value);
Year.value -= 622;
if (IsLeapYear(dkSolar, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevGregorianLeap && (LeapDay == 1)) Days += 287
else Days += 286;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkSolar, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
function SolarToGregorian(Year, Month, Day)
{
var LeapDay, Days, PrevSolarLeap, Result;
if (IsDateValid(dkSolar, Year.value, Month.value, Day.value))
{
PrevSolarLeap = IsLeapYear(dkSolar, Year.value - 1);
Days = DaysToDate(dkSolar, Year.value, Month.value, Day.value);
Year.value += 621;
if (IsLeapYear(dkGregorian, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevSolarLeap && (LeapDay = 1)) Days += 80
else Days += 79;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkGregorian, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
var MonthNames = new Array();
var WeekDayNames = new Array();
var MonthDayNames = new Array();
MonthNames = ["فروردین", "اردیبهشت", "خرداد", "تیر", "مرداد", "شهریور", "مهر", "آبان", "آذر", "دی", "بهمن", "اسفند"];
WeekDayNames = ["یکشنبه", "دوشنبه", "سه شنبه", "چهار شنبه", "پنج شنبه", "جمعه", "شنبه"];
MonthDayNames = ["اول", "دوم", "سوم", "چهارم", "پنجم", "ششم", "هفتم", "هشتم", "نهم", "دهم", "یازدهم", "دوازدهم", "سیزدهم", "چهاردهم", "پانزدهم", "شانزدهم", "هفدهم", "هجدهم", "نوزدهم", "بیستم", "بیست و یکم", "بیست و دوم", "بیست و سوم", "بیست و چهارم", "بیست و پنجم", "بیست و ششم", "بیست و هفتم", "بیست و هشتم", "بیست و نهم", "سی ام", "سی و یکم"];
function ConvertStr(DateStr, Format)
{
var Result;
var ObjDate = new Date();
var SplDate = DateStr.split("/");
var M = new Integer(parseInt(SplDate[0]));
var D = new Integer(parseInt(SplDate[1]));
var Y = new Integer(parseInt(SplDate[2]));
ObjDate.setFullYear(Y.value);
ObjDate.setMonth(M.value - 1);
ObjDate.setDate(D.value);
var W = ObjDate.getDay();
if (GregorianToSolar(Y, M, D))
switch (Format)
{
case 0:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
case 1:
Result = D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 2:
Result = (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 3:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 4:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
case 5:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + Y.value;
break;
case 6:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 7:
Result = WeekDayNames[W] + "، " + (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 8:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 9:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
default:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
}
else
Result = "Error converting date.";
return Result;
}
function ConvertDateTag(DateStr, Format)
{
return "<div align=right dir=rtl>" + ConvertStr(DateStr, Format) + "</div>";
}
function ConvertArchiveTag(DatesStr, Format)
{
var Dates = new Array();
Dates = DatesStr.split("-");
var Result = ConvertStr(Dates[0], Format) + " - " + ConvertStr(Dates[1], Format);
return "<div align=right dir=rtl>" + Result + "</div>";
}
// -->
</script>
<!--Set the following content-values to the description and keywords you would like
search engines to associate with your blog.
-->
<meta name="description" content="">
<meta name="keywords" content="">
<style>
body {background:white;margin: 0px;font-family: tahoma, times new roman, sans-serif;color: black;}
.blogtitle {font-family:Homa, Times New Roman, sans-serif;color: white;font-size:36px;margin:2px;}
.links {font-family: Tahoma, Times New Roman, sans-serif;color: black;font-size:11px;line-height:170%}
A {color:#0069c3;}
A:hover {color:red;}
A.byline {color:#999999;text-decoration:none;line-height:150%;font-weight:bold;}
.date {font-family: tahoma, Arial, sans-serif; color:#CC3333; font-size:80%; font-weight:bold;}
.posts {font-family: tahoma, times new roman, sans-serif;color: black;font-size:70%; line-height:170%}
.byline {font-family: }
</style>
</head>
<!--
<body bgcolor="White" marginwidth="0" marginheight="0">
-->
<body>
<table width="620" bgcolor="black" cellspacing="1" cellpadding="10" align="center">
<tr height="10"><td bgcolor="#999999"></tr>
<tr height="80">
<td align="right" bgcolor="#31639C" class="blogtitle">!و اينك اين من ِ سانسور شده
</tr>
<tr height="10"><td bgcolor="#999999"></tr>
</table>
<br><br>
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td valign="top" width="30%"><br><br>
<div class="links">
<p><a href="./">صفحه اصلی</a>
<br><a href="<$BlogArchiveFileName$>" class="links">انبار</a>
<p><a href="mailto:[email protected]">به سوي من</a>
<p>
<a href="http://ayda.blogspot.com/">Carpe Diem</a>
<br><a href="http://Hoder.com/i"> حسين درخشان</a>
<br><a href="http://www.globalpersian.com/salman/weblog.html"> سلمان</a>
<br><a href="http://younesspace.blogspot.com/"> دات</a>
<br><a href="http://EULogist.PersianBlog.com/">نياز</a>
<br><a href="http://ehsan.blogspot.com/">Me, Myself & Ehsan</a>
<br><a href="http://Hooshmandzadeh.blogspot.com/"> چخوف منو نديدين</a>
<br><a href="http://RaminGB.blogspot.com/"> رامين</a>
<br><a href="http://med.persianblog.com/">مهدي</a>
<br><a href="http://www.KSajadi.com/fblog/"> افكار خصوصي</a>
<p>
<p>
<br><a href="http://vahid.blogspot.com/"> وحيد</a>
<br><a href="http://www.AmiReza.com/a/"> اميررضا</a>
<br><a href="http://PedramP.PersianBlog.com/">@ Site @</a>
<br><a href="http://www.Xanga.com/">Dariush</a>
<br>etc.
<p><a href="http://www.blogger.com">
<img border="0" width=88 height=31 src="http://buttons.blogger.com/bloggerbutton1.gif" border=0 alt="[Powered by Blogger]"></a>
<!-- Begin Nedstat Basic code -->
<!-- Title: Ghazmar -->
<!-- URL: http://ghazmar.blogspot.com/ -->
<script language="JavaScript" type="text/javascript" src="http://m1.nedstatbasic.net/basic.js">
</script>
<script language="JavaScript" type="text/javascript" >
<!--
nedstatbasic("ACMRtQfEgqERh+wahPJ4xJB4xnbA", 0);
// -->
</script>
<noscript>
<a target="_blank" href="http://v1.nedstatbasic.net/stats?ACMRtQfEgqERh+wahPJ4xJB4xnbA"><img
src="http://m1.nedstatbasic.net/n?id=ACMRtQfEgqERh+wahPJ4xJB4xnbA"
border="0" nosave width="18" height="18"
alt="Nedstat Basic - Free web site statistics"></a>
</noscript>
<!-- End Nedstat Basic code -->
</div>
</td>
<!--This is where the actual content of your blog goes.
-->
<td width="10%"></td>
<td valign="top" dir="rtl" width="60%">
<p><div class="date">آرشيو</div>
<div class="posts">
<p>
<Blogger>
<a class='links' href='<$BlogArchiveLink$>'>
<script language="JavaScript">
<!--
document.write(ConvertArchiveTag("<$BlogArchiveName$>"));
// -->
</script>
</a><br>
</Blogger>
</div>
<p>
<div align="center">
<a style="font-size:14px;font-weight:bold" href="./">Home</a>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>[/code:1]
آدم خيرخواه اينجا پيدا ميشه قالباي ما رو برامون درست كنه؟ خدا 128 در دنيا، 1024 تا هم در آخرت بهش عوض بده!
به قول معروف: همسايهها كمك كنين، غزمر بلاگداري كنه!
اينم قالبها:
قالب نوشتهها:
[code:1]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<meta http-equiv="Content-Type" CONTENT="text/html; charset=utf-8">
<html>
<head>
<title>!و اينك اين من ِ سانسور شده</title>
<script language="JavaScript">
<!--
<!--
// -->
/********************************************************************************/
/* */
/* solar.js - Solar Date Utility Functions */
/* Copyright(C) 2002-2003 Mahmood Shafiee Zargar, all rights reserved. */
/* */
/* [email protected] */
/* http://sobh.netfirms.com */
/* */
/* Original Pascal Code By Kambiz R. Khojaste */
/* */
/* This file is provided "AS IS" without any warranty of any kind, either */
/* express or implied. The entire risk as to the quality and performance */
/* of the functions provided in this unit are with you. The author is NOT */
/* liable for any DAMAGES resulting from the use and misuse of the unit, */
/* especially he is NOT liable for DAMAGES that were caused BY ANY VERSION */
/* WHICH HAS NOT BEEN PROGRAMMED BY THE AUTHOR HIMSELF. */
/* */
/********************************************************************************/
var dkSolar = 0;
var dkGregorian = 1;
var DaysOfMonths = new Array();
var LeapMonth = new Array();
var DaysToMonth = new Array();
DaysOfMonths = [[31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29], [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]];
LeapMonth = [12, 2];
DaysToMonth = [[0, 31, 62, 93, 124, 155, 186, 216, 246, 276, 306, 336, 365], [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]];
function Integer(val)
{
this.value = val;
}
function IsLeapYear(DateKind, Year)
{
if (DateKind == dkSolar)
return ((((Year + 38) * 31) % 128) <= 30);
else
return (((Year % 4) == 0) && (((Year % 100) != 0) || ((Year % 400) == 0)));
}
function DaysOfMonth(DateKind, Year, Month)
{
var Result;
if ((Year != 0) && ((Month <= 12) && (Month >= 1)))
{
Result = DaysOfMonths[DateKind][Month - 1];
if ((Month == LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function IsDateValid(DateKind, Year, Month, Day)
{
return ((Year!= 0) && (Month >= 1) && (Month <= 12) && (Day >= 1) && Day <= (DaysOfMonth(DateKind, Year, Month)));
}
function DaysToDate(DateKind, Year, Month, Day)
{
var Result;
if (IsDateValid(DateKind, Year, Month, Day))
{
Result = DaysToMonth[DateKind][Month - 1] + Day;
if ((Month > LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function DateOfDay(DateKind, Days, Year, Month, Day)
{
var LeapDay = 0;
Month.value = 0;
Day.value = 0;
for (var m = 2; m <= 13; m++)
{
if ((m > LeapMonth[DateKind]) && (IsLeapYear(DateKind, Year))) LeapDay = 1;
if (Days <= (DaysToMonth[DateKind][m - 1] + LeapDay))
{
Month.value = m - 1;
if (Month.value <= LeapMonth[DateKind]) LeapDay = 0;
Day.value = Days - (DaysToMonth[DateKind][Month.value - 1] + LeapDay);
break;
}
}
return IsDateValid(DateKind, Year, Month.value, Day.value);
}
function GregorianToSolar(Year, Month, Day)
{
var LeapDay, Days, PrevGregorianLeap, Result;
if (IsDateValid(dkGregorian, Year.value, Month.value, Day.value))
{
PrevGregorianLeap = IsLeapYear(dkGregorian, Year.value - 1);
Days = DaysToDate(dkGregorian, Year.value, Month.value, Day.value);
Year.value -= 622;
if (IsLeapYear(dkSolar, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevGregorianLeap && (LeapDay == 1)) Days += 287
else Days += 286;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkSolar, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
function SolarToGregorian(Year, Month, Day)
{
var LeapDay, Days, PrevSolarLeap, Result;
if (IsDateValid(dkSolar, Year.value, Month.value, Day.value))
{
PrevSolarLeap = IsLeapYear(dkSolar, Year.value - 1);
Days = DaysToDate(dkSolar, Year.value, Month.value, Day.value);
Year.value += 621;
if (IsLeapYear(dkGregorian, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevSolarLeap && (LeapDay = 1)) Days += 80
else Days += 79;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkGregorian, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
var MonthNames = new Array();
var WeekDayNames = new Array();
var MonthDayNames = new Array();
MonthNames = ["فروردین", "اردیبهشت", "خرداد", "تیر", "مرداد", "شهریور", "مهر", "آبان", "آذر", "دی", "بهمن", "اسفند"];
WeekDayNames = ["یکشنبه", "دوشنبه", "سه شنبه", "چهار شنبه", "پنج شنبه", "جمعه", "شنبه"];
MonthDayNames = ["اول", "دوم", "سوم", "چهارم", "پنجم", "ششم", "هفتم", "هشتم", "نهم", "دهم", "یازدهم", "دوازدهم", "سیزدهم", "چهاردهم", "پانزدهم", "شانزدهم", "هفدهم", "هجدهم", "نوزدهم", "بیستم", "بیست و یکم", "بیست و دوم", "بیست و سوم", "بیست و چهارم", "بیست و پنجم", "بیست و ششم", "بیست و هفتم", "بیست و هشتم", "بیست و نهم", "سی ام", "سی و یکم"];
function ConvertStr(DateStr, Format)
{
var Result;
var ObjDate = new Date();
var SplDate = DateStr.split("/");
var M = new Integer(parseInt(SplDate[0]));
var D = new Integer(parseInt(SplDate[1]));
var Y = new Integer(parseInt(SplDate[2]));
ObjDate.setFullYear(Y.value);
ObjDate.setMonth(M.value - 1);
ObjDate.setDate(D.value);
var W = ObjDate.getDay();
if (GregorianToSolar(Y, M, D))
switch (Format)
{
case 0:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
case 1:
Result = D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 2:
Result = (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 3:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 4:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
case 5:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + Y.value;
break;
case 6:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 7:
Result = WeekDayNames[W] + "، " + (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 8:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 9:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
default:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
}
else
Result = "Error converting date.";
return Result;
}
function ConvertDateTag(DateStr, Format)
{
return "<div align=right dir=rtl>" + ConvertStr(DateStr, Format) + "</div>";
}
function ConvertArchiveTag(DatesStr, Format)
{
var Dates = new Array();
Dates = DatesStr.split("-");
var Result = ConvertStr(Dates[0], Format) + " - " + ConvertStr(Dates[1], Format);
return "<div align=right dir=rtl>" + Result + "</div>";
}
// -->
</script>
<!--Set the following content-values to the description and keywords you would like
search engines to associate with your blog.
-->
<meta name="description" content="">
<meta name="keywords" content="">
<style>
body {background:white;margin: 0px;font-family: tahoma, times new roman, sans-serif;color: black;}
.blogtitle {font-family:Homa, Times New Roman, sans-serif;color: white;font-size:36px;margin:2px;}
.links {font-family: Tahoma, Times New Roman, sans-serif;color: black;font-size:11px;line-height:170%}
A {color:#0069c3;}
A:hover {color:red;}
A.byline {color:#999999;text-decoration:none;line-height:150%;font-weight:bold;}
.date {font-family: tahoma, Arial, sans-serif; color:#CC3333; font-size:80%; font-weight:bold;}
.posts {font-family: tahoma, times new roman, sans-serif;color: black;font-size:70%; line-height:170%}
.byline {font-family: }
</style>
</head>
<!--
<body bgcolor="White" marginwidth="0" marginheight="0">
-->
<body>
<table width="620" bgcolor="black" cellspacing="1" cellpadding="10" align="center">
<tr height="10"><td bgcolor="#999999"></tr>
<tr height="80">
<td align="right" bgcolor="#31639C" class="blogtitle">!و اينك اين من ِ سانسور شده
</tr>
<tr height="10"><td bgcolor="#999999"></tr>
</table>
<br><br>
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td valign="top" width="30%"><br><br>
<div class="links">
<p><a href="./">صفحه اصلی</a>
<br><a href="<$BlogArchiveFileName$>" class="links">انبار</a>
<p><a href="mailto:[email protected]">به سوي من</a>
<p>
<a href="http://ayda.blogspot.com/">Carpe Diem</a>
<br><a href="http://Hoder.com/i"> حسين درخشان</a>
<br><a href="http://www.globalpersian.com/salman/weblog.html"> سلمان</a>
<br><a href="http://younesspace.blogspot.com/"> دات</a>
<br><a href="http://EULogist.PersianBlog.com/">نياز</a>
<br><a href="http://ehsan.blogspot.com/">Me, Myself & Ehsan</a>
<br><a href="http://Hooshmandzadeh.blogspot.com/"> چخوف منو نديدين</a>
<br><a href="http://RaminGB.blogspot.com/"> رامين</a>
<br><a href="http://med.persianblog.com/">مهدي</a>
<br><a href="http://www.KSajadi.com/fblog/"> افكار خصوصي</a>
<p>
<p>
<br><a href="http://vahid.blogspot.com/"> وحيد</a>
<br><a href="http://www.AmiReza.com/a/"> اميررضا</a>
<br><a href="http://PedramP.PersianBlog.com/">@ Site @</a>
<br><a href="http://www.Xanga.com/">Dariush</a>
<br>etc.
<p><a href="http://www.blogger.com">
<img border="0" width=88 height=31 src="http://buttons.blogger.com/bloggerbutton1.gif" border=0 alt="[Powered by Blogger]"></a>
<!-- Begin Nedstat Basic code -->
<!-- Title: Ghazmar -->
<!-- URL: http://ghazmar.blogspot.com/ -->
<script language="JavaScript" type="text/javascript" src="http://m1.nedstatbasic.net/basic.js">
</script>
<script language="JavaScript" type="text/javascript" >
<!--
nedstatbasic("ACMRtQfEgqERh+wahPJ4xJB4xnbA", 0);
// -->
</script>
<noscript>
<a target="_blank" href="http://v1.nedstatbasic.net/stats?ACMRtQfEgqERh+wahPJ4xJB4xnbA"><img
src="http://m1.nedstatbasic.net/n?id=ACMRtQfEgqERh+wahPJ4xJB4xnbA"
border="0" nosave width="18" height="18"
alt="Nedstat Basic - Free web site statistics"></a>
</noscript>
<!-- End Nedstat Basic code -->
</div>
</td>
<!--This is where the actual content of your blog goes.
-->
<td width="10%"></td>
<td valign="top" dir="rtl" width="60%">
<Blogger>
<BlogDateHeader>
<span class="date">
<script language="JavaScript">
<!--
document.write(ConvertDateTag("<$BlogDateHeaderDate$>", 5));
// -->
</script>
</span>
<br><br></BlogDateHeader>
<a name="<$BlogItemNumber$>"></a>
<div class="posts" dir="rtl">
٭ <$BlogItemBody$><br>
<a class="byline" href="<$BlogItemArchiveFileName$>#<$BlogItemNumber$>">
نوشته شده در ساعت
<$BlogItemDateTime$>
توسط <$BlogItemAuthor$>
</a><br><br>
</div>
<BlogDateFooter>
<span style="font-size:12px;color=#B0B0B0;">........................................................................................</span><br><br>
</BlogDateFooter>
</Blogger>
<p>
<div align="center">
<a style="font-size:14px;font-weight:bold" href="./">Home</a>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>[/code:1]
قالب آرشيو:
[code:1]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<meta http-equiv="Content-Type" CONTENT="text/html; charset=utf-8">
<html>
<head>
<title>!و اينك اين من ِ سانسور شده</title>
<script language="JavaScript">
<!--
<!--
// -->
/********************************************************************************/
/* */
/* solar.js - Solar Date Utility Functions */
/* Copyright(C) 2002-2003 Mahmood Shafiee Zargar, all rights reserved. */
/* */
/* [email protected] */
/* http://sobh.netfirms.com */
/* */
/* Original Pascal Code By Kambiz R. Khojaste */
/* */
/* This file is provided "AS IS" without any warranty of any kind, either */
/* express or implied. The entire risk as to the quality and performance */
/* of the functions provided in this unit are with you. The author is NOT */
/* liable for any DAMAGES resulting from the use and misuse of the unit, */
/* especially he is NOT liable for DAMAGES that were caused BY ANY VERSION */
/* WHICH HAS NOT BEEN PROGRAMMED BY THE AUTHOR HIMSELF. */
/* */
/********************************************************************************/
var dkSolar = 0;
var dkGregorian = 1;
var DaysOfMonths = new Array();
var LeapMonth = new Array();
var DaysToMonth = new Array();
DaysOfMonths = [[31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29], [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]];
LeapMonth = [12, 2];
DaysToMonth = [[0, 31, 62, 93, 124, 155, 186, 216, 246, 276, 306, 336, 365], [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]];
function Integer(val)
{
this.value = val;
}
function IsLeapYear(DateKind, Year)
{
if (DateKind == dkSolar)
return ((((Year + 38) * 31) % 128) <= 30);
else
return (((Year % 4) == 0) && (((Year % 100) != 0) || ((Year % 400) == 0)));
}
function DaysOfMonth(DateKind, Year, Month)
{
var Result;
if ((Year != 0) && ((Month <= 12) && (Month >= 1)))
{
Result = DaysOfMonths[DateKind][Month - 1];
if ((Month == LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function IsDateValid(DateKind, Year, Month, Day)
{
return ((Year!= 0) && (Month >= 1) && (Month <= 12) && (Day >= 1) && Day <= (DaysOfMonth(DateKind, Year, Month)));
}
function DaysToDate(DateKind, Year, Month, Day)
{
var Result;
if (IsDateValid(DateKind, Year, Month, Day))
{
Result = DaysToMonth[DateKind][Month - 1] + Day;
if ((Month > LeapMonth[DateKind]) && IsLeapYear(DateKind, Year)) Result++;
}
else
Result = 0;
return Result;
}
function DateOfDay(DateKind, Days, Year, Month, Day)
{
var LeapDay = 0;
Month.value = 0;
Day.value = 0;
for (var m = 2; m <= 13; m++)
{
if ((m > LeapMonth[DateKind]) && (IsLeapYear(DateKind, Year))) LeapDay = 1;
if (Days <= (DaysToMonth[DateKind][m - 1] + LeapDay))
{
Month.value = m - 1;
if (Month.value <= LeapMonth[DateKind]) LeapDay = 0;
Day.value = Days - (DaysToMonth[DateKind][Month.value - 1] + LeapDay);
break;
}
}
return IsDateValid(DateKind, Year, Month.value, Day.value);
}
function GregorianToSolar(Year, Month, Day)
{
var LeapDay, Days, PrevGregorianLeap, Result;
if (IsDateValid(dkGregorian, Year.value, Month.value, Day.value))
{
PrevGregorianLeap = IsLeapYear(dkGregorian, Year.value - 1);
Days = DaysToDate(dkGregorian, Year.value, Month.value, Day.value);
Year.value -= 622;
if (IsLeapYear(dkSolar, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevGregorianLeap && (LeapDay == 1)) Days += 287
else Days += 286;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkSolar, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
function SolarToGregorian(Year, Month, Day)
{
var LeapDay, Days, PrevSolarLeap, Result;
if (IsDateValid(dkSolar, Year.value, Month.value, Day.value))
{
PrevSolarLeap = IsLeapYear(dkSolar, Year.value - 1);
Days = DaysToDate(dkSolar, Year.value, Month.value, Day.value);
Year.value += 621;
if (IsLeapYear(dkGregorian, Year.value)) LeapDay = 1
else LeapDay = 0;
if (PrevSolarLeap && (LeapDay = 1)) Days += 80
else Days += 79;
if (Days > (365 + LeapDay))
{
Year.value++;
Days -= (365 + LeapDay);
}
Result = DateOfDay(dkGregorian, Days, Year.value, Month, Day);
}
else Result = false;
return Result;
}
var MonthNames = new Array();
var WeekDayNames = new Array();
var MonthDayNames = new Array();
MonthNames = ["فروردین", "اردیبهشت", "خرداد", "تیر", "مرداد", "شهریور", "مهر", "آبان", "آذر", "دی", "بهمن", "اسفند"];
WeekDayNames = ["یکشنبه", "دوشنبه", "سه شنبه", "چهار شنبه", "پنج شنبه", "جمعه", "شنبه"];
MonthDayNames = ["اول", "دوم", "سوم", "چهارم", "پنجم", "ششم", "هفتم", "هشتم", "نهم", "دهم", "یازدهم", "دوازدهم", "سیزدهم", "چهاردهم", "پانزدهم", "شانزدهم", "هفدهم", "هجدهم", "نوزدهم", "بیستم", "بیست و یکم", "بیست و دوم", "بیست و سوم", "بیست و چهارم", "بیست و پنجم", "بیست و ششم", "بیست و هفتم", "بیست و هشتم", "بیست و نهم", "سی ام", "سی و یکم"];
function ConvertStr(DateStr, Format)
{
var Result;
var ObjDate = new Date();
var SplDate = DateStr.split("/");
var M = new Integer(parseInt(SplDate[0]));
var D = new Integer(parseInt(SplDate[1]));
var Y = new Integer(parseInt(SplDate[2]));
ObjDate.setFullYear(Y.value);
ObjDate.setMonth(M.value - 1);
ObjDate.setDate(D.value);
var W = ObjDate.getDay();
if (GregorianToSolar(Y, M, D))
switch (Format)
{
case 0:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
case 1:
Result = D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 2:
Result = (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 3:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 4:
Result = (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
case 5:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + Y.value;
break;
case 6:
Result = WeekDayNames[W] + "، " + D.value + "/" + M.value + "/" + (Y.value - Math.floor(Y.value / 100) * 100);
break;
case 7:
Result = WeekDayNames[W] + "، " + (D.value + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 8:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " " + Y.value);
break;
case 9:
Result = WeekDayNames[W] + "، " + (MonthDayNames[D.value - 1] + " " + MonthNames[M.value - 1] + " ماه " + Y.value);
break;
default:
Result = D.value + "/" + M.value + "/" + Y.value;
break;
}
else
Result = "Error converting date.";
return Result;
}
function ConvertDateTag(DateStr, Format)
{
return "<div align=right dir=rtl>" + ConvertStr(DateStr, Format) + "</div>";
}
function ConvertArchiveTag(DatesStr, Format)
{
var Dates = new Array();
Dates = DatesStr.split("-");
var Result = ConvertStr(Dates[0], Format) + " - " + ConvertStr(Dates[1], Format);
return "<div align=right dir=rtl>" + Result + "</div>";
}
// -->
</script>
<!--Set the following content-values to the description and keywords you would like
search engines to associate with your blog.
-->
<meta name="description" content="">
<meta name="keywords" content="">
<style>
body {background:white;margin: 0px;font-family: tahoma, times new roman, sans-serif;color: black;}
.blogtitle {font-family:Homa, Times New Roman, sans-serif;color: white;font-size:36px;margin:2px;}
.links {font-family: Tahoma, Times New Roman, sans-serif;color: black;font-size:11px;line-height:170%}
A {color:#0069c3;}
A:hover {color:red;}
A.byline {color:#999999;text-decoration:none;line-height:150%;font-weight:bold;}
.date {font-family: tahoma, Arial, sans-serif; color:#CC3333; font-size:80%; font-weight:bold;}
.posts {font-family: tahoma, times new roman, sans-serif;color: black;font-size:70%; line-height:170%}
.byline {font-family: }
</style>
</head>
<!--
<body bgcolor="White" marginwidth="0" marginheight="0">
-->
<body>
<table width="620" bgcolor="black" cellspacing="1" cellpadding="10" align="center">
<tr height="10"><td bgcolor="#999999"></tr>
<tr height="80">
<td align="right" bgcolor="#31639C" class="blogtitle">!و اينك اين من ِ سانسور شده
</tr>
<tr height="10"><td bgcolor="#999999"></tr>
</table>
<br><br>
<table width="600" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td valign="top" width="30%"><br><br>
<div class="links">
<p><a href="./">صفحه اصلی</a>
<br><a href="<$BlogArchiveFileName$>" class="links">انبار</a>
<p><a href="mailto:[email protected]">به سوي من</a>
<p>
<a href="http://ayda.blogspot.com/">Carpe Diem</a>
<br><a href="http://Hoder.com/i"> حسين درخشان</a>
<br><a href="http://www.globalpersian.com/salman/weblog.html"> سلمان</a>
<br><a href="http://younesspace.blogspot.com/"> دات</a>
<br><a href="http://EULogist.PersianBlog.com/">نياز</a>
<br><a href="http://ehsan.blogspot.com/">Me, Myself & Ehsan</a>
<br><a href="http://Hooshmandzadeh.blogspot.com/"> چخوف منو نديدين</a>
<br><a href="http://RaminGB.blogspot.com/"> رامين</a>
<br><a href="http://med.persianblog.com/">مهدي</a>
<br><a href="http://www.KSajadi.com/fblog/"> افكار خصوصي</a>
<p>
<p>
<br><a href="http://vahid.blogspot.com/"> وحيد</a>
<br><a href="http://www.AmiReza.com/a/"> اميررضا</a>
<br><a href="http://PedramP.PersianBlog.com/">@ Site @</a>
<br><a href="http://www.Xanga.com/">Dariush</a>
<br>etc.
<p><a href="http://www.blogger.com">
<img border="0" width=88 height=31 src="http://buttons.blogger.com/bloggerbutton1.gif" border=0 alt="[Powered by Blogger]"></a>
<!-- Begin Nedstat Basic code -->
<!-- Title: Ghazmar -->
<!-- URL: http://ghazmar.blogspot.com/ -->
<script language="JavaScript" type="text/javascript" src="http://m1.nedstatbasic.net/basic.js">
</script>
<script language="JavaScript" type="text/javascript" >
<!--
nedstatbasic("ACMRtQfEgqERh+wahPJ4xJB4xnbA", 0);
// -->
</script>
<noscript>
<a target="_blank" href="http://v1.nedstatbasic.net/stats?ACMRtQfEgqERh+wahPJ4xJB4xnbA"><img
src="http://m1.nedstatbasic.net/n?id=ACMRtQfEgqERh+wahPJ4xJB4xnbA"
border="0" nosave width="18" height="18"
alt="Nedstat Basic - Free web site statistics"></a>
</noscript>
<!-- End Nedstat Basic code -->
</div>
</td>
<!--This is where the actual content of your blog goes.
-->
<td width="10%"></td>
<td valign="top" dir="rtl" width="60%">
<p><div class="date">آرشيو</div>
<div class="posts">
<p>
<Blogger>
<a class='links' href='<$BlogArchiveLink$>'>
<script language="JavaScript">
<!--
document.write(ConvertArchiveTag("<$BlogArchiveName$>"));
// -->
</script>
</a><br>
</Blogger>
</div>
<p>
<div align="center">
<a style="font-size:14px;font-weight:bold" href="./">Home</a>
</div>
</td>
</tr>
</table>
</div>
</body>
</html>[/code:1]