Merge pull request #620 from tiwariav/bugfix/blog_top_menu
bugfix/ cms blog top menu
This commit is contained in:
		
				commit
				
					
						3d0505330c
					
				
			
		
					 5 changed files with 40 additions and 38 deletions
				
			
		|  | @ -120,6 +120,11 @@ | |||
|     .header_slider .intro-cap { | ||||
|         font-size: 3.25em; | ||||
|     } | ||||
| 
 | ||||
|     .header_slider > .carousel .item .container { | ||||
|         padding-left: 0; | ||||
|         padding-right: 0; | ||||
|     } | ||||
| } | ||||
| 
 | ||||
| .header_slider .intro_lead { | ||||
|  |  | |||
|  | @ -70,7 +70,7 @@ hr.small { | |||
|   } | ||||
|   .navbar-custom .navbar-brand { | ||||
|     color: white; | ||||
|     padding: 20px; | ||||
|     padding: 5px 20px; | ||||
|   } | ||||
|   .navbar-custom .navbar-brand:hover, | ||||
|   .navbar-custom .navbar-brand:focus { | ||||
|  |  | |||
|  | @ -516,7 +516,7 @@ META_INCLUDE_KEYWORDS = ["ungleich", "hosting", "switzerland", | |||
|                          "Schweiz", "Swiss", "cdist"] | ||||
| META_USE_SITES = True | ||||
| 
 | ||||
| PARLER_LANGUAGES = {1: ({'code': 'en-us'}, {'code': 'de'},)} | ||||
| PARLER_LANGUAGES = {SITE_ID: ({'code': 'en-us'}, {'code': 'de'},)} | ||||
| AUTH_USER_MODEL = 'membership.CustomUser' | ||||
| 
 | ||||
| # PAYMENT | ||||
|  |  | |||
|  | @ -18,8 +18,8 @@ import debug_toolbar | |||
| 
 | ||||
| urlpatterns = [ | ||||
|     url(r'^index.html$', LandingView.as_view()), | ||||
|     url(r'^open_api/', include('opennebula_api.urls', | ||||
|                                namespace='opennebula_api')), | ||||
|     url(r'^open_api/', | ||||
|         include('opennebula_api.urls', namespace='opennebula_api')), | ||||
|     url(r'^railshosting/', RailsHostingView.as_view(), | ||||
|         name="rails.hosting"), | ||||
|     url(r'^nodehosting/', NodeJSHostingView.as_view(), | ||||
|  | @ -28,8 +28,7 @@ urlpatterns = [ | |||
|         name="django.hosting"), | ||||
|     url(r'^nosystemd/', include('nosystemd.urls', namespace="nosystemd")), | ||||
|     url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), | ||||
|     url(r'^jsi18n/(?P<packages>\S+?)/$', | ||||
|         i18n.javascript_catalog), | ||||
|     url(r'^jsi18n/(?P<packages>\S+?)/$', i18n.javascript_catalog), | ||||
| ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) | ||||
| 
 | ||||
| urlpatterns += i18n_patterns( | ||||
|  | @ -45,29 +44,22 @@ urlpatterns += i18n_patterns( | |||
|     url(r'^admin/', include(admin.site.urls)), | ||||
|     url(r'^datacenterlight/', | ||||
|         include('datacenterlight.urls', namespace="datacenterlight")), | ||||
|     url(r'^hosting/', RedirectView.as_view( | ||||
|         url=reverse_lazy('hosting:login')), name='redirect_hosting_login'), | ||||
|     url(r'^hosting/', RedirectView.as_view(url=reverse_lazy('hosting:login')), | ||||
|         name='redirect_hosting_login'), | ||||
|     url(r'^alplora/', include('alplora.urls', namespace="alplora")), | ||||
|     url(r'^membership/', include(membership_urls)), | ||||
|     url(r'^digitalglarus/', include('digitalglarus.urls', | ||||
|                                     namespace="digitalglarus")), | ||||
|     url(r'^cms/blog/', | ||||
|         include('ungleich.urls', namespace='ungleich')), | ||||
|     url( | ||||
|         r'^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$', | ||||
|     url(r'^digitalglarus/', | ||||
|         include('digitalglarus.urls', namespace="digitalglarus")), | ||||
|     url(r'^cms/blog/', include('ungleich.urls', namespace='ungleich')), | ||||
|     url(r'^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$', | ||||
|         RedirectView.as_view(pattern_name='ungleich:post-detail')), | ||||
|     url(r'^blog/$', RedirectView.as_view( | ||||
|                 url=reverse_lazy('ungleich:post-list') | ||||
|             ), name='blog_list_view' | ||||
|         ), | ||||
|     url(r'^blog/$', | ||||
|         RedirectView.as_view(url=reverse_lazy('ungleich:post-list')), name='blog_list_view'), | ||||
|     url(r'^cms/', include('cms.urls')), | ||||
|     url(r'^blog/', include('djangocms_blog.urls', namespace='djangocms_blog')), | ||||
|     url(r'^$', RedirectView.as_view(url='/cms') if REDIRECT_TO_CMS | ||||
|         else LandingView.as_view()), | ||||
|     url(r'^', | ||||
|         include('ungleich_page.urls', | ||||
|                 namespace='ungleich_page'), | ||||
|         name='ungleich_page'), | ||||
|     url(r'^blog/', include('djangocms_blog.urls', namespace='djangocms_blog')), | ||||
|     url(r'^', include('ungleich_page.urls', namespace='ungleich_page')), | ||||
| ) | ||||
| 
 | ||||
| urlpatterns += [ | ||||
|  |  | |||
|  | @ -18,6 +18,10 @@ | |||
|     <!-- Collect the nav links, forms, and other content for toggling --> | ||||
|     <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||||
|       <ul class="nav navbar-nav navbar-right"> | ||||
|         <li> | ||||
|           <a href="{% url 'djangocms_blog:posts-latest' %}">Ungleich Blog</a> | ||||
|         </li> | ||||
|         {% comment %} | ||||
|         	{% for child in children %} | ||||
|           	<li class="child{% if child.selected %} selected{% endif %}{% if child.ancestor %} ancestor{% endif %}{% if child.sibling %} sibling{% endif %}{% if child.descendant %} descendant{% endif %}"> | ||||
|           	  <a href="{{ child.attr.redirect_url|default:child.get_absolute_url }}">{{ child.get_menu_title }}</a> | ||||
|  | @ -28,6 +32,7 @@ | |||
|           	  {% endif %} | ||||
|           	</li> | ||||
|         	{% endfor %} | ||||
|         {% endcomment %} | ||||
|       </ul> | ||||
|     </div> | ||||
|     <!-- /.navbar-collapse --> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue