-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples.html
735 lines (617 loc) · 26 KB
/
examples.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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
<!DOCTYPE html>
<html lang="en">
<head>
<!-- start: Meta -->
<meta charset="utf-8">
<title>OpenDDR</title>
<meta name="description" content="OpenDDR Device Detection"/>
<meta name="keywords" content="Mobile, web, wc3, ddr, html5, css3" />
<meta name="author" content="Werner Keil"/>
<!-- end: Meta -->
<!-- start: Mobile Specific -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- end: Mobile Specific -->
<!-- start: Facebook Open Graph -->
<meta property="og:title" content=""/>
<meta property="og:description" content=""/>
<meta property="og:type" content=""/>
<meta property="og:url" content=""/>
<meta property="og:image" content=""/>
<!-- end: Facebook Open Graph -->
<!-- start: CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans:400,700">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Serif">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Boogaloo">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Economica:700,400italic">
<!-- end: CSS -->
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<!--start: Wrapper -->
<div id="wrapper">
<!--start: Container -->
<div class="container">
<!--start: Header -->
<header>
<!--start: Row -->
<div class="row">
<!--start: Logo -->
<div class="logo span4">
<a class="brand" href="#"><img src="img/logo.png"></a>
</div>
<!--end: Logo -->
<!--start: Social Links -->
<div class="span8">
<div id="social-links">
<ul class="social-small-grid">
<li>
<div class="social-small-item">
<div class="social-small-info-wrap">
<div class="social-small-info">
<div class="social-small-info-front social-small-twitter">
<a href="http://twitter.com/OpenDDR"></a>
</div>
<div class="social-small-info-back social-small-twitter-hover">
<a href="http://twitter.com/OpenDDR"></a>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="social-small-item">
<div class="social-small-info-wrap">
<div class="social-small-info">
<div class="social-small-info-front social-small-facebook">
<a href="http://www.facebook.com/OpenDDR-122278367886036"></a>
</div>
<div class="social-small-info-back social-small-facebook-hover">
<a href="http://www.facebook.com/OpenDDR-122278367886036"></a>
</div>
</div>
</div>
</div>
</li>
<!--
<li>
<div class="social-small-item">
<div class="social-small-info-wrap">
<div class="social-small-info">
<div class="social-small-info-front social-small-dribbble">
<a href="http://dribbble.com"></a>
</div>
<div class="social-small-info-back social-small-dribbble-hover">
<a href="http://dribbble.com"></a>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="social-small-item">
<div class="social-small-info-wrap">
<div class="social-small-info">
<div class="social-small-info-front social-small-flickr">
<a href="http://flickr.com"></a>
</div>
<div class="social-small-info-back social-small-flickr-hover">
<a href="http://flickr.com"></a>
</div>
</div>
</div>
</div>
</li>
-->
</ul>
</div>
</div>
<!--end: Social Links -->
</div>
<!--end: Row -->
</header>
<!--end: Header-->
<!--start: Navigation-->
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="downloads.html">Downloads</a></li>
<!--<li><a href="features.html">Features</a></li>-->
<li class="active"><a href="examples.html">Examples</a></li>
<li><a href="about.html">About</a></li>
<!--<li><a href="pricing.html">Pricing</a></li>-->
<li><a href="contact.html">Contact</a></li>
<!--
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li class="nav-header">Nav header</li>
<li><a href="#">Separated link</a></li>
<li><a href="#">One more separated link</a></li>
</ul>
</li>
-->
</ul>
</div>
</div>
</div>
</div>
<!--end: Navigation-->
</div>
<!--end: Container-->
<!--start: Container -->
<div class="container">
<!-- start: Hero Unit - Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<p>
Check out OpenDDR Live demos hosted by <a href="https://jelastic.com/">Jelastic</a>.
</p>
<p><a class="btn btn-success btn-large" href="http://openddr2.demo.jelastic.com/jakarta-mvc/">Jakarta MVC Example »</a> <a class="btn btn-success btn-large" href="http://openddr.demo.jelastic.com/servlet/">Servlet Example »</a> <a class="btn btn-success btn-large" href="http://openddr.demo.jelastic.com/spring/">Spring Example »</a></p>
</div>
<!-- end: Hero Unit -->
<!-- start: Row -->
<div class="row">
<div class="span3">
<div class="icons-box">
<i class="ico-iphone ico-color circle-color big"></i>
<div class="title"><h3>Classifier Example</h3></div>
<p>
</p>
<div class="clear"></div>
</div>
</div>
<!--
<div class="span4">
<div class="icons-box">
<i class="ico-ipad circle big"></i>
<div class="title"><h3>Responsive</h3></div>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</p>
<div class="clear"></div>
</div>
</div>
-->
<div class="span9">
<div class="box">
<p>
<pre>
Classifier cl = Classifier.builder().with(option, loaderPath).build();
Device device = cl.classifyDevice("A User Agent");
if (device != null) {
System.out.println("Device ID: '" + device.getId() + "'.");
System.out.println("Device as JSON: ");
System.out.println(device.toString());
} else {
System.out.println("No device found.");
}
</pre>
</p>
<div class="clear"></div>
</div>
</div>
<!--
<div class="span4">
<div class="icons-box">
<i class="ico-heart circle big"></i>
<div class="title"><h3>User friendly</h3></div>
<p>
<pre>
Classifier client = new ClassifierBuilder().with(option, loaderPath).build();
</pre>
</p>
<div class="clear"></div>
</div>
</div>
-->
</div>
<!-- end: Row -->
<!-- start: Row -->
<div class="row">
<div class="span3">
<div class="icons-box">
<i class="ico-embed-close ico-color circle-color big"></i>
<div class="title"><h3>W3C DDR Simple Example</h3></div>
<p>
</p>
<div class="clear"></div>
</div>
</div>
<!--
<div class="span4">
<div class="icons-box">
<i class="ico-ipad circle big"></i>
<div class="title"><h3>Responsive</h3></div>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</p>
<div class="clear"></div>
</div>
</div>
-->
<div class="span9">
<div class="box">
<p>
<pre>
private static void init() {
private static final String CONFIG_FILE = "/oddr.properties";
Properties initializationProperties = new Properties();
try {
initializationProperties.load(SimpleConsole.class.getResourceAsStream(CONFIG_FILE));
identificationService = ServiceFactory.newService("mobi.openddr.simple.DDRService",
initializationProperties.getProperty(DDRService.ODDR_VOCABULARY_IRI), initializationProperties);
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
private static void identify(String ua) {
PropertyRef vendorRef;
PropertyRef modelRef;
PropertyRef displayWidthRef;
PropertyRef displayHeightRef;
PropertyRef osVersionRef;
PropertyRef osRef;
try {
vendorRef = identificationService.newPropertyRef("vendor");
modelRef = identificationService.newPropertyRef("model");
displayWidthRef = identificationService.newPropertyRef("displayWidth");
displayHeightRef = identificationService.newPropertyRef("displayHeight");
osRef = identificationService.newPropertyRef("device_os");
osVersionRef = identificationService.newPropertyRef("device_os_version");
} catch (NameException ex) {
throw new RuntimeException(ex);
}
final PropertyRef[] propertyRefs = new PropertyRef[] { vendorRef, modelRef, displayWidthRef, displayHeightRef, osRef, osVersionRef };
final Evidence e = new ODDRHTTPEvidence();
try {
PropertyValues propertyValues = identificationService.getPropertyValues(e, propertyRefs);
PropertyValue vendor = propertyValues.getValue(vendorRef);
PropertyValue model = propertyValues.getValue(modelRef);
PropertyValue displayWidth = propertyValues.getValue(displayWidthRef);
PropertyValue displayHeight = propertyValues.getValue(displayHeightRef);
PropertyValue os = propertyValues.getValue(osRef);
PropertyValue osVersion = propertyValues.getValue(osVersionRef);
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}
</pre>
</p>
<div class="clear"></div>
</div>
</div>
<!--
<div class="span4">
<div class="icons-box">
<i class="ico-heart circle big"></i>
<div class="title"><h3>User friendly</h3></div>
<p>
<pre>
Classifier client = new ClassifierBuilder().with(option, loaderPath).build();
</pre>
</p>
<div class="clear"></div>
</div>
</div>
-->
</div>
<!-- end: Row -->
<!--start: Row -->
<div class="row">
<div class="span8">
<!-- start: About Us -->
<div id="about">
<div class="title"><h3>About OpenDDR</h3></div>
<p>Day after day we all experience an incredible growth and fragmentation of devices available on a more and more proliferated market. Accurately tracking their specs has become very hard work.
But this complexity can be reduced if managed by a community daily involved in improving the Device Description Repository (DDR).
This is the essence of the OpenDDR project, the best open, free actively maintained repository of device descriptions currently available.</p>
<p>
OpenDDR is the ultimate open solution to the device fragmentation issues. Because of the wide
diversity of devices available on the market, the developers dealing with web content optimization
need to know hardware and software specs of each device. To face this situation the most effective
solution is using a Device Description Repository, a database storing a huge amount of information
concerning mobile phones, tablets, Interactive TVs, set top boxes and any device with a Web browser.
</p>
</div>
<!-- end: About Us -->
<div class="horizontal-line"></div>
<!-- start: History -->
<div id="history">
<div class="title"><h3>History</h3></div>
<p>
<span class="dropcap">P</span>The OpenDDR project was created by a group of web & mobile developers knowing the importance of an
up-to-date, open, transparent Device Description Repository (DDR), and proper APIs to access it.
We think that identifying hardware and software features of the accessing clients is a basic need, a commodity that
should be available to any developer to allow a better software design.
We started looking for all the available and open sources of device descriptions and we thought how to guarantee for the
future the freedom of choice to other developers, like us: the solution we found was relying on W3C standards. One of
the sources we looked at was the content of the file wurfl.xml, in its version dated April 24th 2011, the last one with
open terms of use, consistent with the initial spirit of wurfl.xml project, and respectful toward “many different people
from many different countries” collecting data for them over the years.
</p>
<p>
<span class="dropcap color">P</span>As Apache DeviceMap was archived at the end of 2016 and we found references and e.g. <a href="http://stackoverflow.com/search?q=openddr">StackOverflow questions</a> on OpenDDR as recent as November 2016 to have always exceeded the same for DeviceMap (even while commits happened there) we decided to reactivate OpenDDR again to allow easier and faster maintenance than Apache Foundation could provide for Open Data rather than source code.
</p>
<!--
<p>
<span class="dropcap dark">P</span>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
</p>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
</p> -->
</div>
<!-- end: History -->
<div class="horizontal-line"></div>
<!-- start: Team -->
<div id="team">
</div>
<div class="span4">
<!-- start: Sidebar -->
<div id="sidebar">
<!-- start: Skills -->
<!--
<div class="title"><h3>Our Skills</h3></div>
<ul class="progress-bar">
<li>
<h5>Web Design ( 40% )</h5>
<div class="meter"><span style="width: 40%"></span></div><!-- Edite width here -->
<!--</li>
<li>
<h5>Wordpress ( 80% )</h5>
<div class="meter"><span style="width: 80%"></span></div><!-- Edite width here -->
<!--</li>
<li>
<h5>Branding ( 100% )</h5>
<div class="meter"><span style="width: 100%"></span></div><!-- Edite width here -->
<!--</li>
<li>
<h5>SEO Optmization ( 60% )</h5>
<div class="meter"><span style="width: 60%"></span></div><!-- Edite width here -->
<!--</li>
</ul>
<!-- end: Skills -->
<!-- start: Tabs -->
<!--
<div class="title"><h3>Tabs</h3></div>
<ul class="tabs-nav">
<li class="active"><a href="#tab1"><i class="mini-ico-glass"></i> Tab 1</a></li>
<li><a href="#tab2"><i class="mini-ico-list"></i> Tab 2</a></li>
<li><a href="#tab3"><i class="mini-ico-pencil"></i> Tab 3</a></li>
</ul>
<div class="tabs-container">
<div class="tab-content" id="tab1">1. Lorem ipsum pharetra felis. Aliquam egestas consectetur elementum class aptent taciti sociosqu ad litora torquent perea conubia nostra lorem inceptos orem ipsum dolor sit amet, consectetur adipiscing elit.</div>
<div class="tab-content" id="tab2">2. Lorem ipsum pharetra felis. Aliquam egestas consectetur elementum class aptent taciti sociosqu ad litora torquent perea conubia nostra lorem inceptos orem ipsum dolor sit amet, consectetur adipiscing elit.</div>
<div class="tab-content" id="tab3">3. Lorem ipsum pharetra felis. Aliquam egestas consectetur elementum class aptent taciti sociosqu ad litora torquent perea conubia nostra lorem inceptos orem ipsum dolor sit amet, consectetur adipiscing elit.</div>
</div> -->
<!-- end: Tabs -->
<!-- start: Testimonials-->
<!--
<div class="testimonial-container">
<div class="title"><h3>Testimonials</h3></div>
<div class="testimonials-carousel" data-autorotate="3000">
<ul class="carousel">
<li class="testimonial">
<div class="testimonials">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</div>
<div class="testimonials-bg"></div>
<div class="testimonials-author">Lucas Luck, <span>CEO</span></div>
</li>
<li class="testimonial">
<div class="testimonials">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</div>
<div class="testimonials-bg"></div>
<div class="testimonials-author">Lucas Luck, <span>CTO</span></div>
</li>
<li class="testimonial">
<div class="testimonials">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</div>
<div class="testimonials-bg"></div>
<div class="testimonials-author">Lucas Luck, <span>COO</span></div>
</li>
<li class="testimonial">
<div class="testimonials">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.</div>
<div class="testimonials-bg"></div>
<div class="testimonials-author">Lucas Luck, <span>CMO</span></div>
</li>
</ul>
</div>
</div>
-->
<!-- end: Testimonials-->
</div>
<!-- end: Sidebar -->
</div>
</div>
<!--end: Row-->
</div>
<!--end: Container-->
<!--start: Container -->
<div class="container">
<!-- start: Footer Menu -->
<div id="footer-menu" class="hidden-tablet hidden-phone">
<!-- start: Container -->
<div class="container">
<!-- start: Row -->
<div class="row">
<!-- start: Footer Menu Logo -->
<div class="span1">
<div id="footer-menu-logo">
<a href="#"><img src="img/logo-footer-menu.png" alt="logo" /></a>
</div>
</div>
<!-- end: Footer Menu Logo -->
<!-- start: Footer Menu Links-->
<div class="span10">
<div id="footer-menu-links">
<ul id="footer-nav">
<li><a href="index.html">Start</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="features.html">Examples</a></li>
<li><a href="about.html">About</a></li>
<!--<li><a href="features.html">Features</a></li>-->
<!--<li><a href="pricing.html">Pricing</a></li>-->
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<!-- end: Footer Menu Links-->
<!-- start: Footer Menu Back To Top -->
<div class="span1">
<div id="footer-menu-back-to-top">
<a href="#"></a>
</div>
</div>
<!-- end: Footer Menu Back To Top -->
</div>
<!-- end: Row -->
</div>
<!-- end: Container -->
</div>
<!-- end: Footer Menu -->
<!-- start: Footer -->
<div id="footer">
<!-- start: Container -->
<div class="container">
<!-- start: Row -->
<div class="row">
<!-- start: About -->
<div class="span3">
<h3>About Us</h3>
<p>
OpenDDR is the best open, free actively maintained W3C compatible repository of device descriptions currently available.
</p>
</div>
<!-- end: About -->
<!-- start: Photo Stream -->
<!--
<div class="span3">
<h3>Photo Stream</h3>
<div class="flickr-widget">
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=9&display=latest&size=s&layout=x&source=user&user=29609591@N08"></script>
<div class="clear"></div>
</div>
</div>
-->
<!-- end: Photo Stream -->
<div class="span6">
<!-- start: Follow Us -->
<h3>Follow Us!</h3>
<ul class="social-grid">
<li>
<div class="social-item">
<div class="social-info-wrap">
<div class="social-info">
<div class="social-info-front social-twitter">
<a href="http://twitter.com/OpenDDR"></a>
</div>
<div class="social-info-back social-twitter-hover">
<a href="http://twitter.com/OpenDDR"></a>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="social-item">
<div class="social-info-wrap">
<div class="social-info">
<div class="social-info-front social-facebook">
<a href="http://www.facebook.com/OpenDDR-122278367886036"></a>
</div>
<div class="social-info-back social-facebook-hover">
<a href="http://www.facebook.com/OpenDDR-122278367886036"></a>
</div>
</div>
</div>
</div>
</li>
<!-- <li>
<div class="social-item">
<div class="social-info-wrap">
<div class="social-info">
<div class="social-info-front social-dribbble">
<a href="http://dribbble.com"></a>
</div>
<div class="social-info-back social-dribbble-hover">
<a href="http://dribbble.com"></a>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="social-item">
<div class="social-info-wrap">
<div class="social-info">
<div class="social-info-front social-flickr">
<a href="http://flickr.com"></a>
</div>
<div class="social-info-back social-flickr-hover">
<a href="http://flickr.com"></a>
</div>
</div>
</div>
</div>
</li> -->
</ul>
<!-- end: Follow Us -->
<!-- start: Newsletter -->
<!--
<form id="newsletter">
<h3>Newsletter</h3>
<p>Please leave us your email</p>
<label for="newsletter_input">@:</label>
<input type="text" id="newsletter_input"/>
<input type="submit" id="newsletter_submit" value="submit">
</form>
-->
<!-- end: Newsletter -->
</div>
</div>
<!-- end: Row -->
</div>
<!-- end: Container -->
</div>
<!-- end: Footer -->
</div>
<!-- end: Container -->
</div>
<!-- end: Wrapper -->
<!-- start: Copyright -->
<div id="copyright">
<!-- start: Container -->
<div class="container">
<div class="span12">
<p>
© 2016-2023, OpenDDR. <a href="http://bootstrapmaster.com" alt="Bootstrap Themes">Bootstrap Themes</a> Designed by BootstrapMaster in Poland <img src="img/poland.png" alt="Poland" style="margin-top:-4px">
</p>
</div>
</div>
<!-- end: Container -->
</div>
<!-- end: Copyright -->
<!-- start: Java Script -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.8.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/flexslider.js"></script>
<script src="js/carousel.js"></script>
<script def src="js/custom.js"></script>
<!-- end: Java Script -->
</body>
</html>