text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```swift import XCTest @testable import BMPlayer final class BMPlayerTests: XCTestCase { func testExample() { // This is an example of a functional test case. // Use XCTAssert and related functions to verify your tests produce the correct // results. XCTAssertEqual(BMPlayer().text, ...
/content/code_sandbox/Tests/BMPlayerTests/BMPlayerTests.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
87
```swift import XCTest #if !canImport(ObjectiveC) public func allTests() -> [XCTestCaseEntry] { return [ testCase(BMPlayerTests.allTests), ] } #endif ```
/content/code_sandbox/Tests/BMPlayerTests/XCTestManifests.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
42
```swift // // BMPlayerProtocols.swift // Pods // // Created by BrikerMan on 16/4/30. // // import UIKit extension BMPlayerControlView { public enum ButtonType: Int { case play = 101 case pause = 102 case back = 103 case fullscreen = 105 case replay ...
/content/code_sandbox/Source/BMPlayerProtocols.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
172
```swift // // File.swift // Pods // // Created by BrikerMan on 16/5/21. // // import UIKit class BMPlayerClearityChooseButton: UIButton { override init(frame: CGRect) { super.init(frame: frame) initUI() } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder...
/content/code_sandbox/Source/BMPlayerClearityChooseButton.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
176
```swift // // BMTimeSlider.swift // Pods // // Created by BrikerMan on 2017/4/2. // // import UIKit public class BMTimeSlider: UISlider { override open func trackRect(forBounds bounds: CGRect) -> CGRect { let trackHeight: CGFloat = 2 let position = CGPoint(x: 0, y: 14) let customBounds...
/content/code_sandbox/Source/BMTimeSlider.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
218
```swift // // BMPlayerItem.swift // Pods // // Created by BrikerMan on 16/5/21. // // import Foundation import AVFoundation public class BMPlayerResource { public let name: String public let cover: URL? public var subtitle: BMSubtitles? public let definitions: [BMPlayerResourceDefinition] ...
/content/code_sandbox/Source/BMPlayerItem.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
643
```swift // // BMSubtitles.swift // Pods // // Created by BrikerMan on 2017/4/2. // // import Foundation public class BMSubtitles { public var groups: [Group] = [] /// subtitles delay, positive:fast, negative:forward public var delay: TimeInterval = 0 public struct Group: CustomStringConvertib...
/content/code_sandbox/Source/BMSubtitles.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
900
```swift // // BMPlayerLayerView.swift // Pods // // Created by BrikerMan on 16/4/28. // // import UIKit import AVFoundation /** Player status emun - notSetURL: not set url yet - readyToPlay: player ready to play - buffering: player buffering - bufferFinished: buffer finished - playedToTheEnd:...
/content/code_sandbox/Source/BMPlayerLayerView.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
3,139
```objective-c // // BMPlayer.h // BMPlayer // // Created by BrikerMan on 2016/12/2. // #import <UIKit/UIKit.h> //! Project version number for BMPlayer. FOUNDATION_EXPORT double BMPlayerVersionNumber; //! Project version string for BMPlayer. FOUNDATION_EXPORT const unsigned char BMPlayerVersionString[]; // In th...
/content/code_sandbox/Source/BMPlayer.h
objective-c
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
98
```swift // // BMPlayer.swift // Pods // // Created by BrikerMan on 16/4/28. // // import UIKit import SnapKit import MediaPlayer /// BMPlayerDelegate to obserbe player state public protocol BMPlayerDelegate : class { func bmPlayer(player: BMPlayer, playerStateDidChange state: BMPlayerState) func bmPlayer(...
/content/code_sandbox/Source/BMPlayer.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
3,960
```swift // // BMPlayerControlView.swift // Pods // // Created by BrikerMan on 16/4/29. // // import UIKit import NVActivityIndicatorView @objc public protocol BMPlayerControlViewDelegate: class { /** call when control view choose a definition - parameter controlView: control view - param...
/content/code_sandbox/Source/BMPlayerControlView.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
5,755
```swift // // BMPlayerManager.swift // Pods // // Created by BrikerMan on 16/5/21. // // import UIKit import VIMediaCache import AVFoundation import NVActivityIndicatorView public let BMPlayerConf = BMPlayerManager.shared public enum BMPlayerTopBarShowCase: Int { case always = 0 /// case horiza...
/content/code_sandbox/Source/CacheSupport/BMPlayerManager.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
383
```swift // // BMPlayerManager.swift // Pods // // Created by BrikerMan on 16/5/21. // // import UIKit import AVFoundation import NVActivityIndicatorView public let BMPlayerConf = BMPlayerManager.shared public enum BMPlayerTopBarShowCase: Int { case always = 0 /// case horizantalOnly = 1 /// ...
/content/code_sandbox/Source/Default/BMPlayerManager.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
348
```swift struct BMPlayer { var text = "Hello, World!" } ```
/content/code_sandbox/Sources/BMPlayer/BMPlayer.swift
swift
2016-04-28T10:13:42
2024-08-16T13:36:21
BMPlayer
BrikerMan/BMPlayer
1,938
15
```python #!/usr/bin/env python import os import sys import multiprocessing import zoneresolver if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dnslog.settings") from django.core.management import execute_from_command_line if len(sys.argv) >= 2 and sys.argv[1] == 'runserver': ...
/content/code_sandbox/dnslog/manage.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
107
```python # -*- coding: utf-8 -*- import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dnslog.settings") import django django.setup() import copy import re import tempfile from dnslib import RR, QTYPE, RCODE, TXT from dnslib.server import DNSServer, DNSHandler, BaseResolver, DNSLogger from logview.models import ...
/content/code_sandbox/dnslog/zoneresolver.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
971
```python # coding:utf-8 """ Django settings for dnslog project. Generated by 'django-admin startproject' using Django 1.8.7. For more information on this file, see path_to_url For the full list of settings and their values, see path_to_url """ # Build paths inside the project like this: os.path.join(BASE_DIR, ......
/content/code_sandbox/dnslog/dnslog/settings.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
654
```python """ WSGI config for dj_apache project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see path_to_url """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dj_apache.settings") a...
/content/code_sandbox/dnslog/dnslog/wsgi.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
78
```python """dj_apache URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: path_to_url Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Class-based views 1. Add an import: ...
/content/code_sandbox/dnslog/dnslog/urls.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
243
```python from django.contrib import admin # Register your models here. ```
/content/code_sandbox/dnslog/logview/admin.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
13
```python from django.db import models from django.contrib import admin # Create your models here. class User(models.Model): username = models.CharField(max_length=128) password = models.CharField(max_length=128) udomain = models.CharField(max_length=128) def __unicode__(self): return self.user...
/content/code_sandbox/dnslog/logview/models.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
325
```python from django.test import TestCase # Create your tests here. ```
/content/code_sandbox/dnslog/logview/tests.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
13
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0003_auto_20151231_1829'), ] operations = [ migrations.AddField( model_name='user', ...
/content/code_sandbox/dnslog/logview/migrations/0004_user_udomain.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
97
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ] operations = [ migrations.CreateModel( name='DNSLog', fields=[ ('id', models.AutoF...
/content/code_sandbox/dnslog/logview/migrations/0001_initial.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
349
```python # coding=utf-8 from django.shortcuts import render, render_to_response from django.http import HttpResponse, HttpResponseRedirect from django.template import RequestContext from django.core.paginator import ( Paginator, InvalidPage, EmptyPage, PageNotAnInteger) from django import forms from models import...
/content/code_sandbox/dnslog/logview/views.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
1,177
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0006_auto_20151231_1909'), ] operations = [ migrations.RenameField( model_name='dnslog', ...
/content/code_sandbox/dnslog/logview/migrations/0007_auto_20160312_0151.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
146
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0001_initial'), ] operations = [ migrations.AlterModelOptions( name='dnslog', o...
/content/code_sandbox/dnslog/logview/migrations/0002_auto_20151231_1826.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
138
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0004_user_udomain'), ] operations = [ migrations.AlterField( model_name='dnslog', ...
/content/code_sandbox/dnslog/logview/migrations/0005_auto_20151231_1851.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
130
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0005_auto_20151231_1851'), ] operations = [ migrations.RemoveField( model_name='dnslog', ...
/content/code_sandbox/dnslog/logview/migrations/0006_auto_20151231_1909.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
119
```python # -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('logview', '0002_auto_20151231_1826'), ] operations = [ migrations.AlterField( model_name='dnslog', ...
/content/code_sandbox/dnslog/logview/migrations/0003_auto_20151231_1829.py
python
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
91
```css .bs { position: relative; padding: 45px 15px 15px; margin: 0 -15px 15px; border-color: #e5e5e5 #eee #eee; border-style: solid; border-width: 1px 0; -webkit-box-shadow: inset 0 3px 6px rgba(0,0,0,.05); box-shadow: inset 0 3px 6px rgba(0,0,0,.05) } @media (min-width: 768px...
/content/code_sandbox/dnslog/static/main.css
css
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
209
```html {{ apistatus }} ```
/content/code_sandbox/dnslog/templates/api.html
html
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
6
```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> <link href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="styles...
/content/code_sandbox/dnslog/templates/login.html
html
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
346
```shell #!/usr/bin/env sh # dnslog Domain api ######## Public functions ##################### #Usage: add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" dns_log_add() { fulldomain=$1 txtvalue=$2 echo "$txtvalue" >> "/tmp/$fulldomain." } #fulldomain txtvalue dns_log_rm() { ...
/content/code_sandbox/acme.sh/dns_log.sh
shell
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
141
```html <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> <link href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="styles...
/content/code_sandbox/dnslog/templates/views.html
html
2016-05-06T12:27:07
2024-08-14T02:02:09
DNSLog
BugScanTeam/DNSLog
1,407
1,196
```css :root { ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,...
/content/code_sandbox/index.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
212
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Search - Free Bulma template</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-...
/content/code_sandbox/templates/search.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
3,172
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Free Bulma templates</title> <link rel="shortcut icon" href="path_to_url" type="image/x-icon" /> <meta nam...
/content/code_sandbox/index.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
9,515
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Neumorphic Login - Free Bulma template</title> <link href="path_to_url" rel="stylesheet"> <!-- Bulma V...
/content/code_sandbox/templates/neumorphic-login.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
5,335
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Contact Form - Free Bulma template</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-...
/content/code_sandbox/templates/contact.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
978
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>bulma|vue kanban</title> <link rel='stylesheet prefetch' href='path_to_url <link rel='stylesheet prefetch' href='path_to_url <link rel="stylesheet" href="../css/kanban.css"> </head> <body> <div id="app"> <nav class="navbar...
/content/code_sandbox/templates/kanban-switch.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
923
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Personal - Free Bulma template</title> <!-- <link rel="stylesheet" href="path_to_url"> --> <link rel="st...
/content/code_sandbox/templates/personal.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
6,467
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Blog - Free Bulma template</title> <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon.p...
/content/code_sandbox/templates/blog.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,124
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Forum - Free Bulma template</title> <link rel="shortcut icon" href="../images/favicon.png" type="image/x-icon"> <lin...
/content/code_sandbox/templates/forum.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,348
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Blog - Tailsaw </title> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /> <li...
/content/code_sandbox/templates/blog-tailsaw.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,133
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Aside - Free Bulma template</title> <link rel="stylesheet" href="path_to_url"> <!-- Bulma Version 1--> ...
/content/code_sandbox/templates/aside.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,134
```html <!DOCTYPE html> <html> <head> <title>Redirecting...</title> <meta http-equiv="refresh" content="0;URL='../'" /> </head> <body> <p>This page has <a href="../"> moved</a>.</p> </body> </html> ```
/content/code_sandbox/templates/index.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
65
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Bulma - Tabs</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-icon"> <!-- Bulma Version 0.9.x --> <link rel='stylesheet prefetch' href='path_to_url <link rel="st...
/content/code_sandbox/templates/tabs.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
3,488
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Landing - Free Bulma template</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-...
/content/code_sandbox/templates/landing.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
774
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>BlogPost - Tailsaw </title> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /> <...
/content/code_sandbox/templates/blogpost-tailsaw.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,091
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="path_to_url"> <link href="path_to_url" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+Q...
/content/code_sandbox/templates/absurd.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,654
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Documentation - Documentation Bulma Theme</title> <!-- Bulma Version 1--> <link rel="stylesheet"...
/content/code_sandbox/templates/documentation.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,410
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Skeleton - Free Bulma template</title> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url...
/content/code_sandbox/templates/skeleton.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
165
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Inbox - Free Bulma template</title> <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon....
/content/code_sandbox/templates/inbox.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,107
```html <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Cheatsheet Concept</title> <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon.png"> <link rel="stylesheet" href="path_to_url"> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /...
/content/code_sandbox/templates/cheatsheet.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,529
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Band Template</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-icon...
/content/code_sandbox/templates/band.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,849
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Cover - Free Bulma template</title> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-ic...
/content/code_sandbox/templates/cover.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
709
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Showcase - Personal Portfolio One Page Bulma Theme</title> <!-- Bulma Version 1--> <lin...
/content/code_sandbox/templates/showcase.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
3,977
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Hero - Free Bulma template</title> <link rel="shortcut icon" href="../images/fav_icon...
/content/code_sandbox/templates/hero.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
3,434
```html <!DOCTYPE html> <html lang="en"> <head> <title>App Page</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <!-- Bulma Version 1--> <link rel="stylesheet" href...
/content/code_sandbox/templates/app-page.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
6,680
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Parallax - Free Bulma template</title> <link href="path_to_url" rel="stylesheet"> <script src="path_to...
/content/code_sandbox/templates/hello-parallax.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,241
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Login - Free Bulma template</title> <link rel="stylesheet" href="path_to_url"> <!-- <link href="path_to_...
/content/code_sandbox/templates/login.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
521
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Cards List - Bulma Templates</title> <!-- Bulma Version 1--> <link rel="stylesheet" href="...
/content/code_sandbox/templates/cards.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,059
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Ghost Style Blog - Free Bulma template</title> <script src="path_to_url" crossorigin="anonymous"></script>...
/content/code_sandbox/templates/ghost-blog.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,543
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Register - Free Bulma template</title> <link href="path_to_url" rel="stylesheet"> <script src="path_to...
/content/code_sandbox/templates/register.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,140
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login</title> </head> ...
/content/code_sandbox/templates/loginPage.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
395
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>bulma cards</title> <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon.png"> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /> <link rel="stylesheet" ...
/content/code_sandbox/templates/kanban.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,759
```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Photo Album - Free Bulma template</title> <link href="path_to_url" rel="stylesheet"> <link hre...
/content/code_sandbox/templates/instaAlbum.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,069
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-icon"> <title>Modal Cards - Free Bulma templ...
/content/code_sandbox/templates/modal-cards.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
4,154
```html <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>bulma|vue kanban</title> <!-- Bulma Version 1--> <link rel="stylesheet" href="path_to_url" /> <link rel="stylesheet" href="../css/kanban.css"> </head> <body> <div id="app"> <nav class="navbar has-shadow">...
/content/code_sandbox/templates/kanban[search].html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
828
```css code[class*='language-'], pre[class*='language-'] { color: rgb(215, 236, 255); background: none; font-family: 'Operator Mono', 'Roboto Mono', Menlo, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; word-wr...
/content/code_sandbox/css/prism.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
721
```css .social-media { margin-top: 30px; } .social-media a { margin-right: 10px; } .field:not(:last-child) { margin-bottom: 20px; } @media screen and (min-width: 768px) { body { padding-top: calc(3.25rem + 20px); } .navbar { padding: 10px 0; position: fixed; top: 0; width: 100%; } ...
/content/code_sandbox/css/contact.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
135
```css .has-same-height .card { height: 320px; overflow: hidden; } .card-content h3 { text-align: center; } .table-profile td, th { border: none !important; } .table-profile td:first-of-type { font-weight: bold; } .skills-content .media { margin: 0 !important; padding: 4px !important; border: 0 !imp...
/content/code_sandbox/css/personal.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
165
```css :root{ ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, ...
/content/code_sandbox/css/index.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
220
```css .va { display: flex; align-items: center; } ```
/content/code_sandbox/css/register.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
15
```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Admin - Free Bulma template</title> <link rel="stylesheet" href="path_to_url"> <link href="path_to_url" ...
/content/code_sandbox/templates/admin.html
html
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,356
```css :root{ ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } html, body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, ...
/content/code_sandbox/css/admin.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
607
```css .columns { margin-top: 0; } /* Start nav drawer */ aside.column { padding: 0; box-shadow: 2px 0px 4px #888888; } .panel-heading, .panel-block { border: 0; border-radius: 0; } .panel-block { justify-content: center; } /*End nav drawer */ section.column { padding: 2rem; } ```
/content/code_sandbox/css/aside.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
91
```css :root { ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } html,body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, ...
/content/code_sandbox/css/forum.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
455
```css html,body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 14px; line-height: 1.5; height: 100%; background-color: #fff; } .nav.is-dark { background-color: #232B2D; color: #F6F7F7; } .nav.is-dark .nav-item...
/content/code_sandbox/css/inbox.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,371
```css :root { ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } html,body { background: #EFF3F4; font-family: -apple-system, BlinkMacSystemF...
/content/code_sandbox/css/hero.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
584
```css #sectioncontainer { margin-top: 20px; } /* Keep from sticking to sides */ .cards-container { max-width: 95%; } .board-item { margin: 5px 0; will-change: transform; } .board-item-content { word-break: break-all; position: relative; padding: 20px; background: #fff; border-radius: 4px; font-s...
/content/code_sandbox/css/kanban.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
191
```css /* Global styles */ :root { --primary: #6cvbbb5ce7; ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } * { font-family: "Lato", sans-ser...
/content/code_sandbox/css/documentation.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
593
```css :root { --bg: #071e36; --card-bg: #041221; } body { background: var(--bg); } .box { background: var(--card-bg); } input::placeholder { color: antiquewhite; } .navbar { background: var(--card-bg); } .navbar-item { color: ghostwhite; } /* Card start*/ .card { overflow: hidden; background:...
/content/code_sandbox/css/cards.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
184
```css html,body { font-family: 'Questrial', sans-serif; font-size: 14px; font-weight: 300; } .hero.is-success { background: #F2F6FA; } .hero .nav, .hero.is-success .nav { -webkit-box-shadow: none; box-shadow: none; } .box { margin-top: 5rem; } .avatar { margin-top: -70px; padding-bottom: 20px; } .ava...
/content/code_sandbox/css/login.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
290
```css :root { ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } .va { display: flex; align-items: center; } .hero, .cta { background: url(d...
/content/code_sandbox/css/hello-parallax.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
922
```css @import url('path_to_url .va { display: flex; align-items: center; } html { font-family: 'Nunito Sans', sans-serif; color: white; } a { color: #3b7adf; } a:hover { text-decoration: underline; color: #3b7adf; } hr { background: #24272c; } .hero { background: #060606; } .title, .subtitle {...
/content/code_sandbox/css/ghost-blog.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
438
```css .navbar { position: fixed; left: 0; top: 0; z-index: 2; background-color: white; justify-content: space-around; width: 100%; border-bottom: 1px solid lightgray; } .navbar-menu { flex-grow: 0.5; justify-content: center; } .navbar-menu .navbar-item { flex-grow: 1; ju...
/content/code_sandbox/css/instaAlbum.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
279
```css html,body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } .hero.is-info { background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('path_to_url no-repeat center center fixed; -webkit-back...
/content/code_sandbox/css/landing.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
177
```css :root{ ::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4} } .tabs { margin-bottom: -1px !important; position: relative; } .tab-content { paddin...
/content/code_sandbox/css/tabs.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
274
```css @import url("path_to_url|Poppins|Kaushan+Script"); .has-vertically-aligned-content { display: flex; flex-direction: column; justify-content: center; } * { box-sizing: border-box; } html { font-family: 'Poppins', Lato, Tahoma, sans-serif; width: 100%; min-height: 100%; } .header-wrapper { paddi...
/content/code_sandbox/css/showcase.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,122
```css * { font-family: 'Nunito Sans', sans-serif; } :root { --shadowDark: #D9DDE6; --background: #E4E9F2; --shadowLight: #EFF5FE; } body { background: var(--background); } .hero-body { justify-content: center; } .login { border-radius: 25px; padding: 1.5rem; box-shadow: 8px 8px 15px var(--shadowD...
/content/code_sandbox/css/neumorphic-login.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
151
```css @-webkit-keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spinAround{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.is-divider,.is-divider-vertica...
/content/code_sandbox/css/bulma-divider.min.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,880
```css html,body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 14px; background: #F0F2F4; } .navbar.is-white { background: #F0F2F4; } .navbar-brand .brand-text { font-size: 1.11rem; font-weight: bold; } .hero-bo...
/content/code_sandbox/css/blog.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
461
```css body, html { background: #f2f2f2; } pre, .message { max-width: 960px; } li {margin: 10px} .hero.is-primary { background: linear-gradient(to top right, #524ad0 10%, #D099FA); } .box { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2); } .box span.icon { float: right; font-size: 1.7em; padding: 2rem 2rem...
/content/code_sandbox/css/cheatsheet.css
css
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
334
```javascript /** * Dropdown menu */ document.addEventListener('DOMContentLoaded', function() { const menus = document.querySelectorAll('.navbar-burger'); const dropdowns = document.querySelectorAll('.navbar-menu'); if (menus.length && dropdowns.length) { for (var i = 0; i < menus.length; i++) { ...
/content/code_sandbox/js/app-page.js
javascript
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
114
```javascript // Get that hamburger menu cookin' // document.addEventListener("DOMContentLoaded", function() { // Get all "navbar-burger" elements var $navbarBurgers = Array.prototype.slice.call( document.querySelectorAll(".navbar-burger"), 0 ); // Check if there are any navbar burgers if ($navbarBur...
/content/code_sandbox/js/showcase.js
javascript
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
396
```javascript var requestframe = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.msRequestAnimationFrame || window.oRequestAnimationFrame || // IE Fallback, you can even fallback to onscroll function (callback) { window.setTimeout(callback, 10...
/content/code_sandbox/js/wild.js
javascript
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
2,067
```javascript const app = new Vue({ el: '#app', data: { search: "", isSwitched: false, isSwitchedCustom: "Pleasant feelings", title: "PLEASANT FEELINGS", aos: "UNPLEASANT FEELINGS", cards: [ { name: "OPEN", cardColor: "dark", items: [ "understanding...
/content/code_sandbox/js/kanban-switch.js
javascript
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
1,983
```javascript let cardsData = [{ id: 1, image: 'path_to_url avatar: 'path_to_url user: { name: 'Okinami', handle: 'twitterid', title: 'Lead Developer' }, content: 'The Beast stumbled in the dark for it could no longer see the path. It started to fracture and weaken, trying to reshape itself into...
/content/code_sandbox/js/cardsData.js
javascript
2016-07-30T20:50:30
2024-08-14T11:31:01
bulma-templates
BulmaTemplates/bulma-templates
3,257
762