Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/2-REC/hugo-myportfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Severin <severinderek@gmail.com>2019-01-02 22:41:06 +0300
committerDerek Severin <severinderek@gmail.com>2019-01-02 22:41:06 +0300
commit04a604dbbdf332cd01d9cc17ed11ec56d4d7a5bf (patch)
treed1a22adb99109440b631ad57c40356a017af3d53
parentc0fba36856082064aa8d594c39a1060df0a61392 (diff)
Added TODO directory and files
-rw-r--r--TODO/BOOTSTRAP_MIGRATION_TODO.md32
-rw-r--r--TODO/TODO.md (renamed from TODO.md)0
-rw-r--r--TODO/head.html82
3 files changed, 114 insertions, 0 deletions
diff --git a/TODO/BOOTSTRAP_MIGRATION_TODO.md b/TODO/BOOTSTRAP_MIGRATION_TODO.md
new file mode 100644
index 0000000..5891bc5
--- /dev/null
+++ b/TODO/BOOTSTRAP_MIGRATION_TODO.md
@@ -0,0 +1,32 @@
+
+LOOK AT:
+https://getbootstrap.com/docs/4.0/migration/
+
+https://getbootstrap.com/docs/4.0/layout/grid/
+https://getbootstrap.com/docs/4.0/layout/overview/
+https://scotch.io/tutorials/understanding-the-bootstrap-3-grid-system
+
+----
+
+- replace CSS files in static/css
+- replace JS files in static/js
+
+- GRID
+ - update grid system sizes: (new "sm")
+ xs (stays)
+ (sm - new)
+ sm => md
+ md => lg
+ lg => xl
+ (in: about, contact, services, skills, limage)
+ - change CSS rules with "@media"
+EG:
+@media(min-width:768px) {
+TO
+@include media-breakpoint-up(md) {
+
+
+!!!! WHAT ABOUT EM UNITS???? !!!!
+
+
+
diff --git a/TODO.md b/TODO/TODO.md
index 176602b..176602b 100644
--- a/TODO.md
+++ b/TODO/TODO.md
diff --git a/TODO/head.html b/TODO/head.html
new file mode 100644
index 0000000..d97a9ae
--- /dev/null
+++ b/TODO/head.html
@@ -0,0 +1,82 @@
+
+{{/* !!!! TODO !!!!
+- check about google analytics: (use & need?)
+<!--
+ {{ if .Site.GoogleAnalytics }}
+ <script>
+ window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
+ ga('create', '{{ .Site.GoogleAnalytics }}', 'auto');
+ {{ if .Site.Params.privacy_pack }}ga('set', 'anonymizeIp', true);{{ end }}
+ ga('require', 'eventTracker');
+ ga('require', 'outboundLinkTracker');
+ ga('require', 'urlChangeTracker');
+ ga('send', 'pageview');
+ </script>
+ <script async src="//www.google-analytics.com/analytics.js"></script>
+ <script async src="//cdnjs.cloudflare.com/ajax/libs/autotrack/2.4.1/autotrack.js"></script>
+ {{ end }}
+-->
+*/}}
+
+{{/* !!!! TODO !!!!
+- check for RSS stuff:
+<!--
+ {{ if or .Site.RSSLink .RSSLink }}
+ <link rel="alternate" href="{{ .RSSLink | default .Site.RSSLink }}" type="application/rss+xml" title="{{ .Site.Title }}">
+ <link rel="feed" href="{{ .RSSLink | default .Site.RSSLink }}" type="application/rss+xml" title="{{ .Site.Title }}">
+ {{ end }}
+-->
+*/}}
+
+{{/* !!!! TODO !!!!
+- Favicon: check what they are & if needed: (from "minimal-academic" theme)
+ (could have a "favicon.html" ...)
+<!--
+ <link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
+ <link rel="manifest" href="/img/favicon/site.webmanifest">
+ <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
+ <meta name="msapplication-TileColor" content="#da532c">
+ <meta name="theme-color" content="#ffffff">
+
+ <link rel="manifest" href="{{ "site.webmanifest" | relURL }}">
+ <link rel="icon" type="image/png" href="{{ "/img/icon.png" | relURL }}">
+ <link rel="apple-touch-icon" type="image/png" href="{{ "/img/icon-192.png" | relURL }}">
+
+ <link rel="canonical" href="{{ .Permalink }}">
+-->
+*/}}
+
+{{/* !!!! TODO !!!!
+- check for publish meta stuff:
+<!--
+ <meta property="og:site_name" content="{{ .Site.Title }}">
+ <meta property="og:url" content="{{ .Permalink }}">
+ <meta property="og:title" content="{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}">
+ {{- with .Params.header.image }}<meta property="og:image" content="{{ printf "img/%s" . | absURL }}">{{end}}
+ <meta property="og:locale" content="{{ .Site.LanguageCode | default "en-us" }}">
+ {{ if .IsPage }}
+ {{ if not .PublishDate.IsZero }}<meta property="article:published_time" content="{{ .PublishDate.Format "2006-01-02T15:04:05-07:00" | safeHTML }}">
+ {{ else if not .Date.IsZero }}<meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}">{{ end }}
+ {{ if not .Lastmod.IsZero }}<meta property="article:modified_time" content="{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}">{{ end }}
+ {{ else }}
+ {{ if not .Date.IsZero }}<meta property="og:updated_time" content="{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}">{{ end }}
+ {{ end }}
+-->
+*/}}
+
+{{/*
+- check if needed... (& what it is):
+{{ "<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->" | safeHTML }}
+{{ "<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->" | safeHTML }}
+{{ "<!--[if lt IE 9]>" | safeHTML }}
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
+{{ "<![endif]-->" | safeHTML }}
+*/}}
+
+{{/* !!!! TODO !!!!
+- check about google analytics: (use & need?)
+ {{ template "_internal/google_analytics_async.html" . }}
+*/}}