-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsfcms3.sql
502 lines (439 loc) · 104 KB
/
jsfcms3.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
-- MySQL dump 10.13 Distrib 5.5.28, for Linux (i686)
--
-- Host: localhost Database: jsfcms
-- ------------------------------------------------------
-- Server version 5.5.28
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `CMS`
--
DROP TABLE IF EXISTS `CMS`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `CMS` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Domain` varchar(100) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `CMS`
--
LOCK TABLES `CMS` WRITE;
/*!40000 ALTER TABLE `CMS` DISABLE KEYS */;
INSERT INTO `CMS` VALUES (1,'empty'),(16,'admin'),(17,'morteza'),(18,'sd'),(19,'tt'),(20,'mn'),(21,'l');
/*!40000 ALTER TABLE `CMS` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Comment`
--
DROP TABLE IF EXISTS `Comment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Comment` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Comment` text,
`Visibility` tinyint(1) NOT NULL DEFAULT '0',
`Answer` text,
`User_ID` int(11) NOT NULL,
`Content_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_Comment_User1_idx1` (`User_ID`),
KEY `fk_Comment_Content1_idx1` (`Content_ID`),
CONSTRAINT `fk_Comment_Content1` FOREIGN KEY (`Content_ID`) REFERENCES `Content` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `fk_Comment_User1` FOREIGN KEY (`User_ID`) REFERENCES `User` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Comment`
--
LOCK TABLES `Comment` WRITE;
/*!40000 ALTER TABLE `Comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `Comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Compound`
--
DROP TABLE IF EXISTS `Compound`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Compound` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`IDC` int(11) DEFAULT NULL,
`RankContent` int(11) DEFAULT NULL,
`Content_ID` int(11) NOT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_new_table_Content1_idx` (`Content_ID`),
KEY `fk_Compound_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Compound_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_new_table_Content1` FOREIGN KEY (`Content_ID`) REFERENCES `Content` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Compound`
--
LOCK TABLES `Compound` WRITE;
/*!40000 ALTER TABLE `Compound` DISABLE KEYS */;
INSERT INTO `Compound` VALUES (1,221,1,222,16),(2,221,2,223,16),(3,225,1,226,17);
/*!40000 ALTER TABLE `Compound` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Content`
--
DROP TABLE IF EXISTS `Content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Content` (
`Header` varchar(200) DEFAULT NULL,
`Title` varchar(200) DEFAULT NULL,
`Body` text,
`ID` int(11) NOT NULL AUTO_INCREMENT,
`categary_ID` int(11) DEFAULT NULL,
`File` varchar(500) DEFAULT NULL,
`TypePage_ID` int(11) NOT NULL,
`Visibility` tinyint(1) NOT NULL DEFAULT '0',
`TypePageNews_ID` int(11) DEFAULT NULL,
`IsStatic` tinyint(4) DEFAULT '0',
`NameStatic` varchar(100) DEFAULT NULL,
`IsCompound` tinyint(4) DEFAULT '0',
`Writer` varchar(100) DEFAULT NULL,
`Date` timestamp NULL DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_Content_categary_idx` (`categary_ID`),
KEY `fk_Content_TypePage1_idx` (`TypePage_ID`),
KEY `fk_Content_TypePageNews1_idx` (`TypePageNews_ID`),
KEY `fk_Content_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Content_categary` FOREIGN KEY (`categary_ID`) REFERENCES `categary` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_Content_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_Content_TypePage1` FOREIGN KEY (`TypePage_ID`) REFERENCES `TypePage` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION,
CONSTRAINT `fk_Content_TypePageNews1` FOREIGN KEY (`TypePageNews_ID`) REFERENCES `TypePageNews` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=279 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Content`
--
LOCK TABLES `Content` WRITE;
/*!40000 ALTER TABLE `Content` DISABLE KEYS */;
INSERT INTO `Content` VALUES ('First page','','<p>this is a compound page</p>\r\n',221,4544,'فایلی آپلود نشده',7,1,NULL,0,NULL,1,'admin','2014-12-27 07:11:08',16),('sub page text','','<p>nothing</p>\r\n',222,NULL,NULL,2,1,NULL,0,NULL,1,NULL,NULL,16),(NULL,NULL,NULL,223,NULL,'223_6.jpg',3,1,NULL,0,NULL,1,NULL,NULL,16),('attention','','<p>distance between earth and sun is 150000000 kilometers, lets go!</p>\r\n',224,4550,'فایلی آپلود نشده',8,1,NULL,0,NULL,0,'admin','2014-12-27 07:14:48',16),('وسایل خانگی','','<p>این یک صفحه برای وسایل خانگی است. در ضمن این صفحه از جنس صفحه ترکیبی است</p>\r\n',225,4547,'فایلی آپلود نشده',7,1,NULL,0,NULL,1,'morteza','2014-12-27 07:16:29',17),('اولین زیر صفحه','','<p>هیچ مطلب قابل بیانی وجود ندارد</p>\r\n',226,NULL,NULL,2,1,NULL,0,NULL,1,NULL,NULL,17),('','',NULL,227,NULL,'227_Green-Vegetables-poster.jpg',3,1,NULL,0,NULL,0,NULL,NULL,17),('our product',NULL,'this is a first content managment system provide by JSF library',228,4553,'فایلی آپلود نشده',2,1,NULL,0,NULL,0,'JSFCMS administrator','0000-00-00 00:00:00',1),('45','45','<p>4545 54</p>\r\n',274,4559,'فایلی آپلود نشده',2,1,NULL,0,NULL,0,'mn','2015-01-02 05:24:57',20),('کار با وسایل الکترونیکی','','<p>هنگام کار با وسایل الکترونیکی از لخت نبون سیم اتصال به برق اطمینان حاصل فرمایید</p>\r\n',275,4560,'فایلی آپلود نشده',8,1,NULL,0,NULL,0,'morteza','2015-01-02 06:05:22',17),('learning','','<p>how fix electronic tools?!</p>\r\n',276,4560,'فایلی آپلود نشده',8,1,NULL,0,NULL,0,'morteza','2015-01-02 06:12:20',17),('rt','rt','<p>rt yu io</p>\r\n',277,4547,'فایلی آپلود نشده',2,1,NULL,0,NULL,0,'morteza','2015-01-02 06:30:01',17),('hg','','<p>hg kj lmn</p>\r\n',278,4560,'فایلی آپلود نشده',8,1,NULL,0,NULL,0,'morteza','2015-01-02 06:32:24',17);
/*!40000 ALTER TABLE `Content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Content_has_Tag`
--
DROP TABLE IF EXISTS `Content_has_Tag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Content_has_Tag` (
`Content_ID` int(11) NOT NULL DEFAULT '0',
`Tag_ID` int(11) NOT NULL DEFAULT '0',
`Date` timestamp NULL DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`Content_ID`,`Tag_ID`),
KEY `fk_Content_has_Tag_Tag1_idx` (`Tag_ID`),
KEY `fk_Content_has_Tag_Content1_idx` (`Content_ID`),
KEY `fk_Content_has_Tag_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Content_has_Tag_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_Content_has_Tag_Content1` FOREIGN KEY (`Content_ID`) REFERENCES `Content` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_Content_has_Tag_Tag1` FOREIGN KEY (`Tag_ID`) REFERENCES `Tag` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Content_has_Tag`
--
LOCK TABLES `Content_has_Tag` WRITE;
/*!40000 ALTER TABLE `Content_has_Tag` DISABLE KEYS */;
INSERT INTO `Content_has_Tag` VALUES (221,80,NULL,16),(224,80,NULL,16),(225,81,NULL,17),(274,85,NULL,20),(275,81,NULL,17),(276,78,NULL,17);
/*!40000 ALTER TABLE `Content_has_Tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Setting`
--
DROP TABLE IF EXISTS `Setting`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Setting` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ThemplateID` int(11) NOT NULL DEFAULT '1',
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `fk_Setting_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Setting_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Setting`
--
LOCK TABLES `Setting` WRITE;
/*!40000 ALTER TABLE `Setting` DISABLE KEYS */;
INSERT INTO `Setting` VALUES (1,2,1),(2,2,16),(3,2,17),(4,2,18),(5,2,19),(6,2,20),(7,2,21);
/*!40000 ALTER TABLE `Setting` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Settings`
--
DROP TABLE IF EXISTS `Settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Settings` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`SiteTitle` varchar(15) DEFAULT NULL,
`SiteMenuTitle` text,
`SiteAdvertiseTitle` text,
`SiteAdvertiseMessage` text,
`SiteNewsTitle` text,
`SitePhotosTitle` text,
`SiteUpperTitle` text,
`SiteFooterTitle` text,
`SiteIcon` varchar(200) DEFAULT NULL,
`SiteLogo` varchar(200) DEFAULT NULL,
`SiteCommentSend` text,
`SiteCommentTitle` text,
`SiteCommentMessageAlert` text,
`SiteCommentMessageSuccess` text,
`SiteCommentSender` text,
`SiteCommentSended` text,
`SiteCommentSendButton` text,
`SiteWriterPost` text,
`SiteDatePost` text,
`SiteLogin` text,
`SiteLogout` text,
`SiteRegister` text,
`SiteRegisterName` text,
`SiteRegisterUserName` text,
`SiteRegisterPassword` text,
`SiteRegisterEmail` text,
`SiteRegisterButton` text,
`SiteWelcomeTitle` text,
`SiteWelcomeMessage` text,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_Settings_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Settings_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Settings`
--
LOCK TABLES `Settings` WRITE;
/*!40000 ALTER TABLE `Settings` DISABLE KEYS */;
INSERT INTO `Settings` VALUES (12,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','java.util.Random@1abf582_images.jpg','java.util.Random@1abf582_images.jpg','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',1),(13,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','java.util.Random@1abf582_images.jpg','java.util.Random@1abf582_images.jpg','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',1),(14,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','java.util.Random@1abf582_images.jpg','java.util.Random@1abf582_images.jpg','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',1),(15,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',16),(16,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',16),(17,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',16),(18,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',17),(19,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',17),(20,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',17),(21,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',18),(22,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',18),(23,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',18),(24,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',19),(25,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',19),(26,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',19),(27,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',20),(28,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',20),(29,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',20),(30,'سایت','منوهای سایت','تبلیغات','تبلیغاتی درباره','اخبار','گالری عکس','جاواگستران','جاواگستران','','','لطفا نظر خود را ارسال نمایید:','لیست نظرات کاربران','اگر قصد ارسال نظر دارید، لطفا در سایت ما عضو شوید.','نظر شما با موفقیت ارسال شد و پس از تایید مدیر، نمایش داده می شود.','کاربر','نظر','ارسال نظر','نوشته شده توسط','در تاریخ','ورود','خروج','ثبت نام','نام و نام خانوادگی','نام کاربری','رمز عبور','ایمیل','ثبت نام','خوش آمدید','ثبت نام مقدماتی شما با موفقیت به پایان رسیده است. برای تکمیل ثبت نام لطفا به آدرسی ایمیلی که وارد کرده اید مراجعه نمایید و روی لینکی که برای شما فرستاده شده است کلیک نمایید. با تشکر',21),(31,'site','Menu','Advertise','Advertise about','News','Photo gallery','Java Gostaran','Java Gostaran','','','Please send us your comment:','Users comments list','If desire to send comment, please register in our site.','Your comment sended successfully and show after that applied with admin.','User','Comment','Send Comment','Write with','at','Login','Exit','Register','Name','Username','Password','Email','Register','Welcome','Your first stage registration finished successfully. To complete your registeration, please go to your entered email and click on the link that is send to you. Thanks',21),(32,'site','Menú','Anunciar','Publicidad sobre','Noticias','Galería de fotos','Java Gostaran','Java Gostaran','','','Por favor, envíanos tu comentario:','Lista de Usuarios comentarios','Si el deseo de enviar comentarios, por favor registrarse en nuestro sitio.','Tu comentario mandó correctamente y espectáculo después de que se aplica con administrador.','Usuario','Comentario','Enviar comentario','Escribir con','en','Login','Salida','Registrar','Nombre','Nombre de usuario','Contraseña','Email','Registrar','Bienvenido','Su primera etapa de inscripción ha finalizado correctamente. Para completar su registeration, por favor vaya a su correo electrónico introducido y haga clic en el enlace que se envía a usted. gracias',21);
/*!40000 ALTER TABLE `Settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Tag`
--
DROP TABLE IF EXISTS `Tag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Tag` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`TagName` varchar(100) DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_Tag_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Tag_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Tag`
--
LOCK TABLES `Tag` WRITE;
/*!40000 ALTER TABLE `Tag` DISABLE KEYS */;
INSERT INTO `Tag` VALUES (78,'asd',17),(79,'sdfwe',16),(80,'compound',16),(81,'تگ بیهوده',17),(82,'تگ بیهوده',17),(83,'تگ بیهوده',17),(84,'ahmad',20),(85,'خالی',20);
/*!40000 ALTER TABLE `Tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Template`
--
DROP TABLE IF EXISTS `Template`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Template` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Code` mediumtext,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_Template_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_Template_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Template`
--
LOCK TABLES `Template` WRITE;
/*!40000 ALTER TABLE `Template` DISABLE KEYS */;
INSERT INTO `Template` VALUES (3,'\n <section class=\"slideshow-wrapper\">\n <div id=\"slider-wrapper\">\n <div id=\"layerslider\" style=\"width:100%;height:550px;\">\n <div class=\"ls-slide\" data-ls=\"slidedelay:8000;transition2d:75,79;\">\n <img src=\"res3/demos/01_sliderbg.png\" class=\"ls-bg\" alt=\"Slide background\"/>\n\n <p class=\"ls-l ls01\" style=\"\n top:140px;\n left:100px;\n font-weight: 300;\n height:40px;\n padding: 5px 14px 10px;\n font-size:34px;\n line-height:47px;\n color:#ffffff;\n background:#2ACDC9;\n border-radius:0;\n white-space: nowrap;\" \n data-ls=\"durationin:1500;delayin:300;rotatein:20;rotatexin:30;scalexin:1.5;scaleyin:1.5;transformoriginin:left 50% 0;durationout:750;rotateout:20;rotatexout:-30;scalexout:0;scaleyout:0;transformoriginout:left 50% 0;\">\n GENUINE TEMPLATE FEATURES\n </p>\n\n <p class=\"ls-l ls02\" style=\"\n top:220px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n background: white; \n background: #151D25;\n color:#ffffff;\n border-left:5px solid #2ACDC9;\n padding:6px 10px;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:700;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Mobile Optimized - responsive layout design\n </p>\n\n <p class=\"ls-l ls02\" style=\"\n top:260px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n background: white; \n background: #151D25;\n color:#ffffff;\n border-left:5px solid #2ACDC9;\n padding:6px 10px;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:900;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Retina ready - high resolution image supported\n </p>\n\n <p class=\"ls-l ls02\" style=\"\n top:300px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n padding:6px 10px;\n border-left:5px solid #2ACDC9;\n background: white; \n background: #151D25;\n color:#ffffff;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:1100;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Color Schemes - Build your own color combinations\n </p>\n\n <p class=\"ls-l ls02\" style=\"\n top:340px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n padding:6px 10px;\n background: white;\n border-left:5px solid #2ACDC9;\n background: #151D25;\n color:#ffffff;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:1300;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Page Templates - Included 50+ valid HTML5 templates\n </p>\n\n <p class=\"ls-l ls02\" style=\"\n top:380px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n border-left:5px solid #2ACDC9;\n padding:6px 10px;\n background: white; \n background: #151D25;\n color:#ffffff;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:1500;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Build-in - HTML5 CSS3 and Bootstrap 3.0\n </p> \n\n <p class=\"ls-l ls02\" style=\"\n top:420px;\n left:105px;\n font-size:14px;\n font-weight: 300;\n padding:6px 10px;\n background: white; \n border-left:5px solid #2ACDC9;\n background: #151D25;\n color:#ffffff;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:1800;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n Support - 24/7 Support Help via Twitter Email\n </p> \n\n <img class=\"ls-l\" style=\"top:0;left:70%;white-space: nowrap;\" data-ls=\"durationin:1500;\" src=\"res3/sliderimages/newmini.png\" alt=\"\"/>\n\n </div><!-- end first slide -->\n\n <div class=\"ls-slide\" data-ls=\"slidedelay:8000;transition2d:21,105;timeshift:-1000;\">\n <img src=\"res3/demos/02_sliderbg.png\" class=\"ls-bg\" alt=\"Slide background\"/>\n\n <p class=\"ls-l ls03\" style=\"\n top:134px;left:56px;\n font-weight: 300; \n opacity: .4;\n font-size:200px;\n color:#2ACDC9;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:2500;delayin:1000;scalexin:0;scaleyin:0;offsetxout:0;scalexout:0;scaleyout:0;\">\n &\n </p>\n\n <p class=\"ls-l ls03\" style=\"\n top:220px;\n left:20px;\n font-weight: 300;\n background: white; \n background: #ffffff;\n color:#2ACDC9;\n height:40px;\n padding-right:10px;\n padding-left:10px;\n font-size:30px;\n line-height:37px;\n white-space: nowrap;\" \n data-ls=\"offsetxin:-50;durationin:2000;delayin:1000;offsetxout:-50;durationout:1000;\">\n ALL THESE FEATURES\n </p>\n\n <p class=\"ls-l ls03\" style=\"\n top:260px;\n left:178px;\n font-weight: 500;\n font-size:30px;\n color:#2ACDC9;\n white-space: nowrap;\" \n data-ls=\"offsetxin:50;delayin:2000;skewxin:-60;offsetxout:-50;durationout:1000;skewxout:-60;\">\n much more!\n </p>\n\n <p class=\"ls-l ls03\" style=\"\n top:220px;\n left:1113px;\n font-weight: 500; \n text-align: right;\n font-size:30px;\n color:#2ACDC9;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;delayin:2500;rotatein:90;transformoriginin:right bottom 0;offsetxout:0;durationout:1500;transformoriginout:right bottom 0;\">\n ...to create\n </p>\n\n <p class=\"ls-l ls01\" style=\"\n top:260px;\n left:1005px;\n font-weight: 300; \n text-align: right;\n width:244px;\n height:40px;\n padding-right:10px;\n font-size:30px;\n line-height:37px;\n color:#ffffff;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:2500;delayin:3250;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:0;durationout:1000;rotatexout:90;transformoriginout:50% bottom 0;\">\n MULTI PURPOSE\n </p>\n\n <p class=\"ls-l ls03\" style=\"\n top:305px;\n left:983px;\n font-weight:300;\n font-size:30px;\n color:#2ACDC9;\n white-space: nowrap;\" \n data-ls=\"offsetxin:-50;delayin:3500;skewxin:60;scalexin:1.5;offsetxout:-50;durationout:1000;skewxout:60;scalexout:1.5;\">\n with no compromises!\n </p>\n <img class=\"ls-l\" style=\"top:80px;left:52%;white-space: nowrap;\" data-ls=\"durationin:1500;scalexin:0.8;scaleyin:0.8;scalexout:0.8;scaleyout:0.8;\" src=\"res3/sliderimages/ls5box.png\" alt=\"\" />\n </div><!-- end second slide -->\n\n <div class=\"ls-slide\" data-ls=\"slidedelay:8000;transition2d:75,79;\">\n <img src=\"res3/sliderimages/newbg.jpg\" class=\"ls-bg\" alt=\"Slide background\"/>\n\n <h1 class=\"ls-l\" style=\"\n top:60px;\n left:500px;\n font-weight: 300;\n font-size:40px;\n color:#151D25;\n white-space: nowrap;\" \n data-ls=\"offsetxin:50;durationin:3000;rotateyin:60;transformoriginin:right 50% 0;offsetxout:-50;durationout:3000;showuntil:400;rotateyout:-60;transformoriginout:left 50% 0;\">A DESIGNING MEDIA\n </h1>\n <h2 class=\"ls-l ls03\" style=\"\n top:100px;\n left:501px;\n font-weight: 500;\n font-size:30px;\n color:#2ACDC9;\n white-space: nowrap;\" \n data-ls=\"offsetxin:-50;durationin:3000;delayin:500;rotateyin:-60;transformoriginin:left 50% 0;offsetxout:50;durationout:3000;showuntil:1;rotateyout:60;transformoriginout:right 50% 0;\">presents\n </h2>\n\n <img class=\"ls-l\" style=\"top:300px;left:250px;white-space: nowrap;\" data-ls=\"offsetxin:0;durationin:750;delayin:1600;rotatexin:90;transformoriginin:50% bottom 0;offsetxout:0;durationout:500;rotateyout:90;skewyout:1;transformoriginout:left 50% 0;\" src=\"res3/sliderimages/slide-d-5-4.png\" alt=\"\"/>\n <img class=\"ls-l\" style=\"top:300px;left:100px;white-space: nowrap;\" data-ls=\"offsetxin:0;durationin:750;delayin:1900;rotateyin:-90;transformoriginin:right 50% 0;offsetxout:0;durationout:750;rotateyout:90;transformoriginout:right 50% 0;\" src=\"res3/sliderimages/slide-d-5-3.png\" alt=\"\"/>\n <img class=\"ls-l\" style=\"top:150px;left:100px;white-space: nowrap;\" data-ls=\"offsetxin:0;durationin:750;delayin:2200;rotatexin:90;transformoriginin:50% bottom 0;offsetxout:0;durationout:750;rotateyout:90;transformoriginout:right 150% 0;\" src=\"res3/sliderimages/slide-d-5-1.png\" alt=\"\"/>\n <img class=\"ls-l\" style=\"top:150px;left:250px;white-space: nowrap;\" data-ls=\"offsetxin:0;durationin:750;delayin:2500;rotateyin:90;transformoriginin:left 50% 0;offsetxout:0;durationout:750;rotateyout:90;transformoriginout:left 150% 0;\" src=\"res3/sliderimages/slide-d-5-2.png\" alt=\"\"/>\n\n <h1 class=\"ls-l\" style=\"\n top:100px;\n left:80px;\n font-weight: 500; \n text-align: center; \n width:340px;\n font-size:30px;\n color:#151D25;\n border-radius:5px;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:2500;delayin:3000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% bottom 0;offsetxout:0;rotateout:-90;transformoriginout:left bottom 0;\">\n RESPONSIVE LAYOUT\n </h1>\n\n <p class=\"ls-l ls01\" style=\"\n top:170px;\n left:500px;\n font-weight: 300;\n height:40px;\n padding-right:10px;\n padding-left:10px;\n font-size:30px;\n line-height:37px;\n color:#ffffff;\n background:#2ACDC9;\n border-radius:4px;\n white-space: nowrap;\" \n data-ls=\"durationin:1500;delayin:3300;rotatein:20;rotatexin:30;scalexin:1.5;scaleyin:1.5;transformoriginin:left 50% 0;durationout:750;rotateout:20;rotatexout:-30;scalexout:0;scaleyout:0;transformoriginout:left 50% 0;\">\n RETINA DISPLAY\n </p>\n\n <p class=\"ls-l\" style=\"\n top:210px;\n left:500px;\n font-weight: 300;\n font-size:24px;\n color:#151D25;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:3700;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n High resolution image supported\n </p>\n\n <p class=\"ls-l ls01\" style=\"\n top:270px;\n left:500px;\n font-weight: 300;\n height:40px;\n padding-right:10px;\n padding-left:10px;\n font-size:30px;\n line-height:37px;\n color:#ffffff;\n background:#2ACDC9;\n border-radius:4px;\n white-space: nowrap;\" \n data-ls=\"durationin:1500;delayin:4000;rotatein:20;rotatexin:30;scalexin:1.5;scaleyin:1.5;transformoriginin:left 50% 0;durationout:750;rotateout:20;rotatexout:-30;scalexout:0;scaleyout:0;transformoriginout:left 50% 0;\">\n EASY TO SETUP\n </p>\n\n <p class=\"ls-l\" style=\"\n top:310px;\n left:500px;\n font-weight: 300;\n font-size:24px;\n color:#151D25;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:4400;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n This template is easy to install and setup\n </p>\n\n <p class=\"ls-l ls01\" style=\"\n top:370px;\n left:500px;\n font-weight: 300;\n height:40px;\n padding-right:10px;\n padding-left:10px;\n font-size:30px;\n line-height:37px;\n color:#ffffff;\n background:#2ACDC9;\n border-radius:4px;\n white-space: nowrap;\" \n data-ls=\"durationin:1500;delayin:4700;rotatein:20;rotatexin:30;scalexin:1.5;scaleyin:1.5;transformoriginin:left 50% 0;durationout:750;rotateout:20;rotatexout:-30;scalexout:0;scaleyout:0;transformoriginout:left 50% 0;\">\n LAYER SLIDER INCLUDED\n </p>\n\n <p class=\"ls-l\" style=\"\n top:410px;\n left:499px;\n font-weight: 300;\n font-size:24px;\n color:#151D25;\n white-space: nowrap;\" \n data-ls=\"offsetxin:0;durationin:1500;delayin:5100;rotateyin:90;skewxin:60;transformoriginin:25% 50% 0;offsetxout:100;durationout:750;skewxout:60;\">\n The template includes the powerful Layer Slider plugin\n </p>\n </div><!-- end third slide -->\n </div><!-- layer slider -->\n </div><!-- slider wrapper -->\n </section><!-- end slideshow-wrapper -->\n\n <section class=\"section2\">\n <div class=\"message text-center\">\n <h2 class=\"big-title\">Would you like to join <span>genuine</span> club?</h2>\n <p class=\"small-title\">Lorem Ipsum is simply dummy text of the printing and typesetting industy has been the industry\"s standard.</p>\n <a class=\"button large\" href=\"pricing-tables.html\">VIEW PRICING DETAILS</a>\n\n \n <br />\n\n\n <a class=\" dmbutton large\" href=\"contact.html\">CONTACT US TODAY</a>\n </div><!-- end message -->\n </section><!-- end section2 -->\n\n <section class=\"section3 withpadding\">\n <div class=\"container\">\n <div class=\"general-title text-center\">\n <h3>SERVICES OFFERS</h3>\n <p>Our most popular services and offer listed below</p>\n <hr/>\n </div>\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"servicebox text-center\">\n <div class=\"service-icon\">\n <div class=\"dm-icon-effect-1\" data-effect=\"slide-left\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon fa fa-bars fa-3x\"></i> </a>\n </div>\n <div class=\"servicetitle\">\n <h4>Responsive Layout</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div><!-- service-icon -->\n </div><!-- servicebox -->\n </div><!-- large-3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"servicebox text-center\">\n <div class=\"service-icon\">\n <div class=\"dm-icon-effect-1\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon fa fa-laptop fa-3x\"></i> </a>\n </div>\n <div class=\"servicetitle\">\n <h4>Creative Design</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div><!-- service-icon -->\n </div><!-- servicebox -->\n </div><!-- large-3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"servicebox text-center\">\n <div class=\"service-icon\">\n <div class=\"dm-icon-effect-1\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"active dm-icon fa fa-book fa-3x\"></i> </a>\n </div>\n <div class=\"servicetitle\">\n <h4>Easy to Setup</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div><!-- service-icon -->\n </div><!-- servicebox -->\n </div><!-- large-3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"servicebox text-center\">\n <div class=\"service-icon\">\n <div class=\"dm-icon-effect-1\" data-effect=\"slide-right\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon fa fa-heart-o fa-3x\"></i> </a>\n </div>\n <div class=\"servicetitle\">\n <h4>24/7 Support</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div><!-- service-icon -->\n </div><!-- servicebox -->\n </div><!-- large-3 -->\n\n </div><!-- end container -->\n </section><!-- end section -->\n\n <section class=\"section1\"> \n <div class=\"general-title text-center\">\n <h3>RECENT PORTFOLIO ITEMS</h3>\n <p>Last week\'s popular portfolio items</p>\n <hr />\n </div>\n\n <nav class=\"portfolio-filter clearfix\">\n <ul>\n <li><a href=\"#\" class=\"dmbutton2\" data-filter=\"*\">All Works (8)</a></li>\n <li><a href=\"#\" class=\"dmbutton2\" data-filter=\".mockups\">Mockups</a></li>\n <li><a href=\"#\" class=\"dmbutton2\" data-filter=\".graphic-design\">Graphics</a></li>\n <li><a href=\"#\" class=\"dmbutton2\" data-filter=\".web-design\">Web Projects</a></li>\n <li><a href=\"#\" class=\"dmbutton2\" data-filter=\".flayers\">Flayers</a></li>\n </ul>\n </nav>\n\n <div class=\"portfolio-centered\">\n <div class=\"recentitems portfolio\">\n\n <div class=\"portfolio-item mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/01_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">A Graphic Design Item</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/01_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">mockups</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item web-design graphic-design\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/02_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">New Flayer Design Item</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/02_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">graphic design</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item graphic-design\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/03_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Gray and Pink</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/03_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">graphic design</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/04_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Amazing Keyboard Desin</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/04_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">mockups</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item flayers\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/05_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Our Favorite Colors</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/05_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">flayers</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item flayers\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/06_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Not War Make Design</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/06_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">flayers</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item graphic-design mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/07_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">A GREAT MOCK-UPS</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/07_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">mockups</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item web-design mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/08_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Missis Of 2014</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/08_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">mockups</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item web-design mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/09_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Light Carpet</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/09_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">graphic design</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n <div class=\"portfolio-item web-design mockups\">\n <div class=\"he-wrap tpl6\">\n <img src=\"res3/demos/10_portfolio.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <h3 class=\"a1\" data-animate=\"fadeInDown\">Business Card Mock-Up</h3>\n <a data-rel=\"prettyPhoto\" href=\"res3/demos/10_portfolio.png\" class=\"dmbutton a2\" data-animate=\"bounceInLeft\"><i class=\"fa fa-search\"></i></a>\n <a href=\"single-portfolio-2.html\" class=\"dmbutton a2\" data-animate=\"bounceInRight\"><i class=\"fa fa-link\"></i></a>\n <div class=\"portfolio_category text-center a2\" data-animate=\"fadeIn\">\n <a href=\"#\">web design</a>\n </div> \n </div><!-- he bg -->\n </div><!-- he view --> \n </div><!-- he wrap -->\n </div><!-- end col-12 -->\n\n </div><!-- portfolio -->\n </div><!-- portfolio container -->\n\n <div class=\"clearfix\"></div>\n <div class=\"divider\"></div>\n <div class=\"text-center\">\n <a class=\"btn btn-primary btn-lg\">VIEW ALL WORKS</a>\n <div class=\"divider\"></div>\n </div>\n </section><!-- section3 -->\n\n <section class=\"section2\">\n <div class=\"container\">\n <div class=\"col-lg-6 col-md-6 col-sm-12 columns\">\n <div class=\"widget\" data-effect=\"slide-left\">\n <img src=\"res3/demos/01_home.png\" alt=\"\"/>\n </div><!-- end widget -->\n </div><!-- large-6 -->\n <div class=\"col-lg-6 col-md-6 col-sm-12 columns\">\n <div class=\"widget clearfix\">\n <div class=\"services_lists\">\n\n <div class=\"services_lists_boxes clearfix\">\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"services_lists_boxes_icon\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon-medium fa fa-key fa-2x\"></i> </a>\n </div>\n </div>\n <div class=\"col-lg-9 col-md-9 col-sm-9\">\n <div class=\"servicetitle\">\n <h4>Create an Account</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n </div><!-- services_lists_boxes -->\n\n <div class=\"services_lists_boxes clearfix\">\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"services_lists_boxes_icon\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon-medium fa fa-download fa-2x\"></i> </a>\n </div>\n </div>\n <div class=\"col-lg-9 col-md-9 col-sm-9\">\n <div class=\"servicetitle\">\n <h4>Upload Your Works</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard..</p>\n </div>\n </div><!-- services_lists_boxes -->\n\n <div class=\"services_lists_boxes clearfix\">\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"services_lists_boxes_icon\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon-medium fa fa-dropbox fa-2x\"></i> </a>\n </div>\n </div>\n <div class=\"col-lg-9 col-md-9 col-sm-9\">\n <div class=\"servicetitle\">\n <h4>Share With Your Friends</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n </div><!-- services_lists_boxes -->\n\n <div class=\"services_lists_boxes clearfix\">\n <div class=\"col-lg-3 col-md-3 col-sm-12\">\n <div class=\"services_lists_boxes_icon_none\" data-effect=\"slide-bottom\">\n <a href=\"#\" class=\"\"> <i class=\"dm-icon-medium fa fa-dollar fa-2x\"></i> </a>\n </div>\n </div>\n <div class=\"col-lg-9 col-md-9 col-sm-9\">\n <div class=\"servicetitle\">\n <h4>Earn Money</h4>\n <hr />\n </div>\n <p>Lorem Ipsum is simply dummy text of the industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n </div><!-- services_lists_boxes -->\n\n </div><!-- services_lists -->\n </div><!-- end widget -->\n </div><!-- large-6 -->\n </div><!-- end container -->\n </section><!-- end section2 -->\n\n <section class=\"section1\">\n <div class=\"container clearfix\">\n\n <div class=\"general-title text-center\">\n <h3>MEET OUR TEAM</h3>\n <p>Lets meet our developer team</p>\n <hr />\n </div>\n\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <div class=\"teammembers\">\n <div class=\"he-wrap tpl2\">\n <img src=\"res3/demos/02_team.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <div class=\"center-bar\">\n <a href=\"#\" class=\"twitter a0\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"facebook a1\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"google a2\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"in a3\" data-animate=\"elasticInDown\"></a>\n </div><!-- center bar -->\n </div>\n </div>\n </div><!-- he wrap -->\n <div class=\"teammembers-meta\">\n <h4>John DOE</h4>\n </div> \n <small>Developer</small>\n <div class=\"teamskills\">\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 85%\"><span>WordPress</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 70%\"><span>HTML5</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 60%\"><span>CSS3</span></div>\n </div>\n </div>\n </div><!-- end teammembers -->\n </div><!-- end col 3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <div class=\"teammembers\">\n <div class=\"he-wrap tpl2\">\n <img src=\"res3/demos/03_team.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <div class=\"center-bar\">\n <a href=\"#\" class=\"twitter a0\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"facebook a1\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"google a2\" data-animate=\"elasticInDown\"></a>\n </div><!-- center bar -->\n </div>\n </div>\n </div><!-- he wrap -->\n <div class=\"teammembers-meta\">\n <h4>Jenny DOE</h4>\n </div> \n <small>Designer</small>\n <div class=\"teamskills\">\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 60%\"><span>WordPress</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 40%\"><span>HTML5</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 70%\"><span>CSS3</span></div>\n </div>\n </div>\n </div><!-- end teammembers -->\n </div><!-- end col 3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <div class=\"teammembers\">\n <div class=\"he-wrap tpl2\">\n <img src=\"res3/demos/04_team.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <div class=\"center-bar\">\n <a href=\"#\" class=\"twitter a0\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"facebook a1\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"google a2\" data-animate=\"elasticInDown\"></a>\n </div><!-- center bar -->\n </div>\n </div>\n </div><!-- he wrap -->\n <div class=\"teammembers-meta\">\n <h4>Bob DOE</h4>\n </div> \n <small>Social Manager</small>\n <div class=\"teamskills\">\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 90%\"><span>WordPress</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 100%\"><span>HTML5</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 100%\"><span>CSS3</span></div>\n </div>\n </div>\n </div><!-- end teammembers -->\n </div><!-- end col 3 -->\n\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <div class=\"teammembers\">\n <div class=\"he-wrap tpl2\">\n <img src=\"res3/demos/06_team.png\" alt=\"\"/>\n <div class=\"he-view\">\n <div class=\"bg a0\" data-animate=\"fadeIn\">\n <div class=\"center-bar\">\n <a href=\"#\" class=\"twitter a0\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"facebook a1\" data-animate=\"elasticInDown\"></a>\n <a href=\"#\" class=\"google a2\" data-animate=\"elasticInDown\"></a>\n </div><!-- center bar -->\n </div>\n </div>\n </div><!-- he wrap -->\n <div class=\"teammembers-meta\">\n <h4>Mark DOE</h4>\n </div> \n <small>Social Manager</small>\n <div class=\"teamskills\">\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 76%\"><span>WordPress</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 88%\"><span>HTML5</span></div>\n </div>\n <div class=\"progress\">\n <div data-effect=\"slide-left\" class=\"progress-bar progress-bar-danger\" style=\"width: 32%\"><span>CSS3</span></div>\n </div>\n </div>\n </div><!-- end teammembers -->\n </div><!-- end col 3 -->\n\n <div class=\"clearfix\"></div>\n\n <div class=\"general-title text-center\">\n <h3>PROFESSIONAL DESIGN SKILLS</h3>\n <p>We build awesome websites blogs for you</p>\n <hr />\n </div>\n\n <div class=\"skills clearfix text-center\">\n <div class=\"col-lg-4 col-md-4 col-sm-6 col-xs-12\">\n <span class=\"chart\" data-bar-color=\"#2ACDC9\" data-percent=\"93\">\n <span class=\"percent\"></span>\n </span>\n <h4 class=\"title\">HTML5 CSS3</h4>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-6 col-xs-12\">\n <span class=\"chart\" data-bar-color=\"#F9D000\" data-percent=\"93\">\n <span class=\"percent\"></span>\n </span>\n <h4 class=\"title\">WordPress</h4>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-6 col-xs-12\">\n <span class=\"chart\" data-bar-color=\"#EA5D4B\" data-percent=\"85\">\n <span class=\"percent\"></span>\n </span>\n <h4 class=\"title\">Graphic Design</h4>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\"s standard dummy text ever since..</p>\n </div>\n\n </div><!-- end skills -->\n\n </div><!-- end container -->\n </section><!-- end section -->\n\n <section class=\"videobg clearfix text-center\">\n <a id=\"volume\" onclick=\"$(\'#bgndVideo\').toggleVolume()\"><i class=\"fa fa-volume-down\"></i></a>\n <a id=\"bgndVideo\" class=\"player\" data-property=\"{videoURL:\'http://www.youtube.com/watch?v=W7Las-MJnJo\',containment:\'body\',autoPlay:true, mute:true, startAt:33, opacity:1}\">youtube</a>\n <div class=\"videobg-wrap\">\n <div class=\"container\">\n <div class=\"general-title text-center\">\n <h3>Video Background Support</h3>\n <p>This is an another awesome feature!</p>\n <hr />\n </div>\n <div class=\"aboutimg\" data-effect=\"slide-bottom\"><a href=\"#\"><img src=\"res3/demos/01_single_market.png\" alt=\"\"/></a></div>\n </div>\n </div>\n </section>\n\n <section class=\"section1\">\n <div class=\"container\">\n <div class=\"general-title text-center\">\n <h3>Happy Testimonials</h3>\n <p>What they say about GENUINE template</p>\n <hr />\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-12 first\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/02_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>\n <div class=\"testimonial-meta\">\n <h4>John DOE <small><a href=\"#\">envato.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-12\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/03_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the most popular items.</p>\n <div class=\"testimonial-meta\">\n <h4>Jenny DOE <small><a href=\"#\">google.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-12 last\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/04_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the printing.</p>\n <div class=\"testimonial-meta\">\n <h4>John DOE <small><a href=\"#\">tutsplus.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div><!-- end col-lg-4 -->\n\n <div class=\"col-lg-4 col-md-4 col-sm-12 first\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/05_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>\n <div class=\"testimonial-meta\">\n <h4>Jenny DOE <small><a href=\"#\">designingmedia.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-12\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/06_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the most popular items.</p>\n <div class=\"testimonial-meta\">\n <h4>John DOE <small><a href=\"#\">photodune.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div>\n\n <div class=\"col-lg-4 col-md-4 col-sm-12 last\">\n <div class=\"testimonial\">\n <img data-effect=\"slide-bottom\" class=\"alignleft img-circle\" src=\"res3/demos/07_team.png\" alt=\"\"/>\n <p>Lorem Ipsum is simply dummy text of the printing.</p>\n <div class=\"testimonial-meta\">\n <h4>Jenny DOE <small><a href=\"#\">yahoo.com</a></small></h4>\n </div>\n </div><!-- end dmbox -->\n </div><!-- end col-lg-4 -->\n\n <div class=\"clearfix\"></div>\n <div class=\"divider\"></div>\n\n <div class=\"general-title text-center\">\n <h3>Clients</h3>\n <p>Happy client logos listed below</p>\n <hr />\n </div>\n\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"The Genuine HTML5 template is an awesome!\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/01_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Thanks for all your helps! Always great jobs!\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/02_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the...\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/03_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Lorem Ipsum has been the industry\'s standard dummy text ever since the...\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/04_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the...\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/05_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n <div class=\"col-lg-2 col-md-2 col-sm-2\" data-effect=\"pop\">\n <div class=\"client\">\n <a data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Lorem Ipsum has been the industry\'s standard dummy text ever since the...\" href=\"#\">\n <img src=\"http://designingmedia.com/html/nevermind/demos/06_client.png\" alt=\"\"/>\n </a>\n </div>\n </div>\n\n <div class=\"clearfix\"></div>\n <div class=\"divider\"></div>\n </div><!-- end container -->\n </section><!-- end section -->\n\n <section class=\"transparent clearfix\">\n <div class=\"transparent-wrap\">\n <div class=\"container\">\n <div class=\"general-title text-center\">\n <h3>SOME FUN FACTS</h3>\n <p>Lorem Ipsum is simply dummy text of the printing and typesetting industy has been the industry\"s standard.</p>\n <hr />\n </div>\n <div class=\"row text-center\">\n <div class=\"stat f-container\">\n <div class=\"f-element col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <i class=\"fa fa-coffee fa-4x\"></i>\n <div class=\"milestone-counter\">\n <span class=\"stat-count highlight\">211</span>\n <div class=\"milestone-details\">Ordered Coffee\'s</div>\n </div>\n </div>\n <div class=\"f-element col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <i class=\"fa fa-laptop fa-4x\"></i>\n <div class=\"milestone-counter\">\n <span class=\"stat-count highlight\">113</span>\n <div class=\"milestone-details\">Completed Projects</div>\n </div>\n </div>\n <div class=\"f-element col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <i class=\"fa fa-comments-o fa-4x\"></i>\n <div class=\"milestone-counter\">\n <span class=\"stat-count highlight\">431</span>\n <div class=\"milestone-details\">Questions Answered</div>\n </div>\n </div>\n <div class=\"f-element col-lg-3 col-md-3 col-sm-6 col-xs-12\">\n <i class=\"fa fa-users fa-4x\"></i>\n <div class=\"milestone-counter\">\n <span class=\"stat-count highlight\">2113</span>\n <div class=\"milestone-details\">Happy Clients</div>\n </div>\n </div>\n </div>\n </div><!-- end row -->\n </div> <!-- end clients wrap -->\n </div><!-- end container -->\n </section><!-- end of clients -->\n\n ',1);
/*!40000 ALTER TABLE `Template` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `TypePage`
--
DROP TABLE IF EXISTS `TypePage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `TypePage` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(45) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `TypePage`
--
LOCK TABLES `TypePage` WRITE;
/*!40000 ALTER TABLE `TypePage` DISABLE KEYS */;
INSERT INTO `TypePage` VALUES (1,'خبر'),(2,'متن'),(3,'عکس'),(4,'تبلیغ'),(5,'فایل'),(6,'ایستا'),(7,'ترکیبی'),(8,'بلاگ');
/*!40000 ALTER TABLE `TypePage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `TypePageNews`
--
DROP TABLE IF EXISTS `TypePageNews`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `TypePageNews` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`NewsType` varchar(45) DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_TypePageNews_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_TypePageNews_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `TypePageNews`
--
LOCK TABLES `TypePageNews` WRITE;
/*!40000 ALTER TABLE `TypePageNews` DISABLE KEYS */;
INSERT INTO `TypePageNews` VALUES (1,'Culture',1),(2,'Society',1),(3,'Political',1),(4,'Economic',1),(5,'Sience',1),(6,'Religious',1),(7,'Athletic',1);
/*!40000 ALTER TABLE `TypePageNews` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `User`
--
DROP TABLE IF EXISTS `User`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `User` (
`Name` varchar(100) DEFAULT NULL,
`username` varchar(100) NOT NULL,
`password` varchar(100) DEFAULT NULL,
`Email` varchar(100) DEFAULT NULL,
`user_roles_ID` int(11) NOT NULL,
`enabled` tinyint(1) DEFAULT '0',
`Hash` varchar(255) NOT NULL,
`cms_ID` int(11) NOT NULL,
`ID` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`ID`),
KEY `fk_User_user_roles1_idx` (`user_roles_ID`),
KEY `fk_User_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_User_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_User_user_roles1` FOREIGN KEY (`user_roles_ID`) REFERENCES `user_roles` (`ID`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `User`
--
LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
INSERT INTO `User` VALUES ('admin','admin','admin','admin',1,1,'34221ac_tvip!@10884',16,16),('morteza','morteza','morteza','morteza',1,1,'803438ac_tvip!@10264',17,17),('ali','ali','ali','ali',2,1,'281160ac_tvip!@2761',17,18),('sd','sd','sd','sd',1,1,'901427ac_tvip!@10105',18,19),('tt','tt','tt','tt',1,NULL,'982129ac_tvip!@16450',19,20),('mn','mn','mn','mn',1,1,'397279ac_tvip!@18854',20,21),('l','l','l','l',1,NULL,'70218ac_tvip!@15275',21,22),('ali','ali','ali','ali',1,1,'635143ac_tvip!@14166',17,23);
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `User_has_Settings`
--
DROP TABLE IF EXISTS `User_has_Settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `User_has_Settings` (
`Settings_ID` int(11) NOT NULL,
`dt` timestamp NULL DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
`User_ID` int(11) NOT NULL,
PRIMARY KEY (`Settings_ID`,`User_ID`),
KEY `fk_User_has_Settings_Settings1_idx` (`Settings_ID`),
KEY `fk_User_has_Settings_cms1_idx` (`cms_ID`),
KEY `fk_User_has_Settings_User1_idx` (`User_ID`),
CONSTRAINT `fk_User_has_Settings_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_User_has_Settings_Settings1` FOREIGN KEY (`Settings_ID`) REFERENCES `Settings` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `fk_User_has_Settings_User1` FOREIGN KEY (`User_ID`) REFERENCES `User` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `User_has_Settings`
--
LOCK TABLES `User_has_Settings` WRITE;
/*!40000 ALTER TABLE `User_has_Settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `User_has_Settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categary`
--
DROP TABLE IF EXISTS `categary`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categary` (
`Name` varchar(200) NOT NULL,
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Visibility` tinyint(1) NOT NULL DEFAULT '0',
`Parent_ID` int(11) DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
`Information` varchar(50) DEFAULT NULL,
PRIMARY KEY (`ID`),
KEY `fk_categary_categary1_idx` (`Parent_ID`),
KEY `fk_categary_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_categary_categary1` FOREIGN KEY (`Parent_ID`) REFERENCES `categary` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `fk_categary_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=4561 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categary`
--
LOCK TABLES `categary` WRITE;
/*!40000 ALTER TABLE `categary` DISABLE KEYS */;
INSERT INTO `categary` VALUES ('منوی اصلی',4537,0,NULL,16,'root'),('منوی اصلی',4538,0,NULL,17,'root'),('Home',4544,1,4537,16,'usual'),('Wiki',4545,1,4537,16,'usual'),('Blog',4546,1,4537,16,'blog'),('خانه',4547,1,4538,17,'usual'),('آموزش',4548,1,4538,17,'usual'),('وبلاگ',4549,1,4538,17,'blog'),('sience',4550,1,4546,16,'usual'),('زیرخانه',4551,1,4547,17,'usual'),('منوی اصلی',4552,0,NULL,1,'root'),('jsfcm Home',4553,1,4552,1,'usual'),('Contact with us',4554,1,4552,1,'usual'),('منوی اصلی',4555,0,NULL,18,'root'),('منوی اصلی',4556,0,NULL,19,'root'),('منوی اصلی',4557,0,NULL,20,'root'),('منوی اصلی',4558,0,NULL,21,'root'),('asas',4559,1,4557,20,'usual'),('آموزش',4560,1,4549,17,'usual');
/*!40000 ALTER TABLE `categary` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_roles`
--
DROP TABLE IF EXISTS `user_roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_roles` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`authority` varchar(45) COLLATE utf8_persian_ci DEFAULT NULL,
`cms_ID` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `fk_user_roles_cms1_idx` (`cms_ID`),
CONSTRAINT `fk_user_roles_cms1` FOREIGN KEY (`cms_ID`) REFERENCES `CMS` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_persian_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_roles`
--
LOCK TABLES `user_roles` WRITE;
/*!40000 ALTER TABLE `user_roles` DISABLE KEYS */;
INSERT INTO `user_roles` VALUES (1,'ADMIN',1),(2,'USER',1);
/*!40000 ALTER TABLE `user_roles` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2015-01-02 13:55:41