mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			610 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			610 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//- 💫 INCLUDES > TOP NAVIGATION
 | 
						|
 | 
						|
include _mixins
 | 
						|
 | 
						|
nav.c-nav.u-text.js-nav(class=landing ? "c-nav--theme" : null)
 | 
						|
    a(href='/') #[+logo]
 | 
						|
 | 
						|
    if SUBSECTION != "index"
 | 
						|
        .u-text-label.u-padding-small.u-hidden-xs=SUBSECTION
 | 
						|
 | 
						|
    ul.c-nav__menu
 | 
						|
        if ALPHA
 | 
						|
            - var NAVIGATION = { "Usage": "/docs/usage", "Reference": "/docs/api" }
 | 
						|
 | 
						|
        each url, item in NAVIGATION
 | 
						|
            li.c-nav__menu__item(class=(url == "/") ? "u-hidden-xs" : null)
 | 
						|
                +a(url)=item
 | 
						|
 | 
						|
        li.c-nav__menu__item
 | 
						|
            +a(gh("spaCy"))(aria-label="GitHub").u-hidden-xs #[+icon("github", 20)]
 |