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
| @php | |
| $url = "https://www.instagram.com/p/$instagramId"; | |
| @endphp | |
| <blockquote | |
| class="instagram-media" | |
| data-instgrm-captioned | |
| data-instgrm-permalink="{{ $url }}" | |
| data-instgrm-version="14" | |
| style=" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);"> |
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
| --- | |
| # Name of the generated YAML file. | |
| filename: docker-compose.yml | |
| # The OpenSlides proxy service listens on this address. | |
| host: 0.0.0.0 | |
| port: 443 | |
| # General global options | |
| disablePostgres: false |
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
| <mgl-map | |
| [style]="'mapbox://styles/lambdadigamma/clc8wtclu000d14p603d2697a'" | |
| [zoom]="[0.5]" | |
| > | |
| <mgl-marker [lngLat]="[-77.036873, 38.907192]"> | |
| <div class="w-4 h-4 bg-black rounded-full border-white border-2"></div> | |
| </mgl-marker> | |
| <mgl-marker [lngLat]="[-122.419418, 37.774929]"> | |
| <div class="w-4 h-4 bg-black rounded-full border-white border-2"></div> | |
| </mgl-marker> |
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
| public enum TransportType: Int, Codable, CaseIterable { | |
| /** | |
| This is the german 'Zug'. | |
| */ | |
| case train = 0 | |
| /** | |
| This is the german 'S-Bahn'. | |
| */ |