Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
noblogs-home
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Noblogs
noblogs-home
Commits
90b3b844
Commit
90b3b844
authored
Jan 28, 2012
by
root
Committed by
agata
Jul 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buddypress noblogs child theme fix
parent
64122281
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
136 additions
and
3 deletions
+136
-3
header.php
header.php
+79
-0
images/noblogs-bp1.png
images/noblogs-bp1.png
+0
-0
images/sidebar_back.gif
images/sidebar_back.gif
+0
-0
style.css
style.css
+57
-3
No files found.
header.php
0 → 100644
View file @
90b3b844
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
<?php
language_attributes
();
?>
>
<head
profile=
"http://gmpg.org/xfn/11"
>
<meta
http-equiv=
"Content-Type"
content=
"
<?php
bloginfo
(
'html_type'
)
?>
; charset=
<?php
bloginfo
(
'charset'
)
?>
"
/>
<title>
<?php
wp_title
(
'|'
,
true
,
'right'
);
bloginfo
(
'name'
);
?>
</title>
<?php
do_action
(
'bp_head'
)
?>
<link
rel=
"pingback"
href=
"
<?php
bloginfo
(
'pingback_url'
)
?>
"
/>
<?php
if
(
is_singular
()
&&
bp_is_blog_page
()
&&
get_option
(
'thread_comments'
)
)
wp_enqueue_script
(
'comment-reply'
);
wp_head
();
?>
</head>
<body
<?php
body_class
()
?>
id=
"bp-default"
>
<?php
do_action
(
'bp_before_header'
)
?>
<div
id=
"header"
>
<h1
id=
"logo"
><a
href=
"
<?php
echo
site_url
()
?>
"
title=
"
<?php
_e
(
'Home'
,
'buddypress'
)
?>
"
>
Information disorder was not enough
</a></h1>
<ul
id=
"nav"
>
<li
<?php
if
(
bp_is_front_page
()
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
"
title=
"
<?php
_e
(
'Home'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'Home'
,
'buddypress'
)
?>
</a>
</li>
<?php
if
(
'activity'
!=
bp_dtheme_page_on_front
()
&&
bp_is_active
(
'activity'
)
)
:
?>
<li
<?php
if
(
bp_is_page
(
BP_ACTIVITY_SLUG
)
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
/
<?php
echo
BP_ACTIVITY_SLUG
?>
/"
title=
"
<?php
_e
(
'Activity'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'Activity'
,
'buddypress'
)
?>
</a>
</li>
<?php
endif
;
?>
<li
<?php
if
(
bp_is_page
(
BP_MEMBERS_SLUG
)
||
bp_is_member
()
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
/
<?php
echo
BP_MEMBERS_SLUG
?>
/"
title=
"
<?php
_e
(
'Members'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'People'
,
'buddypress'
)
?>
</a>
</li>
<?php
if
(
bp_is_active
(
'groups'
)
)
:
?>
<li
<?php
if
(
bp_is_page
(
BP_GROUPS_SLUG
)
||
bp_is_group
()
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
/
<?php
echo
BP_GROUPS_SLUG
?>
/"
title=
"
<?php
_e
(
'Groups'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'Groups'
,
'buddypress'
)
?>
</a>
</li>
<?php
if
(
bp_is_active
(
'forums'
)
&&
(
function_exists
(
'bp_forums_is_installed_correctly'
)
&&
!
(
int
)
bp_get_option
(
'bp-disable-forum-directory'
)
)
&&
bp_forums_is_installed_correctly
()
)
:
?>
<li
<?php
if
(
bp_is_page
(
BP_FORUMS_SLUG
)
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
/
<?php
echo
BP_FORUMS_SLUG
?>
/"
title=
"
<?php
_e
(
'Forums'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'Forums'
,
'buddypress'
)
?>
</a>
</li>
<?php
endif
;
?>
<?php
endif
;
?>
<?php
if
(
bp_is_active
(
'blogs'
)
&&
bp_core_is_multisite
()
)
:
?>
<li
<?php
if
(
bp_is_page
(
BP_BLOGS_SLUG
)
)
:
?>
class=
"selected"
<?php
endif
;
?>
>
<a
href=
"
<?php
echo
site_url
()
?>
/
<?php
echo
BP_BLOGS_SLUG
?>
/"
title=
"
<?php
_e
(
'Blogs'
,
'buddypress'
)
?>
"
>
<?php
_e
(
'Blogs'
,
'buddypress'
)
?>
</a>
</li>
<?php
endif
;
?>
<!--
<?php
wp_list_pages
(
'title_li=&depth=1&exclude='
.
bp_dtheme_page_on_front
()
);
?>
-->
<?php
do_action
(
'bp_nav_items'
);
?>
</ul>
<!-- #nav -->
<div
id=
"search-bar"
>
<div
class=
"padder"
>
<?php
echo
"<p align='right' style='color:black;'><i>“The environment is so full of television, party political broadcasts and<br /> advertising campaigns that you hardly need to do anything.”</i> (JG Ballard)</p>"
;
?>
</div>
<!-- .padder -->
</div>
<!-- #search-bar -->
<?php
do_action
(
'bp_header'
)
?>
</div>
<!-- #header -->
<?php
do_action
(
'bp_after_header'
)
?>
<?php
do_action
(
'bp_before_container'
)
?>
<div
id=
"container"
>
images/noblogs-bp1.png
0 → 100644
View file @
90b3b844
4.84 KB
images/sidebar_back.gif
0 → 100644
View file @
90b3b844
160 Bytes
style.css
View file @
90b3b844
...
...
@@ -10,12 +10,24 @@ Tags: buddypress, two-column, grey, dark
*/
/* Inherit the default theme styles
*/
/* Inherit the default theme styles
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
/* Inherit the default theme adminbar styles */
@import
url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css )
;
Inherit the default theme adminbar styles
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
*/
h1
{
font-size
:
28px
;
margin-bottom
:
25px
;
}
h2
{
font-size
:
24px
;
margin-bottom
:
20px
;
}
h3
{
font-size
:
20px
;
}
h4
{
font-size
:
16px
;
margin-bottom
:
15px
;
}
h5
{
font-size
:
14px
;
margin-bottom
:
0
;
}
h6
{
font-size
:
12px
;
margin-bottom
:
0
;
}
a
{
color
:
#000
;
text-decoration
:
none
;
}
a
:hover
{
color
:
#ff0000
;
}
a
:active
{
color
:
#888
;
}
a
:focus
{
outline
:
1px
dotted
#ccc
;
}
#noblogs_about
{
height
:
200px
;
background
:
url(/wp-content/themes/noblogs-home/images/animation.gif)
no-repeat
;
...
...
@@ -40,3 +52,45 @@ Tags: buddypress, two-column, grey, dark
color
:
#666
;
vertical-align
:
bottom
;
}
#header
{
background-image
:
url(images/noblogs-bp1.png)
;
}
#header
h1
a
,
#desc
{
color
:
#FFFFFF
;
}
div
#container
{
position
:
relative
;
width
:
100%
;
-moz-border-radius
:
6px
;
-webkit-border-radius
:
6px
;
border-right
:
1px
solid
#e0e0e0
;
border-bottom
:
1px
solid
#e0e0e0
;
background
:
#fff
;
overflow
:
hidden
;
}
body
.activity-permalink
div
#container
{
background
:
none
;
border
:
none
;
}
div
#content
.padder
{
margin-right
:
225px
;
border-right
:
1px
solid
#ddd
;
-moz-border-radius-topleft
:
6px
;
-webkit-border-top-left-radius
:
6px
;
-moz-border-radius-bottomleft
:
6px
;
-webkit-border-bottom-left-radius
:
6px
;
}
div
#sidebar
{
float
:
left
;
width
:
224px
;
margin-left
:
-226px
;
margin-top
:
1px
;
border-left
:
1px
solid
#ddd
;
-moz-border-radius-topright
:
3px
;
-webkit-border-top-right-radius
:
3px
;
background
:
url( images/sidebar_back.gif )
top
left
repeat-x
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment