Skip to content

Commit

Permalink
fixes #182 - created an discussion forum for apps.loklak.org (#183)
Browse files Browse the repository at this point in the history
fixes issue #182. Created an discussion forum where users
and developers can comment.
  • Loading branch information
djmgit authored and mariobehling committed Jun 14, 2017
1 parent a93611e commit f045924
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 0 deletions.
55 changes: 55 additions & 0 deletions css/forum.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
body {
overflow-x: hidden;
}

.navbar-custom {
padding: 12px;
background-color: #F1F1F1;
margin-bottom: 0px;
}

.loklak-brand {
font-family: "Courier New";
font-size: 35px;
text-decoration: none;
line-height: 20px;
color: rgb(51,51,51);
line-height: 20px;
}

.loklak-header {
color: #C8254D;
}

.loklak-brand:hover {
text-decoration: none;
color: rgb(51,51,51);
}

.app {
margin-top: 100px;
}

.app-forum {
box-shadow: 0 4px 8px 2px rgba(0,0,0,0.2);
border-radius: 4px;
padding: 26px;
}

.forum-header {
color: #424242;
margin-top: 26px;
}

.app-forum-body {
color: #757575;
margin-top: 26px;
font-size: 18px;
margin-bottom: 26px;
}

.logo {
display: flex;
flex-direction: row;
justify-content: center;
}
95 changes: 95 additions & 0 deletions forum.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang="en" ng-app="details">
<head>
<meta charset="utf-8">
<meta name="robots" content="index,follow">
<meta http-equiv="cache-control" content="public">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="Content-Language" content="en, english" />
<link rel="icon" type="image/png" href="http://loklak.org/artwork/favicon.png">
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/forum.css">
<link href="css/animate.css" rel="stylesheet"/>
<script src="/js/jquery.min.js"></script>
<script src="/js/angular.min.js"></script>
<script src="/js/angular-route.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid navbar-container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand brand-container">
<a href="http://apps.loklak.org" class="loklak-brand"> <span class="loklak-header">
loklak </span> <span>apps</span></a>
</div>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="http://loklak.net/about">About</a></li>
<li><a href="http://loklak.net/">Search</a></li>
<li><a href="http://blog.loklak.net/">Blog</a></li>
<li><a href="http://dev.loklak.org/">Developers</a></li>
<li><a href="http://api.loklak.org/">Api</a></li>
</ul>
</div>
</div>
</nav>
<div class="main app">
<div cclas="row">
<div class="col-md-2">
</div>
<div class="col-md-8">
<div class="app-forum">
<div class="logo">
<img src="images/loklak_icon.png" class="img-responsive">
</div>
<h2 class="forum-header">
Welcome to Loklak Apps Discussion Forum.
</h2>
<div class="app-forum-body">
This is a forum where users of loklak apps can comment
on the various apps they have used and interact with co-users
and developers.
</div>
<div class="thread">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT
* DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT:
* https://disqus.com/admin/universalcode/#configuration-variables*/
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://apps-loklak-org.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">
comments powered by Disqus.
</a></noscript>
</div>
</div>
</div>
<div class="col-md-2">
</div>
</div>
</div>
</body>
</html>
Binary file added images/loklak_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f045924

Please sign in to comment.