🐘 index.php (Php) 14.6 KB 2016-01-08
Main entry point for web interface
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 | <?php
$seconds_to_cache = 75000;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Content-Type: text/html; charset=UTF-8");
header("Expires: $ts");
header("Cache-Control: public, max-age=$seconds_to_cache, pre-check=$seconds_to_cache");
header("X-UA-Compatible: IE=edge,chrome=1");
header("Pragma: cache");
//later: geo ip und spracheinstellungen
error_reporting(E_ALL);
ini_set('display_errors', '0');
require_once( "/home/wwwbuzzerstar/library/Template.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Config.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Functions.inc.php" );
require_once( "/home/wwwbuzzerstar/library/Connection.inc.php");
require_once( "/home/wwwbuzzerstar/library/mobile/Mobile_Detect.php");
$detect = new Mobile_Detect();
$func = new Functions();
$config = new Config();
$design = new Template();
$conn = new Connection();
$pdo = $conn->prepareQuery();
$table = $config->sql_tablename_publish_de();
$table_img = $config->sql_tablename_pictures();
$shortcode_passkey = $config->shortcode_passkey();
$pdo = $conn->prepareQuery();
$picpath = $config->picture_storepath();
$maxPageCount = $config->index_max_results();
$page = $func->stripHtml($_REQUEST['p']);
$GoogleUserID = md5($_SERVER['HTTP_USER_AGENT'] . $_SERVER['REMOTE_ADDR']);
$deviceTypeMobile = $detect->isMobile();
$deviceTypeTablet = $detect->isTablet();
if ($deviceTypeMobile === FALSE || $deviceTypeTablet === FALSE ) {
$shareaholic = "";
}
if (!is_numeric($page) || !isset($page) || empty($page) || strlen($page) <= 0 ){
$page = 0;
}
// root navigation caluclation:
$root_navigation_htmlcontent =<<<END
... [truncated, 244 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index.php",
"description": "Main entry point for web interface",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "14.6 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/index.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
🌐 index1.html (Html) 33.3 KB 2016-01-08
HTML template for index1
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 | <!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Blog Magazine Flat UI Kit website for high end mobiles,like samsung nokia mobile website templates for free | Home :: w3layouts</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
</script>
<script src="js/jquery.min.js"></script>
<!-- end nav -->
<script src="js/login.js"></script>
<script src="js/modernizr.custom.js"></script>
<!---starrt-bx-slider---->
<!-- bxSlider Javascript file -->
<script src="js/jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->
<link href="css/jquery.bxslider.css" rel="stylesheet" />
<script>
$(document).ready(function(){
$('.bxslider').bxSlider();
});
</script>
<!---End-bx-slider---->
<!----Calender -------->
<link rel="stylesheet" href="css/clndr.css" type="text/css" />
<script src="js/underscore-min.js"></script>
<script src= "js/moment-2.2.1.js"></script>
<script src="js/clndr.js"></script>
<script src="js/site.js"></script>
<!----End Calender -------->
</head>
<body>
<!---strat-wrap---->
<div class="wrap">
<!---start-top-nav---->
<div class="top-nav">
<div class="menu1">
<ul class="menu2">
<li>
<a class="nav-icon" href=""> </a>
<ul>
<li>
<a class="root-nav1" href="">Business</a>
<ul>
... [truncated, 776 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index1.html",
"description": "HTML template for index1",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "33.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/index1.html",
"encodingFormat": "text/html",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
🌐 startseite.html (Html) 9.4 KB 2016-01-08
HTML template for startseite
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 | <!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Blog Magazine Flat UI Kit website for high end mobiles,like samsung nokia mobile website templates for free | Home :: w3layouts</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
</script>
<script src="js/jquery.min.js"></script>
<!-- end nav -->
<script src="js/modernizr.custom.js"></script>
<!---starrt-bx-slider---->
<!-- bxSlider Javascript file -->
<script src="js/jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->
<link href="css/jquery.bxslider.css" rel="stylesheet" />
<script>
$(document).ready(function(){
$('.bxslider').bxSlider();
});
</script>
<!---End-bx-slider---->
</head>
<body>
<!---strat-wrap---->
<div class="wrap">
<!---start-top-nav---->
<div class="top-nav">
<div class="menu1">
<ul class="menu2">
<li>
<a class="nav-icon" href=""> </a>
<ul>
<li>
<a class="root-nav1" href="">Business</a>
<ul>
<li><a href="">Item 11</a></li>
<li><a href="">Item 12</a></li>
<li><a href="">Item 13</a></li>
<li><a href="">Item 14</a></li>
</ul>
... [truncated, 227 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "startseite.html",
"description": "HTML template for startseite",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "9.4 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/startseite.html",
"encodingFormat": "text/html",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
🌐 ticker.html (Html) 2.2 KB 2016-01-08
HTML template for ticker
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 | <html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js" async></script>
<script src="http://bxslider.com/lib/jquery.bxslider.js" async></script>
<link href="http://bxslider.com/lib/jquery.bxslider.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function(){
$('.bxslider').bxSlider({
minSlides: 7,
maxSlides: 9,
slideWidth: 150, // wie breit soll der newticker sein
slideMargin: 1,
ticker: true,
tickerHover: true,
speed: 30000 // wie schnell soll der newticker laufen
});
});
</script>
</head>
<body>
<ul class="bxslider">
<li><a href="http://www.buzzerstar.com/britney-spears-angelina-jolie-paris-hilton-und-co-so-verloren-die-stars-ihre-jungfraeulichkeit-617fc858d.html" target="_blank">Paris Hilton Star<br> asdfas dfasdf asdf<img src="http://www.buzzerstar.com/i.php?s=617fc858d&m=2" title="Beschreibung" alt="" border="2" /></a></li>
<li><a href="http://www.buzzerstar.com/britney-spears-angelina-jolie-paris-hilton-und-co-so-verloren-die-stars-ihre-jungfraeulichkeit-617fc858d.html" target="_blank">Paris Hilton Star<br> asdfas dfasdf asdf<img src="http://www.buzzerstar.com/i.php?s=479f10b46&m=2" title="Beschreibung" alt="" border="2" /></a></li>
<li><a href="http://www.buzzerstar.com/britney-spears-angelina-jolie-paris-hilton-und-co-so-verloren-die-stars-ihre-jungfraeulichkeit-617fc858d.html" target="_blank">Paris Hilton Star<br> asdfas dfasdf asdf<img src="http://www.buzzerstar.com/i.php?s=259af5022&m=2" title="Beschreibung" alt="" border="2" /></a></li>
<li><a href="http://www.buzzerstar.com/britney-spears-angelina-jolie-paris-hilton-und-co-so-verloren-die-stars-ihre-jungfraeulichkeit-617fc858d.html" target="_blank">Paris Hilton Star<br> asdfas dfasdf asdf<img src="http://www.buzzerstar.com/i.php?s=1323dbd19&m=2" title="Beschreibung" alt="" border="2" /></a></li>
<li><a href="http://www.buzzerstar.com/britney-spears-angelina-jolie-paris-hilton-und-co-so-verloren-die-stars-ihre-jungfraeulichkeit-617fc858d.html" target="_blank">Paris Hilton Star<br> asdfas dfasdf asdf<img src="http://www.buzzerstar.com/i.php?s=87e9b7944&m=2" title="Beschreibung" alt="" border="2" /></a></li>
</ul>
</body>
</html>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "ticker.html",
"description": "HTML template for ticker",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "2.2 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/ticker.html",
"encodingFormat": "text/html",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
🌐 ticker_cache_code.html (Html) 52.3 KB 2016-01-08
HTML template for ticker cache code
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 | <!DOCTYPE html>
<!-- saved from url=(0024)http://evertpot.com/107/ -->
<html><script>var urchinTracker=function(){},_gaq={push:function(){try {if(arguments[0][0]=='_link')window.location.href=arguments[0][1]}catch(er){}}},_gat={_createTracker:function(){}, _getTracker:function(){return{__noSuchMethod__:function(){},_link:function(o){if(o)location.href=o;},_linkByPost:function(){return true;},_getLinkerUrl:function(o){return o;},_trackEvent:function(){}}}};</script><script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script><script type="text/javascript">window["_gaUserPrefs"] = { ioo : function() { return true; } }</script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Caching in PHP using the filesystem, APC and Memcached</title>
<link href="./ticker_cache_code_files/stylesheet.css" type="text/css" rel="stylesheet">
<link href="./ticker_cache_code_files/desert.css" type="text/css" rel="stylesheet">
<link rel="alternate" type="application/atom+xml" href="http://feeds.feedburner.com/bijsterespoor" title="Atom feed">
<link rel="shortcut icon" href="http://evertpot.com/favicon.ico">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="openid.server" href="https://indieauth.com/openid">
<link rel="openid.delegate" href="http://evertpot.com/">
<style type="text/css"></style><script type="text/javascript" async="" src="http://evertsblog.disqus.com/embed.js"></script></head>
<body><div class="seoquake-seobar-panel seoquake-seobar-horizontal-fixed-bottom" id="seoquake-seobar-panel"><div class="seoquake-seobar-cell"><button class="seoquake-button" title="SEOquake"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/menulogo-enabled.png"></button></div><div class="seoquake-params-panel seoquake-seobar-cell" style="overflow-x:auto!important;"><table><tr class="seoquake-params-row"><td class="seoquake-params-cell" title="Page Information"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/pageinfo/info_12x12.png"><a class="seoquake-params-link" href="http://evertpot.com/107/#" target="_blank">Info</a></td><td class="seoquake-params-cell" title="Google pagerank"><img src="./ticker_cache_code_files/favicon.ico">PR: <a class="seoquake-params-link" href="http://toolbarqueries.google.com/tbr?client=navclient-auto&hl=en&ch=6208562551&ie=UTF-8&oe=UTF-8&features=Rank&q=info:http%3A%2F%2Fevertpot.com%2F107%2F" rel="74dbc401 5cfcca87_0" target="_blank" style="color: blue;">2</a></td><td class="seoquake-params-cell" title="Google index"><img src="./ticker_cache_code_files/favicon.ico">I: <a class="seoquake-params-link" href="http://www.google.com/search?hl=en&safe=off&q=site%3Aevertpot.com&btnG=Search" rel="74dbc401 06efd07b_1" target="_blank" style="color: blue;">278</a></td><td class="seoquake-params-cell" title="Google links"><img src="./ticker_cache_code_files/favicon.ico">L: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 43ea972a_2" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Google cachedate"><img src="./ticker_cache_code_files/favicon.ico">Cached: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 5fc4f551_3" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Yahoo index"><img src="./ticker_cache_code_files/favicon(1).ico">I: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 27954351_10" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Bing index"><img src="./ticker_cache_code_files/favicon(2).ico">I: <a class="seoquake-params-link" href="http://www.bing.com/search?q=site%3Aevertpot.com&FORM=QBRE" rel="74dbc401 8875ef5a_20" target="_blank" style="color: blue;">3.790 </a></td><td class="seoquake-params-cell" title="Dmoz dir"><img src="./ticker_cache_code_files/mozilla.ico">Dir: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 25121d96_30" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Alexa rank"><img src="./ticker_cache_code_files/favicon(3).ico">Rank: <a class="seoquake-params-link" href="http://www.alexa.com/siteinfo/evertpot.com" rel="74dbc401 ce407b40_31" target="_blank" style="color: blue;">490813</a></td><td class="seoquake-params-cell" title="Webarchive age"><img src="./ticker_cache_code_files/favicon(4).ico">Age: <a class="seoquake-params-link" href="http://web.archive.org/web/*/http://evertpot.com" rel="74dbc401 e6db223b_32" target="_blank" style="color: blue;">February 1, 2011</a></td><td class="seoquake-params-cell" title="Delicious index"><img src="./ticker_cache_code_files/favicon(5).ico">I: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 1bf44e1a_33" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Twitter Tweets"><img src="./ticker_cache_code_files/favicon(6).ico">Tw: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 21a45962_34" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="FaceBook likes"><img src="./ticker_cache_code_files/q9U99v3_saj.ico">l: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 699103ae_35" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Google PlusOne"><img src="./ticker_cache_code_files/favicon.ico">+1: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 846b5e9e_36" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Whois"><img src="./ticker_cache_code_files/favicon.png"><a class="seoquake-params-link" href="http://whois.domaintools.com/evertpot.com?utm_source=seoquake&utm_medium=seoquake&utm_campaign=seoquake" rel="74dbc401 918ca6f0_37" target="_blank">whois</a></td><td class="seoquake-params-cell" title="Yandex index"><img src="./ticker_cache_code_files/pDu9OWAQKB0s2J9IojKpiS_Eho.ico">I: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 20a2e0bb_51" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Yandex catalogue"><img src="./ticker_cache_code_files/04geUuGuuh8Vqfcqds2CEAxWnA0.ico">YCat: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 5dbc50cb_53" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Compete Rank"><img src="http://siteanalytics.compete.com/favicon.ico" width="0" height="0" style="display: none !important; visibility: hidden !important; opacity: 0 !important; background-position: 0px 0px;">C: <a class="seoquake-params-link" href="http://evertpot.com/107/#" rel="74dbc401 ac86610a_108" target="_blank" style="color: blue;">?</a></td><td class="seoquake-params-cell" title="Keywords density"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/density_12x12.png"><a class="seoquake-params-link" href="http://evertpot.com/107/#" target="_blank">Density</a></td><td class="seoquake-params-cell" title="Diagnosis"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/diagnosis/diagnosis_12x12.png"><a class="seoquake-params-link" href="http://evertpot.com/107/#" target="_blank">Diagnosis</a></td><td class="seoquake-params-cell" title="Internal/External links"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/menulogo-enabled.png">Links: <a class="seoquake-params-link" href="http://evertpot.com/107/#" target="_blank">1</a> | <a class="seoquake-params-link" href="http://evertpot.com/107/#" target="_blank">16</a></td></tr></table></div><div class="seoquake-seobar-cell"><button class="seoquake-button" title="Request all parameters"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/request.png"></button></div><div class="seoquake-seobar-cell"><button class="seoquake-button" title="Close"><img src="chrome-extension://akdgnmcogleenhbclghghlkkdndkjdjc/static/close.png"></button></div><div style="clear:both;"></div></div>
<div id="wrap">
<main>
<article>
<p><time datetime="2006-11-01 09:14:18 UTC">November 01, 2006</time></p>
<h1>Caching in PHP using the filesystem, APC and Memcached</h1>
<p>Caching is very important and really pays off in big internet applications. When you cache the data you're fetching from the database, in a lot of cases the load on your servers can be reduced enormously.</p>
<p>One way of caching, is simply storing the results of your database queries in files.. Opening a file and unserializing is often a lot faster than doing an expensive SELECT query with multiple joins.</p>
<p>Here's a simple file-based caching engine.</p>
<div class="highlight"><pre><code class="language-php" data-lang="php"><span class="cp"><?php</span>
<span class="c1">// Our class</span>
<span class="k">class</span> <span class="nc">FileCache</span> <span class="p">{</span>
<span class="c1">// This is the function you store information with</span>
<span class="k">function</span> <span class="nf">store</span><span class="p">(</span><span class="nv">$key</span><span class="p">,</span><span class="nv">$data</span><span class="p">,</span><span class="nv">$ttl</span><span class="p">)</span> <span class="p">{</span>
<span class="c1">// Opening the file</span>
<span class="nv">$h</span> <span class="o">=</span> <span class="nb">fopen</span><span class="p">(</span><span class="nv">$this</span><span class="o">-></span><span class="na">getFileName</span><span class="p">(</span><span class="nv">$key</span><span class="p">),</span><span class="s1">'w'</span><span class="p">);</span>
<span class="k">if</span> <span class="p">(</span><span class="o">!</span><span class="nv">$h</span><span class="p">)</span> <span class="k">throw</span> <span class="k">new</span> <span class="nx">Exception</span><span class="p">(</span><span class="s1">'Could not write to cache'</span><span class="p">);</span>
<span class="c1">// Serializing along with the TTL</span>
<span class="nv">$data</span> <span class="o">=</span> <span class="nb">serialize</span><span class="p">(</span><span class="k">array</span><span class="p">(</span><span class="nb">time</span><span class="p">()</span><span class="o">+</span><span class="nv">$ttl</span><span class="p">,</span><span class="nv">$data</span><span class="p">));</span>
<span class="k">if</span> <span class="p">(</span><span class="nb">fwrite</span><span class="p">(</span><span class="nv">$h</span><span class="p">,</span><span class="nv">$data</span><span class="p">)</span><span class="o">===</span><span class="k">false</span><span class="p">)</span> <span class="p">{</span>
<span class="k">throw</span> <span class="k">new</span> <span class="nx">Exception</span><span class="p">(</span><span class="s1">'Could not write to cache'</span><span class="p">);</span>
<span class="p">}</span>
<span class="nb">fclose</span><span class="p">(</span><span class="nv">$h</span><span class="p">);</span>
<span class="p">}</span>
<span class="c1">// General function to find the filename for a certain key</span>
<span class="k">private</span> <span class="k">function</span> <span class="nf">getFileName</span><span class="p">(</span><span class="nv">$key</span><span class="p">)</span> <span class="p">{</span>
... [truncated, 484 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "ticker_cache_code.html",
"description": "HTML template for ticker cache code",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "52.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/ticker_cache_code.html",
"encodingFormat": "text/html",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
📄 w3layouts-license.txt (Text) 3.7 KB 2016-01-08
Source code file for w3layouts license
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "w3layouts-license.txt",
"description": "Source code file for w3layouts license",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "3.7 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/w3layouts-license.txt",
"encodingFormat": "text/plain",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Text"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
📇 wanted.psd (C) 3.9 MB 2016-01-08
Source code file for wanted
{
"@context": "https://schema.org",
"@type": "ImageObject",
"name": "wanted.psd",
"description": "Source code file for wanted",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "3.9 MB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/wanted.psd",
"encodingFormat": "image/x-photoshop",
"thumbnail": {
"@type": "ImageObject",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/wanted.psd"
}
}
sicherungskopie/
(1 files) 🌐 startseite.html (Html) 18.1 KB 2016-01-08
HTML template for startseite
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 | <!--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Blog Magazine Flat UI Kit website for high end mobiles,like samsung nokia mobile website templates for free | Home :: w3layouts</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
</script>
<script src="js/jquery.min.js"></script>
<!-- end nav -->
<script src="js/modernizr.custom.js"></script>
<!---starrt-bx-slider---->
<!-- bxSlider Javascript file -->
<script src="js/jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->
<link href="css/jquery.bxslider.css" rel="stylesheet" />
<script>
$(document).ready(function(){
$('.bxslider').bxSlider();
});
</script>
<!---End-bx-slider---->
<!----Calender -------->
<link rel="stylesheet" href="css/clndr.css" type="text/css" />
<script src="js/underscore-min.js"></script>
<script src= "js/moment-2.2.1.js"></script>
<script src="js/clndr.js"></script>
<script src="js/site.js"></script>
<!----End Calender -------->
</head>
<body>
<!---strat-wrap---->
<div class="wrap">
<!---start-top-nav---->
<div class="top-nav">
<div class="menu1">
<ul class="menu2">
<li>
<a class="nav-icon" href=""> </a>
<ul>
<li>
<a class="root-nav1" href="">Business</a>
<ul>
... [truncated, 357 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "startseite.html",
"description": "HTML template for startseite",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "18.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/sicherungskopie/startseite.html",
"encodingFormat": "text/html",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}
tpl/
(1 files) 🌐 startpage_v2.tpl (Html) 19.1 KB 2016-01-08
Source code file for startpage v2
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 | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<!--[if !IE]><html lang="de-DE"><![endif]-->
<title>{title}</title>
<meta charset="utf-8">
<link rel="dns-prefetch" href="//www.facebook.net" />
<link rel="dns-prefetch" href="//connect.facebook.net" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="//c.statcounter.com" />
<link rel="dns-prefetch" href="//www.statcounter.com" />
<link rel="dns-prefetch" href="//ct1.addthis.com" />
<link rel="dns-prefetch" href="//m.addthis.com" />
<link rel="dns-prefetch" href="//s7.addthis.com" />
<meta name="robots" content="{robots}" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="google" content="noarchive" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{description}" />
<meta name="keywords" content="buzzerstar, neuigkeiten, news" />
<meta name="rating" content="general" />
<meta name="geo.position" content="51.0000,9.0000" />
<meta name="geo.placename" content="Industriegebiet Falkenstein-Siebenhitz, 08223 Falkenstein, Deutschland" />
<meta name="geo.region" content="DE" />
<meta name="DC.Title" lang="DE" content="{title}" />
<meta name="DC.Subject" lang="DE" content="BuzzerStar Viral News" />
<meta name="DC.Publisher" content="BuzzerStar.com, Ltd." />
<meta name="DC.Type" content="text/html" />
<meta name="DC.Description" lang="DE" content="{description}" />
<meta name="DC.Relation" content="BuzzerStar.com" scheme="IsPartOf" />
<meta name="DC.Rights" content="Copyright 2014, BuzzerStar.com, Ltd., All rights reserved." />
<meta name="DC.Language" content="DE" />
<meta property="article:publisher" content="https://www.facebook.com/BuzzerStar" />
<meta property="article:author" content="https://www.facebook.com/basti.enger" />
<link rel="alternate" hreflang="de" href="http://www.buzzerstar.com/" />
<link rel="apple-touch-icon" href="/images/apple/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/images/apple/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/images/apple/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/images/apple/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/images/apple/apple-touch-icon-152x152.png" />
... [truncated, 280 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "startpage_v2.tpl",
"description": "Source code file for startpage v2",
"dateModified": "2016-01-08",
"dateCreated": "2025-03-23",
"contentSize": "19.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/tpl/startpage_v2.tpl",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Html"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/buzzerstar/devel/"
}