This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { decode } from "blurhash" | |
| export function blurHashToDataURL(hash: string | undefined): string | undefined { | |
| if (!hash) return undefined | |
| const pixels = decode(hash, 32, 32) | |
| const dataURL = parsePixels(pixels, 32, 32) | |
| return dataURL | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"version":1,"resource":"file:///Users/kog/Documents/projects/teneo/web/app/themes/teneo/static/src/sass/components/_pagination.scss","entries":[{"id":"O66U.scss","timestamp":1653553389077},{"id":"vDxd.scss","timestamp":1653553406852},{"id":"Notb.scss","timestamp":1653585111129}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| date | name | category | value | |
|---|---|---|---|---|
| 1960-01-01 | Australia | 18578000 | ||
| 1960-01-01 | Brazil | 15166000 | ||
| 1960-01-01 | China | 9 | 59716000 | |
| 1960-01-01 | France | 62651000 | ||
| 1960-01-01 | India | 37030000 | ||
| 1960-01-01 | Italy | 40385000 | ||
| 1960-01-01 | Japan | 44307000 | ||
| 1960-01-01 | Korea Rep. | 3957000 | ||
| 1960-01-01 | Mexico | 13040000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Grid */ | |
| $totalColumns: 12; | |
| $col: calc(100 / $totalColumns)%; | |
| $space: 2rem; | |
| .container { | |
| max-width: $maxWidth; | |
| margin: 0 auto; | |
| position: relative; | |
| display: flex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function get_primary_category() { | |
| $category = get_the_category(); | |
| $useCatLink = true; | |
| /* if( in_array( 'wordpress-seo/wp-seo.php', apply_filters( 'active_plugins', get_option('active_plugins') ) ) ) */ | |
| if ($category) { | |
| $category_display = ''; | |
| $category_link = ''; | |
| if ( class_exists('WPSEO_Primary_Term') ) { | |
| $wpseo_primary_term = new WPSEO_Primary_Term( 'category', get_the_id() ); |