-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-blog.html
714 lines (592 loc) · 38.8 KB
/
single-blog.html
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js IE lt-ie9 lt-ie8 lt-ie7"></html>
<![endif]-->
<!--[if IE 7]>
<html class="no-js IE lt-ie9 lt-ie8"></html>
<![endif]-->
<!--[if IE 8]>
<html class="no-js IE lt-ie9"></html>
<![endif]-->
<!--[if gt IE 8]>
<html class="no-js IE gt-ie8"></html>
<![endif]-->
<!--[if !IE]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<!-- title -->
<title>Plus Hosting</title>
<!-- meta tags -->
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1,maximum-scale=1" name="viewport">
<meta content="Plus Hosting" name="description">
<!-- fav icon -->
<link href="images/favicon.ico" rel="shortcut icon">
<!-- css => style sheet -->
<link href="style.css" media="screen" rel="stylesheet" type="text/css">
<!-- css => responsive sheet -->
<link href="css/responsive.css" media="screen" rel="stylesheet" type="text/css">
<!-- JQuery => javascript libs -->
<script src="js/jquery.js" type="text/javascript"></script>
<!-- online JQuery libs -->
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script> -->
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<!--[if lt IE 9]><!-->
<!-- css for ie -->
<link href="css/ie.css" media="screen" rel="stylesheet" type="text/css">
<!--<![endif]-->
<!-- google maps -->
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body id="top" class="page">
<!--[if lt IE 9]>
<p class="browsehappy">
You are using an
<strong>outdated</strong>
browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a>
to improve your experience.
</p>
<![endif]-->
<div class="loadingContainer">
<div class="loading">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div><!-- end of loading -->
</div><!-- end of loading container -->
<div class="allWrapper">
<!-- Page Header -->
<section class="pageHeader section mainSection scrollAnchor darkSection" id="pageHeader">
<div class="topMenu navBar">
<div class="container">
<div class="row">
<ul class="topSocial socialNav col-md-6 col-sm-12">
<li class="facebook"><a href="#"><i class="animated fa fa-facebook"></i></a></li>
<li class="twitter"><a href="#"><i class="animated fa fa-twitter"></i></a></li>
<li class="rss"><a href="#"><i class="animated fa fa-rss"></i></a></li>
<li class="lang">
<form method="POST" class="langForm">
<select name="language" id="language">
<option disabled="disabled" value="NoSeclect">Language</option>
<option value="En">English</option>
<option value="Hr">Hrvatski</option>
</select>
</form><!-- end of lang form -->
</li><!-- end of lang -->
</ul><!-- end of top social -->
<div class="topContact col-md-6 col-sm-12">
<ul>
<li class="tele">
Nazovi nas :
<a href="tele:0038552452052">+ 385 52 452 052</a>
</li>
<li class="mail">
Piši nam :
<a href="mailto:info@plus.hr">info@plus.hr</a>
</li>
</ul>
</div><!-- end of top contacts -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of top menu -->
<!-- Header -->
<header class="header headerStyle1 style-1" id="header">
<div class="sticky scrollHeaderWrapper">
<div class="container">
<div class="row">
<div class="logoWrapper">
<h1 class="logo">
<a class="clearfix" href="index.html" title="Plus Hosting">
<img class="text" src="images/logo-1.png" />
</a>
</h1><!-- end of logo -->
</div><!-- end of logoWrapper -->
<nav class="mainMenu mainNav" id="mainNav">
<ul class="navTabs">
<li>
<a href="index.html">Hosting</a>
<ul class="dropDown sub-menu">
<li><a href="web-hosting.html" title="Web shared hosting" >Web hosting</a></li>
<li><a href="#">Reseller hosting</a></li>
<li><a href="vps.html">VPS hosting</a></li>
<li><a href="#">Dedicated server</a></li>
<li><a href="ssl.html">SSL certifikati</a></li>
<li><a href="exchange.html">Poslovni Mail</a></li>
<li><a href="cdn.html">CDN</a></li>
<li><a href="streaming.html">Shoutcast Streaming</a></li>
<li><a href="#">Cjenik</a></li>
<li><a href="#">Pravila korištenja</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="domains.html">Domene</a>
</li>
<li>
<a href="#">Usluge</a>
<ul class="dropDown sub-menu">
<li><a href="#">Magento savjetovanje</a></li>
<li><a href="#">Managed hosting</a></li>
<li><a href="affiliate.html">Affiliate Program</a></li>
<li><a href="web-migration.html">Web migracije</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="about.html" >O nama</a>
<ul class="dropDown sub-menu">
<li><a href="team.html">Tim</a></li>
<li><a href="#">Infrastuktura</a></li>
<li><a href="http://ads.plus.hr/">Medijski materijal</a></li>
<li><a href="careers.html">Posao</a></li>
</ul><!-- end of dropdown -->
</li>
<li>
<a href="blog-sidebar.html" class="active">Blog</a>
</li>
<li>
<a href="contact.html">Kontakt</a>
</li>
<li class="login formTop">
<button class="formSwitcher" data-toggle="modal" data-target="#loginModal">Prijava</button>
<div class="modal loginModal fade" id="loginModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="container">
<ol class="formWrapper loginFormWrapper" id="loginFormWrapper">
<li><h5><i class="fa fa-user"></i></h5></li>
<li>
<form class="loginForm" method="POST">
<input class="loginName" id="loginName" name="loginName" placeholder="Korisnicko ime" type="text">
<input class="loginPassword" id="loginPassword" name="loginPassword" placeholder="Lozinka" type="password">
<input type="checkbox" name="remember" id="remember">
<label for="remember">Zapamti me</label>
<button class="generalBtn loginBtn" type="submit">Prijavi se</button>
</form>
</li>
<li class="register"><p><a href="register.html">Registriraj se</a></p></li>
</ol>
</div><!-- end of container -->
</div><!-- end of modal -->
<a href="login.html">Prijava</a>
</li>
</ul><!-- end of nav tabs -->
</nav><!-- end of main nav -->
<a href="#" class="generalLink" id="responsiveMainNavToggler"><i class="fa fa-bars"></i></a>
<div class="clearfix"></div><!-- end of clearfix -->
<div class="responsiveMainNav"></div><!-- end of responsive main nav -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of sticky -->
</header><!-- end of header -->
<!-- Page Info -->
<div class="pageInfo">
<div class="cover"></div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="pageTitle">Blog</h2>
</div><!-- end of col-md-4 -->
<div class="col-md-8">
<ol class="breadcrumb">
<li><a href="index.html">Naslovna</a></li>
<li class="active">Blog</li>
</ol><!-- end of breadcrumb -->
</div><!-- end of col-md-8 -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of page info -->
</section><!-- end of Page Header -->
<!-- Blog -->
<section class="blog section mainSection scrollAnchor lightSection" id="blog">
<div class="sectionWrapper">
<div class="container singlePostPage">
<div class="row">
<div class="col-md-12 sectionTitle">
<h2 class="sectionHeader">
Plus Hosting novosti
<span class="generalBorder"></span>
</h2><!-- end of sectionHeader -->
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lorem quam, adipiscing condimentum tristique vel, eleifend sed turpis. Pellentesque cursus arcu id magna euismod in elementum purus molestie.</p>
</div><!-- end of section title -->
</div><!-- end of row -->
<div class="row">
<div class="col-md-8">
<div class="row">
<article class="col-md-12 post postWide singlePost">
<div class="postWrapper">
<div class="postMedia postSlider carousel2">
<img alt="post sample" src="http://placehold.it/1148x350/" title="post sample">
<img alt="post sample" src="http://placehold.it/1148x350/" title="post sample">
<img alt="post sample" src="http://placehold.it/1148x350/" title="post sample">
</div>
<div class="postContents">
<a href="#" class="postIcon">
<i class="animated fa fa-newspaper-o"></i>
</a>
<h4 class="postTitle">POODLE napad na SSL 3.0 protokol !</h4>
<p class="postDetails">Google je ovaj tjedan objavio detalje tzv. POODLE napada na SSL 3.0 protokol. SSL 3.0 je 18 godina star protokol koji, unatoc prisutnosti naprednijeg i sigurnijeg TLS protokola, još uvijek uživa u vrlo rasprostranjenoj podršci, izmedu ostalog u web preglednicima i e-mail klijentima na racunalima korisnika, te na web, mail, FTP, VPN i drugim serverima.Detalji POODLE napada mogu se pronaci u izvještaju Googleovih sigurnosnih strucnjaka. Ukratko, POODLE omogucuje napadacu prikupljanje povjerljivih informacija koje razmijenjuju vaš web preglednik i web stranica bez obzira na cinjenicu da komuniciraju HTTPS protokolom. Primjer takve informacije može biti autentikacijski cookie. Izvedba napada, barem u ovom trenutku, nije jednostavna koliko se naizgled cini. Moderni web preglednici i e-mail klijenti prilikom uspostave sigurne veze sa serverom dogovaraju najsigurniji protokol koji je podržan s obje strane. U iznimno velikom broju slucajeva to nije SSL 3.0, vec neka od verzija TLS-a. Prema CloudFlareovoj analizi, svega 0.09% prometa na njihovoj mreži koristi SSL 3.0 protokol. Da bi POODLE napad mogao biti izvršen, napadac najprije mora izvršiti MITM (man in the middle) napad, odnosno presresti komunikaciju izmedu klijenta i servera, te inicirati prebacivanje (eng. fallback) na manje siguran protokol, u ovom slucaju SSL 3.0. Ovakav scenarij se može zamisliti kada Internetu pristupate sa nesigurne ili kompromitirane mreže (npr. javni Wi-Fi hotspot). U slucaju pristupa Internetu sa sigurne mreže, ovakav je napad teško izvediv, ali uopce ne sumnjamo da bi se uskoro mogle pojaviti nove, naprednije metode napada u samim web preglednicima koristeci maliciozni JavaScript koji ce inicirati, bez znanja korisnika, POODLE napad.
</p>
<h5>Kako se zaštititi od POODLE napada?</h5>
<p>Najsigurnije rješenje je zapravo iskljucivanje SSL 3.0 protokola na strani servera. Ako protokol nije podržan na strani servera, klijent ne može uspostaviti vezu koristeci ovaj nesiguran protokol i napad nije moguce izvršiti. Popularni servisi poput CloudFlarea i Instagrama, te društvene mreže kao što su Facebook, Twitter i LinkedIn vec su onemogucili SSL 3.0, a ista mjera zaštite bit ce poduzeta i na našim web serverima u narednim danima.</p>
<h5>Imam web stranicu sa SSL cerfikatom. Hoce li iskljucivanje SSL-a 3.0 na serveru uzrokovati probleme?</h5>
<p>Svi moderni web preglednici podržavaju i automatski koriste TLS protokol kada pristupate svojoj web stranici putem HTTPS-a. Iskljucivanje SSL-a 3.0 nece imati nikakve negativne posljedice za vas, niti za ostale korisnike. Problem sa uspostavom sigurne veze imat ce jedino korisnici Internet Explorera 6 na Windowsima XP. Iako Internet Explorer 6 ima podršku za TLS 1.0, istu je potrebno rucno ukljuciti u postavkama.</p>
<h5>Kako mogu ukljuciti TLS podršku u Internet Exploreru 6?</h5>
<p>Otvorite Internet Explorer 6, odaberite izbornik "Tools", zatim kliknite na "Internet options", odaberite karticu "Advanced", te pronadite i stavite kvacicu na opciju "Use TLS 1.0? kao što je prikazano na slici (kliknite na sliku za veci prikaz).</p>
<h5>Trebam li iskljuciti SSL 3.0 na svojem racunalu?</h5>
<p>SSL 3.0 je prisutan svugdje na Internetu, ne samo na našim serverima i ne samo na web serverima, vec na mail, FTP, VPN i drugim serverima. Velika vecina servera na Internetu podržava i TLS i SSL, stoga iskljucivanje SSL 3.0 protokola u e-mail klijentima, web preglednicima i drugim aplikacijama svakako ima smisla. Štoviše, posljednje verzije Google Chrome web preglednika vec imaju onemogucen SSL 3.0, a Mozilla je najavila kako ce Firefox 34, koji izlazi u studenome ove godine, takoder dolaziti s onemogucenom podrškom za ovaj ranjivi protokol.</p>
<h5>Može li iskljucivanje SSL 3.0 protokola na racunalu uzrokovati probleme?</h5>
<p>U slucaju da server ne podržava nijednu verziju TLS protokola, vec se oslanja iskljucivo na SSL 3.0, iskljucivanje podrške za SSL 3.0 u vašem web pregledniku, e-mail klijentu ili nekom drugom programu koji komunicira s takvim serverom, zapravo ce eliminirati mogucnost korištenja bilo kakvog sigurnosnog protokola i u konacnici mogucnost uspostave sigurne veze sa serverom. Ako ovisite o takvom serveru i niste u mogucnosti omoguciti TLS podršku na njemu, vjerojatno necete htjeti iskljuciti SSL 3.0 u aplikaciji koja komunicira s tim serverom.</p>
<h5>Hoce li SSL 3.0 protokol biti iskljucen i na mail serverima Plus Hostinga?</h5>
<p>U ovoj fazi, ne. Iako se vecina korisnika s ukljucenom enkripcijom u svojim e-mail klijentima na naše servere povezuje s nekom varijantom TLS protokola, još uvijek postoji prilicno velik broj korisnika sa e-mail klijentima koji uopce ne podržavaju TLS. Ovdje se ponajprije radi o korisnicima Windows Live Maila i Outlook Expressa. S druge strane, korisnici Microsoft Outlooka, Thunderbirda, te ostalih novijih e-mail klijenata imaju mogucnost rucnog ili cak automatskog odabira TLS protokola.</p>
<h5>Može li se POODLE napad mitigirati bez iskljucivanja SSL 3.0 protokola?</h5>
<p>Obzirom da bi iskljucivanje SSL 3.0 protokola na odredenim serverima onemogucili uspostavu sigurne veze, primjerice izmedu mail servera i korisnika koji koristi Windows Live Mail aplikaciju, mitigaciju POODLE napada cemo u ovoj fazi vršiti pomocu TLS_FALLBACK_SCSV dopune za OpenSSL toolkit. Ova dopuna onemogucava da se jednom uspostavljena TLS veza, uz manipulaciju napadaca, prebaci na protokol niže sigurnosti (npr. SSL 3.0), cime je efektivno onemogucena izvedba POODLE napada. Korisnici s e-mail klijentima koji su se na mail server povezali izravno sa SSL 3.0 protokolom su, nažalost, i dalje podložni napadu.</p>
<br />
<br />
<ul class="postMeta clearfix">
<li class="postDate">
<div class="metaContent">
<i class="animated fa fa-clock-o"></i>
Date : Oct 18th, 2014
</div>
</li>
<li class="postAuthor">
<div class="metaContent">
<i class="animated fa fa-user"></i>
Author :
<a href="#" title="author name">Saša</a>
</div>
</li>
<li class="postComments">
<div class="metaContent">
<i class="animated fa fa-comment-o"></i>
<a class="scrollTo" data-scroll="comments" href="#comments">Comments : 11</a>
</div>
</li>
</ul>
<div class="clearfix"></div>
</div>
</div>
</article><!-- end of post -->
<div class="clearfix"></div>
<div class="col-md-12 share">
<div class="shareBtns clearfix">
<h5 class="shareHeader title">Podijeli ovaj članak ako ti se sviđa :)</h5><!-- end of share header -->
<div class="shareBtnsWrapper">
<ul class="rrssb-buttons colorful clearfix">
<li class="facebook">
<a href="https://www.facebook.com/sharer/sharer.php?u=http://kurtnoble.com/labs/rrssb/index.html" class="popup"><i class="fa fa-facebook"></i></a>
</li>
<li class="twitter">
<a href="http://twitter.com/home?status=Ridiculously%20Responsive%20Social%20Sharing%20Buttons%20by%20@seagoat%20and%20@dbox%20http://kurtnoble.com/labs/rrssb" class="popup"><i class="fa fa-twitter"></i></a>
</li>
<li class="googleplus">
<a href="https://plus.google.com/share?url=Check%20out%20how%20ridiculously%20responsive%20these%20social%20buttons%20are%20http://kurtnoble.com/labs/rrssb/index.html" class="popup"><i class="fa fa-google-plus"></i></a>
</li>
<li class="email">
<!-- Replace subject with your message using URL Endocding: http://meyerweb.com/eric/tools/dencoder/ -->
<a href="mailto:?subject=Check%20out%20how%20ridiculously%20responsive%20these%20social%20buttons%20are&body=http%3A%2F%2Fkurtnoble.com%2Flabs%2Frrssb%2Findex.html"><i class="fa fa-share-alt"></i></a>
</li>
<li class="linkedIn">
<a href="https://www.linkedin.com/shareArticle?summary=Responsive+social+icons+by+KNI+Labs&url=http%3A%2F%2Fkurtnoble%2Ecom%2Flabs%2Frrssb%2Findex%2Ehtml&title=Ridiculously+Responsive+Social+Sharing+Buttons&mini=true"><i class="fa fa-linkedin"></i></a>
</li>
<li class="pinterest">
<a href="http://pinterest.com/pin/create/button/?url=http://kurtnoble.com/labs/rrssb/index.html&media=http://kurtnoble.com/labs/rrssb/media/facebook-share.jpg&description=Ridiculously%20responsive%20social%20sharing%20buttons%20by%20KNI%20Labs."><i class="fa fa-pinterest"></i></a>
</li>
</ul>
</div><!-- end of share btns wrapper -->
</div><!-- end of share btns -->
</div><!-- end of share -->
<div data-anchor="comments" class="col-md-12 comments scrollAnchor" id="comments">
<div class="singleComment clearfix">
<div class="commentLevel1 commentLevel">
<figure class="clearfix">
<a class="thumb" href="#"><img src="images/test-1.jpg" alt="user"></a>
<figcaption class="commentContents">
<a href="#" class="reply generalLink">Reply</a>
<h6 class="commenttitle"><a href="#">Begha</a></h6>
<ul class="commentMeta clearfix">
<li class="commentDate">Feb 16, 2014 - 08:07 pm</li>
</ul>
<p class="commentDetails">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation</p>
</figcaption>
</figure>
</div><!-- end of comment level 1 -->
<div class="commentLevel2 commentLevel">
<figure class="clearfix">
<a class="thumb" href="#"><img src="images/test-3.jpg" alt="user"></a>
<figcaption class="commentContents">
<a href="#" class="reply generalLink">Reply</a>
<h6 class="commenttitle"><a href="#">Bayoo</a></h6>
<ul class="commentMeta clearfix">
<li class="commentDate">Feb 16, 2014 - 08:09 pm</li>
</ul>
<p class="commentDetails">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniamtion ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</figcaption>
</figure>
</div><!-- end of comment level 2 -->
</div><!-- end of single comment -->
</div><!-- end of comments -->
<div class="col-md-12 addComment add-send">
<div class="widget addCommentWidget">
<h5 class="widgetHeader">Komentiraj</h5><!-- end of widget header -->
<div class="widgetBody">
<form method="POST" class="addCommentForm">
<ul class="row">
<li class="col-md-6"><input type="text" value="Ime" onblur="if(this.value=='')this.value='Ime'" onfocus="if(this.value=='Ime')this.value=''" name="name" id="name" class="name"></li>
<li class="col-md-6"><input type="email" value="Email" onblur="if(this.value=='')this.value='Email'" onfocus="if(this.value=='Email')this.value=''" name="email" id="email" class="email"></li>
<li class="col-md-12"><textarea name="comment" id="commentArea"></textarea></li>
</ul>
<button type="submit"> Pošalji </button>
</form><!-- end of add comment form -->
</div><!-- end of widget body -->
</div><!-- end of widget --><!-- end of addCommentWidget -->
</div><!-- end of add comment -->
</div><!-- end of row -->
</div><!-- end of col-md-8 -->
<aside class="col-md-4 sidebar">
<div class="widget searchWidget">
<div class="widgetBody">
<form method="GET" class="sideSearch">
<ul class="clearfix">
<li><input type="search" value="pretraži" onblur="if(this.value=='')this.value='pretraži'" onfocus="if(this.value=='pretraži')this.value=''" name="s" id="sideSearch" class="sideSearch"></li>
<li><button type="submit"><i class="animated fa fa-search"></i></button></li>
</ul>
</form><!-- end of side search -->
</div><!-- end of widget body -->
</div><!-- end of widget --><!-- end of search widget -->
<div class="widget categoriesWidget">
<h5 class="widgetHeader">Kategorije</h5><!-- end of widget header -->
<div class="widgetBody">
<ul class="list">
<li><a href="#" title="ASP">ASP</a></li>
<li><a href="#" title="Linux">Linux</a></li>
<li><a href="#" title="Mysql">Mysql</a></li>
<li><a href="#" title="Php">Php</a></li>
<li><a href="#" title="Sigurnost">Sigurnost</a></li>
</ul>
</div><!-- end of widget body -->
</div><!-- end of widget --><!-- end of categories Widget -->
<div class="widget">
<h5 class="widgetHeader clearfix">
Zadnje objavljeno
<span class="tickerControl">
<i class="animated fa fa-angle-left" id="ticker-prev"></i>
<i class="animated fa fa-angle-right" id="ticker-next"></i>
</span>
</h5><!-- end of widget header -->
<div class="widgetBody">
<ul id="ticker" class="ticker">
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">POODLE napad na SSL 3.0 protokol !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">Heartbleed – OpenSSL propust !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">Novosti o domenama u 2014. !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">Blog Tiltle Shall Be Here !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">Što je to DDoS? !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
<li class="clearfix">
<article class="post">
<div class="postContents">
<h5 class="postTitle"><a href="#">DDOS napad na WordPress instalacije !</a></h5>
<ul class="postMeta">
<li class="postDate">Feb 16, 2014</li>
</ul>
</div><!-- end of post contents -->
</article><!-- end of post -->
</li>
</ul><!-- end of ticker -->
</div><!-- end of widget body -->
</div><!-- end of widget -->
<div class="widget tweets">
<h5 class="widgetHeader">Twitter</h5><!-- end of widget header -->
<div class="widgetBody carousel3">
<div class="tweet">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation quat.</p>
<span class="tweetTime">Afew minutes ago</span>
</div><!-- end of tweet -->
<div class="tweet">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation quat.</p>
<span class="tweetTime">Afew minutes ago</span>
</div><!-- end of tweet -->
<div class="tweet">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation quat.</p>
<span class="tweetTime">Afew minutes ago</span>
</div><!-- end of tweet -->
</div><!-- end of widget body -->
<img src="images/tweet.png" alt="tweet">
<div class="clearfix"></div>
</div><!-- end of widget -->
</aside><!-- end of sidebar -->
</div><!-- end of row -->
<div class="clearfix"></div>
</div><!-- end of container -->
</div><!-- end of section wrapper -->
</section><!-- end blog section -->
<!-- Footer -->
<footer class="footer" id="footer">
<!-- Top Footer -->
<div class="topFooter">
<div class="container">
<div class="row">
<div class="col-md-4 footerWidget footerBox">
<h5 class="footerWidgetHeader">O Plus hostingu</h5><!-- end of footer widget header -->
<p class="footerAboutContent footerText">Plus Hosting, najveći hosting provider regije</p>
<div class="aboutLinks clearfix">
<ul class="footerLinksList">
<li><a href="about.html" title="O nama">O nama</a></li>
<li><a href="infrastructure.html" title="Infrastructure">Infrastruktura</a></li>
<li><a href="team.html" title="O nama">Tim</a></li>
<li><a href="careers.html" title="O nama">Posao</a></li>
<li><a href="http://ads.plus.hr/" title="O nama">Medijski materijal</a></li>
<li><a href="blog.html" title="Blog">Blog</a></li>
<li><a href="affiliate.html" title="Usluge">Affiliate program</a></li>
<li><a href="contact.html" title="Kontakti">Kontakti</a></li>
<li><a href="pricing-tables.html" title="Cijene">Cijene</a></li>
<li><a href="testimonials.html" title="Naši korisnici">Naši korisnici</a></li>
</ul><!-- end of footer links list -->
</div><!-- end of about links -->
</div><!-- end of footer widget -->
<div class="col-md-2 footerWidget footerBox">
<h5 class="footerWidgetHeader">Pomoć & Support</h5><!-- end of footer widget header -->
<ul class="footerLinksList">
<li><a href="faq.html" title="FAQs">Često postavljana pitanja</a></li>
<li><a href="knowledge.html" title="Knowledge Base">Baza znanja</a></li>
<li><a href="#" title="Live Support">Live Chat</a></li>
<li><a href="#" title="Otvori Ticket">Otvori Ticket</a></li>
<li><a href="login.html" title="Korisničke stranice">Korisničke stranice</a></li>
</ul><!-- end of footer links list -->
</div><!-- end of footer widget -->
<div class="col-md-2 footerWidget footerBox">
<h5 class="footerWidgetHeader">Korisnički račun</h5><!-- end of footer widget header -->
<ul class="footerLinksList">
<li><a href="login.html" title="Prijavi se">Prijava</a></li>
<li><a href="register.html" title="Registriraj se">Registracija</a></li>
<li><a href="#" title="Pogledaj košaricu">Košarica</a></li>
<li><a href="support.html" title="Pomoć">Korisnička zona</a></li>
</ul><!-- end of footer links list -->
</div><!-- end of footer widget -->
<div class="col-md-4 footerWidget footerBox">
<h5 class="footerWidgetHeader">Javi nam se</h5>
<ul class="getInTouchList">
<li>
<span class="head">Adresa :</span>
<span class="text">Plus Hosting , Dalmatinova 4, 52100 Pula , Hrvatska.</span>
</li>
<li>
<span class="head">Prodaja :</span>
<span class="text">
Telefon :
<a href="tele:003852492052" title="Nazovi nas">+ 385 52 492 052</a>
</span>
<span class="text">
E-mail :
<a href="mailto:info@plus.hr" title="Pošalji nam mail">info@plus.hr</a>
</span>
</li>
<li>
<span class="head">Korisnička podrška :</span>
<span class="text">
Telefon :
<a href="" title="click to call us">00 385 52 452 052</a>
</span>
<span class="text">
E-mail :
<a href="mailto:support@plus.hr" title="click to mail us">support @plus.hr</a>
</span>
</li>
</ul><!-- end of get In Touch List -->
</div><!-- end of footer widget -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of top footer -->
<!-- Bottom Footer -->
<div class="bottomFooter">
<div class="container">
<div class="row">
<div class="col-md-6 copyrights">
<p>Sva prava pridržana © Plus Hosting 2015.</p>
<ul class="terms clearfix">
<li><a href="agreement.html" title="Uvjeti korištenja">Uvjeti korištenja</a></li>
<li><a href="payment-security.html" title="Sigurnost plaćanja">Sigurnost plaćanja</a></li>
<li><a href="#" title="30 dnevna Garancija povrata novca">30 dnevna Garancija povrata novca</a></li>
</ul><!-- end of terms -->
</div><!-- end of copyrights -->
<div class="col-md-6 footerSocial">
<div class="footerSocialWrapper">
<ul class="bottomSocial socialNav">
<li class="facebook"><a href="#"><i class="animated fa fa-facebook"></i></a></li>
<li class="twitter"><a href="#"><i class="animated fa fa-twitter"></i></a></li>
<li class="rss"><a href="#"><i class="animated fa fa-rss"></i></a></li>
</ul><!-- end of bottom social -->
<ul class="paymentsNav">
<li class="visa">
<a href="http://visa.com" title="visa"><img alt="visa card" src="images/visa.png" title="visa card"></a>
</li>
<li class="master">
<a href="http://www.mastercard.com/hr/consumer/" title="master card"><img alt="master card" src="images/master-card.png" title="master card"></a>
</li>
<li class="americanExpress">
<a href="https://www.americanexpress.com/croatia/personal/index.html" title="american express"><img alt="american express" src="images/american-express.png" title="american express"></a>
</li>
<li class="paypal">
<a href="https://www.paypal.com/hr/webapps/mpp/home" title="paypal"><img alt="paypal" src="images/paypal.png" title="paypal"></a>
</li>
</ul><!-- end of payments nav -->
</div><!-- end of footer social wrapper -->
</div><!-- end of footer social -->
</div><!-- end of row -->
</div><!-- end of container -->
</div><!-- end of bottom footer -->
</footer><!-- end of footer -->
</div><!-- end of all wrapper -->
<!-- JavaScript Files ================================================== -->
<script src="js/compiler.js" type="text/javascript"></script>
<script src="js/scripts.js" type="text/javascript"></script>
<!-- BootStrap JavaScript ================================================== -->
<script src="js/bootstrap.js" type="text/javascript"></script>
</body>
</html>