remove underline from the urls.
This commit is contained in:
parent
b4188c485a
commit
e70fcc0040
@ -295,7 +295,7 @@ text-align: center;
|
|||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
max-width: 700px;
|
max-width: 800px;
|
||||||
min-height: 500px;
|
min-height: 500px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
@ -308,7 +308,11 @@ text-align: center;
|
|||||||
background-color: #86D4B1;
|
background-color: #86D4B1;
|
||||||
text-transform:capitalize;
|
text-transform:capitalize;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 4px;
|
#border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.b_listing_title > a {
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.b_list_owner {
|
.b_list_owner {
|
||||||
@ -317,7 +321,7 @@ text-align: center;
|
|||||||
padding: 0em;
|
padding: 0em;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
background-color: #DDA0DD;
|
background-color: #DDA0DD;
|
||||||
border-radius: 4px;
|
#border-radius: 4px;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,6 +22,13 @@
|
|||||||
{{blog.title}} Dashboard — {{ super() }}
|
{{blog.title}} Dashboard — {{ super() }}
|
||||||
{%- endblock title %}
|
{%- endblock title %}
|
||||||
|
|
||||||
|
{% block mediagoblin_head%}
|
||||||
|
<style type = "text/css">
|
||||||
|
td > a { text-decoration:none; font-weight: bold; }
|
||||||
|
</style>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
{% block mediagoblin_content %}
|
{% block mediagoblin_content %}
|
||||||
<h1> {{blog.title}}</h1>
|
<h1> {{blog.title}}</h1>
|
||||||
<p>
|
<p>
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
{% block mediagoblin_content %}
|
{% block mediagoblin_content %}
|
||||||
<form action="" method="POST">
|
<form action="" method="POST">
|
||||||
<div class="blog_form_box_xl">
|
<div class="blog_form_box_xl">
|
||||||
<h1>{% trans %}Create a Blog Post.{% endtrans %}</h1>
|
<h1>{% trans %}Create/Edit a Blog Post.{% endtrans %}</h1>
|
||||||
<b>Title</b>
|
<b>Title</b>
|
||||||
<div class="blog_form_field_input input">
|
<div class="blog_form_field_input input">
|
||||||
<h3>{{ form.title}}</h3>
|
<h3>{{ form.title}}</h3>
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
<div>
|
<div>
|
||||||
{% for post in blog_posts[0:9] %}
|
{% for post in blog_posts[0:9] %}
|
||||||
<div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2><font color="black">{{ post.title }}</font></h2></a></div>
|
<div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2><font color="black">{{ post.title }}</font></h2></a></div>
|
||||||
<div class="b_list_des"> <p>{{ post.description|safe }} </font></p></div>
|
<div class="b_list_des"> <p>{{ post.description|safe }} </p></div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
'mediagoblin.user_pages.user_home',
|
'mediagoblin.user_pages.user_home',
|
||||||
user=media.get_uploader.username),
|
user=media.get_uploader.username),
|
||||||
username=media.get_uploader.username -%}
|
username=media.get_uploader.username -%}
|
||||||
❖ Browsing media by <a href="{{user_url}}">{{username}}</a>
|
❖ Blog post by <a href="{{user_url}}">{{username}}</a>
|
||||||
{%- endtrans -%}
|
{%- endtrans -%}
|
||||||
</p>
|
</p>
|
||||||
{% include "mediagoblin/utils/prev_next.html" %}
|
{% include "mediagoblin/utils/prev_next.html" %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user